vanten-s.com/themes/vanten/assets/css/main.css

54 lines
782 B
CSS
Raw Normal View History

2024-07-21 19:41:39 +02:00
body {
color: #cdd6f4;
background-color: #181825;
font-family: monospace;
font-size: 1.2em;
line-height: 1.5;
margin: 1rem;
2024-07-22 14:49:25 +02:00
max-width: 43em;
2024-07-21 19:41:39 +02:00
margin-right: 8em;
}
header {
border-bottom: 1px solid #222;
margin-bottom: 1rem;
}
footer {
border-top: 1px solid #222;
margin-top: 1rem;
}
a {
color: #94e2d5;
text-decoration: none;
}
.navbar {
position: fixed;
right: 0;
top: 0;
background-color: #1e1e2e;
bottom: 0;
2024-07-22 14:47:21 +02:00
width: 5.5em;
2024-07-21 19:41:39 +02:00
}
.navbar > ul {
list-style-type: none;
2024-07-22 14:47:21 +02:00
padding-left: 0.5em;
2024-07-21 19:41:39 +02:00
}
.navbar > ul > li > a {
transition: color 200ms;
2024-07-22 14:47:21 +02:00
font-size: 100%;
2024-07-21 19:41:39 +02:00
}
.navbar > ul > li > a:hover {
color: #ffffff;
}
.separator {
border-top: 1px solid #222;
margin-top: 1rem;
}