mindjack/static/css/base.css

37 lines
509 B
CSS
Raw Permalink Normal View History

2020-05-29 16:58:33 -04:00
@font-face {
font-family: 'Raleway';
2020-10-14 21:15:16 -04:00
src: url('/fonts/Raleway-VF.woff2');
font-weight: 100 900;
font-style: normal;
}
@font-face {
font-family: 'Raleway';
src: url('/fonts/Raleway-Italic-VF.woff2');
font-weight: 100 900;
font-style: italic;
2020-05-29 16:58:33 -04:00
}
body {
background-color: black;
color: red;
font-family: 'Raleway';
text-align: center;
}
a {
color: red;
}
a:hover {
color: #c00;
}
a svg path {
stroke: red;
}
a svg:hover path {
stroke: #c00;
}