54 lines
1007 B
CSS
54 lines
1007 B
CSS
@font-face {
|
|
font-family: 'Rubik Doodle Shadow';
|
|
src:
|
|
local('Rubik Doodle Shadow'),
|
|
url('RubikDoodleShadow-Regular.woff') format('woff');
|
|
}
|
|
|
|
:root {
|
|
--pico-typography-spacing-vertical: 2rem;
|
|
--pico-font-family: 'Arial', sans-serif;
|
|
}
|
|
|
|
h1 {
|
|
font-family: 'Rubik Doodle Shadow', sans-serif;
|
|
font-size: clamp(3rem, 1.875rem + 2vw, 4.5rem);
|
|
letter-spacing: 0.33rem;
|
|
margin-top: clamp(3rem, 1.875rem + 2vw, 5rem);
|
|
margin-bottom: clamp(5rem, 1.875rem + 2vw, 8rem);
|
|
text-align: center;
|
|
}
|
|
|
|
.font-headline {
|
|
font-family: 'Rubik Doodle Shadow', sans-serif;
|
|
}
|
|
|
|
.rank {
|
|
font-size: clamp(2rem, 1.875rem + 2vw, 3rem);
|
|
margin-right: 1rem;
|
|
}
|
|
|
|
ul.iterated {
|
|
padding-left: unset;
|
|
}
|
|
|
|
ul.iterated > li {
|
|
list-style-type: none;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-end;
|
|
border-bottom: 3px solid white;
|
|
}
|
|
|
|
ul.iterated > li:nth-of-type(even) {
|
|
}
|
|
|
|
ul.iterated > li:nth-of-type(odd) {
|
|
}
|
|
|
|
header a {
|
|
padding: 0.5rem;
|
|
line-height: 1.75;
|
|
font-size: 1.25em;
|
|
}
|