Add website
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
Severin Kaderli 2022-11-21 19:29:55 +01:00
parent db99961a62
commit f38c4239b2
Signed by: severinkaderli
GPG key ID: F419F8835B72F0C4
8 changed files with 433 additions and 0 deletions

View file

@ -0,0 +1,75 @@
:root {
--spacing: 12px;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: sans-serif;
}
main {
width: 100%;
max-width: 400px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
input {
width: 100%;
}
#message {
position: relative;
}
#log {
height: 300px;
font-size: 0.8rem;
overflow: scroll;
}
.buttons {
width: 100%;
display: flex;
gap: var(--spacing);
}
button {
width: 100%;
display: block;
}
.hide {
display: none;
}
/*https://loading.io/css/*/
#message:not(:empty):after {
content: " ";
display: block;
width: 24px;
height: 24px;
border-radius: 50%;
border: 2px solid black;
border-color: black transparent black transparent;
animation: loading-indicator 1.2s linear infinite;
right: 0;
top: 0;
position: absolute;
}
@keyframes loading-indicator {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}