mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2025-01-02 02:26:40 +00:00
45 lines
642 B
CSS
45 lines
642 B
CSS
|
/* Reset default styles */
|
||
|
body, h1, h2, h3, p {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
/* Golden theme */
|
||
|
body {
|
||
|
background-color: #f5f1e9;
|
||
|
color: #292521;
|
||
|
font-family: Arial, sans-serif;
|
||
|
}
|
||
|
|
||
|
h1, h2, h3 {
|
||
|
color: #c19342;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
max-width: 960px;
|
||
|
margin: 0 auto;
|
||
|
padding: 20px;
|
||
|
}
|
||
|
|
||
|
.sidebar {
|
||
|
width: 25%;
|
||
|
background-color: #f7f5ed;
|
||
|
padding: 10px;
|
||
|
}
|
||
|
|
||
|
.sidebar a {
|
||
|
display: block;
|
||
|
color: #292521;
|
||
|
text-decoration: none;
|
||
|
padding: 5px;
|
||
|
}
|
||
|
|
||
|
.sidebar a:hover {
|
||
|
background-color: #e3d3a4;
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
width: 75%;
|
||
|
padding: 10px;
|
||
|
}
|
||
|
|