You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
1.2 KiB
SCSS
89 lines
1.2 KiB
SCSS
1 year ago
|
$fave: #aa71fa;
|
||
|
$off-dark: #1b181e;
|
||
|
$body-bg: #d5bbf9;
|
||
|
|
||
|
$link: #551a8b;
|
||
|
$link-hover: #32594f;
|
||
|
|
||
|
$header-link-bg: #2a2333;
|
||
|
|
||
|
body {
|
||
|
background-color: $off-dark;
|
||
|
font-family: lato;
|
||
|
}
|
||
|
|
||
|
.block {
|
||
|
background-color: $body-bg;
|
||
|
width: 60%;
|
||
|
margin: auto;
|
||
|
border-radius: 1em;
|
||
|
color: $off-dark;
|
||
|
padding-left: 3em;
|
||
|
padding-right: 3em;
|
||
|
padding-top: 1em;
|
||
|
padding-bottom: 1em;
|
||
|
margin-top: 1em;
|
||
|
}
|
||
|
|
||
|
#footer {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
#header {
|
||
|
text-align: center;
|
||
|
& > a {
|
||
|
border-radius: 1em;
|
||
|
background-color: $header-link-bg;
|
||
|
padding-top: 0.3em;
|
||
|
padding-bottom: 0.3em;
|
||
|
padding-left: 0.4em;
|
||
|
padding-right: 0.4em;
|
||
|
color: $fave;
|
||
|
text-decoration: none;
|
||
|
font-weight: bold;
|
||
|
animation: none;
|
||
|
&:hover {
|
||
|
color: $link-hover;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.title {
|
||
|
margin-top: 0em;
|
||
|
}
|
||
|
|
||
|
.toki-pona {
|
||
|
font-family: lipamanka;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: $link;
|
||
|
&:hover {
|
||
|
color: $link-hover;
|
||
|
animation: 0.3s link-hover;
|
||
|
}
|
||
|
&:active {
|
||
|
color: $fave;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@keyframes link-hover {
|
||
|
from {
|
||
|
color: $link;
|
||
|
}
|
||
|
|
||
|
to {
|
||
|
color: $link-hover;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: lipamanka;
|
||
|
src: url(/linjamanka.woff);
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: lato;
|
||
|
src: url(/lato.woff2);
|
||
|
}
|