64 lines
No EOL
1,006 B
CSS
64 lines
No EOL
1,006 B
CSS
@import "classes.css";
|
|
@import "colors.css";
|
|
|
|
@font-face {
|
|
font-family: standardGalactic;
|
|
src: url(/fonts/galactic.ttf);
|
|
}
|
|
|
|
:root {
|
|
background: repeat url("/assets/background.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;
|
|
line-height: 1.6;
|
|
margin: auto;
|
|
}
|
|
|
|
.content {
|
|
width: 85%;
|
|
max-width: 75em;
|
|
margin: auto;
|
|
padding: 0.5em;
|
|
margin-top: 1em;
|
|
margin-bottom: 1em;
|
|
border: 3px solid #fab387;
|
|
border-radius: 5px;
|
|
opacity: 0.9;
|
|
background: rgba(0, 0, 0, .66);
|
|
}
|
|
|
|
.small-quote {
|
|
font-size: smaller;
|
|
color: #a6adc8;
|
|
}
|
|
|
|
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;
|
|
} |