2024-03-22 15:01:30 +00:00
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
font-family: "Be Vietnam Pro", sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-dark {
|
|
|
|
background-color: #303030;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
|
|
|
font-size: 32px;
|
|
|
|
padding: 10px;
|
|
|
|
background-color: #ffffff50;
|
|
|
|
}
|
|
|
|
|
2024-03-23 13:05:34 +00:00
|
|
|
header h5 {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
2024-03-22 17:48:49 +00:00
|
|
|
footer {
|
|
|
|
padding: 20px 0px;
|
|
|
|
bottom: 0;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
background-color: #222;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer a {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2024-03-22 15:01:30 +00:00
|
|
|
.block {
|
|
|
|
width: fit-content;
|
|
|
|
border: 1px solid #fff;
|
|
|
|
border-radius: 10px;
|
|
|
|
margin: auto;
|
|
|
|
padding: 10px;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
padding: 5px;
|
|
|
|
background-color: #303030;
|
|
|
|
color: #fff;
|
|
|
|
border: 1px solid #fff;
|
|
|
|
border-radius: 10px;
|
|
|
|
transition-duration: 0.2s;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
button:hover {
|
|
|
|
background-color: #444;
|
|
|
|
}
|
|
|
|
|
|
|
|
button:active {
|
|
|
|
background-color: #222;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="password"],
|
|
|
|
input[type="text"] {
|
|
|
|
padding: 5px;
|
|
|
|
margin: 5px;
|
|
|
|
background-color: #303030;
|
|
|
|
color: #fff;
|
|
|
|
border: 1px solid #fff;
|
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="checkbox"] {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
background-color: #303030;
|
|
|
|
color: #fff;
|
|
|
|
border: 1px solid #fff;
|
|
|
|
}
|