40 lines
626 B
CSS
40 lines
626 B
CSS
|
/* General Styling */
|
||
|
body {
|
||
|
font-family: Fengardo Neue;
|
||
|
font-size: 1.2rem;
|
||
|
}
|
||
|
h1, h2, h3, h4, h5, h6 {
|
||
|
font-family: Avara Bold;
|
||
|
color: #f10385;
|
||
|
}
|
||
|
|
||
|
/* Fonts */
|
||
|
@font-face {
|
||
|
font-family: Avara Bold;
|
||
|
src: url(/static/avara.woff2) format("woff2");
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: Fengardo Neue;
|
||
|
src: url(/static/fengardo-neue.woff) format("woff");
|
||
|
}
|
||
|
|
||
|
/* Flag Styling */
|
||
|
.flag {
|
||
|
display: grid;
|
||
|
grid-auto-flow: column;
|
||
|
width: 200px;
|
||
|
height: 10px;
|
||
|
border-radius: 3px;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
.flag > div {
|
||
|
height: 10px;
|
||
|
}
|
||
|
footer {
|
||
|
display: grid;
|
||
|
justify-items: center;
|
||
|
align-items: center;
|
||
|
padding-bottom: 50px;
|
||
|
}
|