33 lines
320 B
CSS
33 lines
320 B
CSS
/* Global */
|
|
body {
|
|
word-break: break-word;
|
|
|
|
margin: auto;
|
|
padding: 2em;
|
|
|
|
background-color: #1d2021;
|
|
color: #928374;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: #ebdbb2;
|
|
}
|
|
|
|
|
|
/* Tags */
|
|
.alltags {
|
|
background-color: #ebdbb2;
|
|
}
|
|
|
|
.alltags a {
|
|
color: #1d2021;
|
|
}
|
|
|
|
|
|
/* Pager */
|
|
.pager #curr {
|
|
text-decoration: underline;
|
|
}
|
|
|