style.css
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
@import url("/static/fonts/atkinson-hyperlegible/font.css");
:root {
--accent-color: #4a69bd;
--bg-color: #0c2461;
}
body {
background-color: #0c2461;
color: var(--accent-color);
font-family: "Atkinson Hyperlegible", "Helvetica Neue", sans-serif;
font-weight: bold;
}
footer {
position: fixed;
bottom: 5px;
font-size: .75rem;
}
.greeting p {
margin-top: 0;
margin-bottom: -25px;
}
.name {
color: white;
}
.mainText,
.mainText-pt {
font-size: 8em;
}
li {
font-size: 3em;
margin-top: 0;
margin-bottom: -5px;
}
img {
position: absolute;
right: 0%;
bottom: 0em;
width: 45vmax;
opacity: .25;
}
a {
text-decoration: none;
color: var(--accent-color);
}
a:hover {
color: white;
}
ul {
list-style-type: none;
margin-left: -2rem;
position: fixed;
bottom: 2rem;
}
.ipa {
margin-top: 3rem;
font-size: 2rem;
}
@media only screen and (max-width: 600px) {
.mainText {
font-size: 6em;
}
.mainText-pt {
font-size: 5em;
line-height: 1.4em;
}
}
|