96 lines
1.4 KiB
CSS
96 lines
1.4 KiB
CSS
body {
|
|
background-color: #11111b;
|
|
padding:0;
|
|
margin:0;
|
|
}
|
|
|
|
.footer {
|
|
margin: 0;
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
max-height: 50px;
|
|
display: flex;
|
|
background-color: #b4befe;
|
|
justify-content: center;
|
|
}
|
|
|
|
.footer > a {
|
|
padding: 10px;
|
|
margin: 5px;
|
|
background-color: #94e2d5;
|
|
border-radius: 5px;
|
|
color: #1e1e2e;
|
|
font-family: "Segoe UI";
|
|
font-size: 14px;
|
|
}
|
|
|
|
.app {
|
|
overflow-y: scroll;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, calc(-50% - 80px));
|
|
background-color: #181926;
|
|
border-radius: 12px;
|
|
width: calc(100dvw - 40px);
|
|
max-width: 500px;
|
|
max-height: calc(100dvh - 100px);
|
|
height: fit-content;
|
|
padding: 10px;
|
|
margin: 50px;
|
|
}
|
|
|
|
.app > h1 {
|
|
margin-top: 5px;
|
|
color: yellow;
|
|
}
|
|
|
|
.app > h3 {
|
|
color: red;
|
|
}
|
|
|
|
.sub {
|
|
display: grid;
|
|
width: fit-content;
|
|
margin: auto;
|
|
}
|
|
|
|
.sub > input {
|
|
margin-bottom: 5px;
|
|
max-width: 300px;
|
|
width: 80dvw;
|
|
color: black;
|
|
}
|
|
|
|
.sub > label {
|
|
color: white;
|
|
}
|
|
|
|
.sub > button {
|
|
justify-self: right;
|
|
font-size: 14px;
|
|
margin: 4px 0 0 0;
|
|
padding: 5px;
|
|
background-color: cornflowerblue;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.app > p {
|
|
text-align: center;
|
|
color: white;
|
|
}
|
|
|
|
.app > a {
|
|
display: flow;
|
|
text-align: center;
|
|
color: white;
|
|
}
|
|
|
|
.inline {
|
|
width: fit-content;
|
|
color: white;
|
|
}
|