65 lines
1.0 KiB
CSS
65 lines
1.0 KiB
CSS
:root {
|
|
--primary-red: #f43f3f;
|
|
--dark-bg: #1e1f26;
|
|
--sidebar-bg: #2b2c33;
|
|
--text-color: #ffffff;
|
|
--text-muted: #9da2b3;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: Arial, sans-serif;
|
|
display: flex;
|
|
background-color: var(--dark-bg);
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.sidebar {
|
|
width: 250px;
|
|
background-color: var(--sidebar-bg);
|
|
min-height: 100vh;
|
|
padding: 20px;
|
|
box-shadow: 2px 0 5px rgba(0,0,0,0.3);
|
|
}
|
|
|
|
.sidebar h2 {
|
|
color: var(--primary-red);
|
|
margin-top: 0;
|
|
}
|
|
|
|
.sidebar ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.sidebar ul li {
|
|
margin: 10px 0;
|
|
}
|
|
|
|
.sidebar ul li a {
|
|
color: var(--text-muted);
|
|
text-decoration: none;
|
|
transition: color 0.2s ease;
|
|
}
|
|
|
|
.sidebar ul li a:hover {
|
|
color: var(--primary-red);
|
|
}
|
|
|
|
.main-content {
|
|
flex: 1;
|
|
padding: 20px 40px;
|
|
}
|
|
|
|
.main-content h1 {
|
|
color: var(--primary-red);
|
|
font-size: 2.5em;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
|
|
.main-content p {
|
|
line-height: 1.6;
|
|
color: var(--text-muted);
|
|
margin-bottom: 1.5em;
|
|
} |