63 lines
967 B
SCSS
63 lines
967 B
SCSS
///////////////////
|
|
// //
|
|
// FONT-FACE //
|
|
// //
|
|
///////////////////
|
|
|
|
@font-face {
|
|
font-family: "mylilex";
|
|
font-weight: 100;
|
|
src: url("/fonts/Lilex-Thin.ttf") format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "mylilex";
|
|
font-weight: 200;
|
|
src: url("/fonts/Lilex-ExtraLight.ttf") format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "mylilex";
|
|
font-weight: 400;
|
|
src: url("/fonts/Lilex-Regular.ttf") format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "mylilex";
|
|
font-weight: 700;
|
|
src: url("/fonts/Lilex-Bold.ttf") format('truetype');
|
|
}
|
|
|
|
///////////////////
|
|
// //
|
|
// FONTS //
|
|
// //
|
|
///////////////////
|
|
|
|
code,
|
|
figure figcaption,
|
|
.footnotes,
|
|
.footnote-ref,
|
|
.list-footer,
|
|
.main-footer,
|
|
nav,
|
|
.post-info,
|
|
.posts-list footer {
|
|
font-size: smaller;
|
|
}
|
|
|
|
blockquote {
|
|
font-style: italic;
|
|
}
|
|
|
|
.smallcaps,
|
|
#licence {
|
|
font-variant: small-caps;
|
|
}
|
|
|
|
.home-lists {
|
|
dt {
|
|
font-weight: 700;
|
|
}
|
|
}
|