50 lines
768 B
CSS
50 lines
768 B
CSS
|
@import "classes.css";
|
||
|
@import "colors.css";
|
||
|
|
||
|
@font-face {
|
||
|
font-family: standardGalactic;
|
||
|
src: url(/fonts/galactic.ttf);
|
||
|
}
|
||
|
|
||
|
:root {
|
||
|
background: #1e1e2e;
|
||
|
-webkit-background-size: repeat;
|
||
|
-moz-background-size: cover;
|
||
|
-o-background-size: cover;
|
||
|
background-size: repeat;
|
||
|
|
||
|
padding: 1rem;
|
||
|
width: 1000px;
|
||
|
max-width: calc(100% - 2rem);
|
||
|
font-size: 20px;
|
||
|
font-family: system-ui, sans-serif;
|
||
|
line-height: 1.6;
|
||
|
margin: auto;
|
||
|
|
||
|
--accent-color: #a6e3a1;
|
||
|
}
|
||
|
|
||
|
footer {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
figure {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
audio {
|
||
|
width: 100%;;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
font-size: 4rem;
|
||
|
font-weight: 700;
|
||
|
line-height: 1;
|
||
|
margin-bottom: 1em;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
hr {
|
||
|
width: 32%;
|
||
|
color: #6e738d;
|
||
|
}
|