@keyframes fadeInDownward {
0% {
opacity: 0;
transform: translateY(-30px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@font-face {
font-family: "HK Grotesk";
src: url("/static/HKGroteskWide-SemiBold.otf");
}
html {
height: 100%;
background: linear-gradient(#650b0b, #ab1616);
}
h1 {
display: none;
}
main {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
main * {
animation-name: fadeInDownward;
animation-duration: 1s;
}
body {
font-family: "HK Grotesk";
font-size: 1.5em;
text-transform: uppercase;
text-align: center;
color: white;
}
#logo {
width: 25em;
margin-bottom: 2.5em;
}
@media screen and (max-width: 375px) {
#logo {
max-width: 75%;
min-width: 10em;
}
}
a {
color: white;
text-decoration: none;
border-bottom: 2px solid white;
}
#ui {
display: inline-block;
padding: 1em 2em;
background: black;
border-radius: 1em;
}
.text {
display: block;
font-family: monospace;
color: white;
background: black;
border: 2px dashed white;
padding: 0.5em 1em;
margin: 1em 0;
}
.button {
font-family: "HK Grotesk";
text-transform: uppercase;
text-align: center;
color: black;
background: white;
border: none;
padding: 0.5em 1em;
border-radius: 1em;
}
textarea {
width: 20em;
height: 10em;
}
input[type=text] {
width: 20em;
}
.url {
font-family: monospace !important;
color: white !important;
display: block;
text-transform: none !important;
margin-bottom: 1em;
}
.domain {
color: lightgray !important;
}
#indexbuttonrow {
display: flex;
justify-content: center;
margin-top: 1em;
}
#indexbuttonrow a {
font-size: 0.8em;
color: white;
background: black;
border: none;
padding: 0.5em 1em;
border-radius: 1em;
margin: 0 0.5em;
min-width: 5em;
}
@keyframes buttonRaise {
0% {
transform: translateY(0px);
box-shadow: 0 0 0 0 rgb(60, 0, 0);
}
100% {
transform: translateY(-2px);
box-shadow: 0 4px 0 0 rgb(60, 0, 0);
}
}
#indexbuttonrow a:hover {
animation-name: buttonRaise;
animation-duration: 0.2s;
animation-fill-mode: forwards;
}
#indexbuttonrow a:active {
animation-name: buttonRaise;
animation-duration: 0.2s;
animation-fill-mode: forwards;
animation-direction: reverse;
}
@keyframes buttonRaise_2 {
0% {
transform: translateY(0px);
box-shadow: 0 0 0 0 rgb(183, 183, 183);
}
100% {
transform: translateY(-2px);
box-shadow: 0 4px 0 0 rgb(183, 183, 183);
}
}
.button:hover {
animation-name: buttonRaise_2;
animation-duration: 0.2s;
animation-fill-mode: forwards;
}
.button:active {
animation-name: buttonRaise_2;
animation-duration: 0.2s;
animation-fill-mode: forwards;
animation-direction: reverse;
}