54 lines
832 B
SCSS
54 lines
832 B
SCSS
$text-color: #000066;
|
|
$text-accent-color: #990000;
|
|
$background-color: #e5d5ba;
|
|
$base_url: "https://tilde.town/~ydreniv";
|
|
|
|
@font-face {
|
|
font-family: 'Old English';
|
|
src: url($base_url + "/fonts/OldLondon.ttf");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
body {
|
|
margin: 4em;
|
|
background-color: $background-color;
|
|
color: $text-color;
|
|
font-family: cursive;
|
|
font-size: 1.6em;
|
|
text-align: justify;
|
|
}
|
|
|
|
a {
|
|
color: $text-accent-color;
|
|
}
|
|
|
|
li {
|
|
list-style-type: square;
|
|
}
|
|
|
|
header {
|
|
border-bottom: 2px solid $text-color;
|
|
padding-bottom: 1em;
|
|
|
|
nav {
|
|
width: 100%;
|
|
|
|
ul {
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
gap: 2em;
|
|
justify-content: space-between;
|
|
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
li {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|