109 lines
1.5 KiB
CSS
109 lines
1.5 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 {
|
|
margin:auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 90%;
|
|
max-width: 500px;
|
|
height: calc(100dvh - 60px);
|
|
}
|
|
|
|
.app > h2 {
|
|
color: white;
|
|
}
|
|
|
|
.app > label {
|
|
color: white;
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.app > h1 {
|
|
color: yellow;
|
|
}
|
|
|
|
.app > select {
|
|
width: 100%;
|
|
}
|
|
|
|
.app > input {
|
|
width: 100%;
|
|
}
|
|
|
|
.app > textarea {
|
|
width: 100%;
|
|
height: 100%;
|
|
resize: vertical;
|
|
}
|
|
|
|
.app-nav > button {
|
|
font-size: 16px;
|
|
margin: 4px 0 4px 0;
|
|
padding: 5px;
|
|
background-color: cornflowerblue;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.app-nav {
|
|
width: 100%;
|
|
display: grid;
|
|
gap: 5px;
|
|
grid-template-columns: repeat(2, 50% [col-start]);
|
|
}
|
|
|
|
.left-button {
|
|
grid-column-start: 1;
|
|
grid-column-end: 2;
|
|
}
|
|
|
|
.right-button {
|
|
grid-column-start: 2;
|
|
grid-column-end: 3;
|
|
}
|
|
.notification {
|
|
position: absolute;
|
|
top: 0;
|
|
margin: auto;
|
|
width: 100%;
|
|
height: 100dvh;
|
|
text-align: center;
|
|
background-color: #11111b;
|
|
}
|
|
|
|
.notification > h1 {
|
|
color: yellow;
|
|
}
|
|
|
|
.notification > h3 {
|
|
color: white;
|
|
}
|