26 lines
555 B
CSS
26 lines
555 B
CSS
|
.theme--dark .body,
|
||
|
.theme--dark .post,
|
||
|
.theme--dark .nav__list {
|
||
|
background-color: #2C1438;
|
||
|
}
|
||
|
.theme--dark .post__content a:link,
|
||
|
.theme--dark .post__content a:visited {
|
||
|
color: #BAB1ED;
|
||
|
}
|
||
|
.theme--dark a:hover,
|
||
|
.theme--dark .post__content a:hover {
|
||
|
color: hsl(249, 62%, 61%);
|
||
|
}
|
||
|
@font-face {
|
||
|
font-family: 'Inclusive Sans';
|
||
|
src: url(/font/InclusiveSans-Regular.ttf);
|
||
|
}
|
||
|
@font-face {
|
||
|
font-family: 'Inclusive Sans';
|
||
|
src: url('/font/InclusiveSans-Italic.ttf');
|
||
|
font-style: italic;
|
||
|
}
|
||
|
body {
|
||
|
font-family: 'Inclusive Sans', sans-serif;
|
||
|
font-size: 16pt;
|
||
|
}
|