28 lines
320 B
CSS
28 lines
320 B
CSS
|
@font-face {
|
||
|
font-family: 'Raleway';
|
||
|
src: url('/fonts/Raleway-Regular.otf');
|
||
|
}
|
||
|
|
||
|
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;
|
||
|
}
|