You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
1.1 KiB
CSS
87 lines
1.1 KiB
CSS
:root {
|
|
--purple: #7d50ff;
|
|
--purple-bg: #cec6ff;
|
|
--orange: #ff5416;
|
|
--orange-bg: #ffb58d;
|
|
|
|
--color: white;
|
|
--background: white;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
font-size: 28px;
|
|
line-height: 1.4;
|
|
color: var(--color);
|
|
margin: 0;
|
|
}
|
|
|
|
a {
|
|
color: currentColor;
|
|
}
|
|
|
|
header {
|
|
height: 100vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 96px;
|
|
line-height: 1.1;
|
|
text-transform: uppercase;
|
|
font-family: "SI17";
|
|
width: 8ch;
|
|
text-align: center;
|
|
color: white;
|
|
-webkit-text-fill: white;
|
|
-webkit-text-stroke: 1.5px var(--color);
|
|
}
|
|
|
|
main {
|
|
max-width: 60ch;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
img {
|
|
width: 100%;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.index {
|
|
padding: 0;
|
|
}
|
|
|
|
.index li {
|
|
margin: 0 4px;
|
|
display: inline-block;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.index li::first-letter {
|
|
text-transform: uppercase;
|
|
font-family: "SI17";
|
|
}
|
|
|
|
.index a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a.purple,
|
|
a.orange {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
width: 28px;
|
|
height: 28px;
|
|
margin: 0 4px;
|
|
}
|
|
|
|
a.purple {
|
|
background-color: var(--purple);
|
|
}
|
|
a.orange {
|
|
background-color: var(--orange);
|
|
}
|