49 lines
No EOL
780 B
CSS
49 lines
No EOL
780 B
CSS
@import "classes.css";
|
|
@import "colors.css";
|
|
|
|
@font-face {
|
|
font-family: standardGalactic;
|
|
src: url(/fonts/galactic.ttf);
|
|
}
|
|
|
|
:root {
|
|
background: repeat url("/assets/background-darker.png");
|
|
-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: #fab387;
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
}
|
|
|
|
figure {
|
|
text-align: center;
|
|
}
|
|
|
|
audio {
|
|
width: 100%;;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 4rem;
|
|
font-weight: 700;
|
|
line-height: 1;
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
hr {
|
|
width: 32%;
|
|
color: #6e738d;
|
|
} |