2024-07-01 20:53:23 -05:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2024-07-01 20:58:49 -05:00
|
|
|
font-size: 16px;
|
2024-07-01 20:53:23 -05:00
|
|
|
background-image: url(/img/bg/bg.webp);
|
|
|
|
background-repeat: repeat;
|
|
|
|
}
|
|
|
|
|
2024-07-11 21:17:06 -05:00
|
|
|
#install-container {
|
2024-07-01 20:53:23 -05:00
|
|
|
max-width: 996px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
2024-07-16 21:51:20 -05:00
|
|
|
#container {
|
|
|
|
padding: 1rem;
|
|
|
|
|
|
|
|
header {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
2024-07-17 16:12:57 -05:00
|
|
|
|
|
|
|
footer {
|
|
|
|
margin-top: 1rem;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
background-color: rgba(0, 0, 0, 0.25);
|
|
|
|
padding: 0.5rem;
|
2024-07-17 22:58:41 -05:00
|
|
|
color: rgba(0, 0, 0, 0.75);
|
|
|
|
font-size: 0.75rem;
|
2024-07-17 16:12:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
div#content {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
gap: 1rem;
|
|
|
|
|
|
|
|
aside#left {
|
|
|
|
flex-grow: 1;
|
|
|
|
max-width: 250px;
|
|
|
|
}
|
|
|
|
|
|
|
|
aside#right {
|
|
|
|
flex-grow: 1;
|
|
|
|
max-width: 250px;
|
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
}
|
2024-07-16 21:51:20 -05:00
|
|
|
}
|
|
|
|
|
2024-07-01 20:58:49 -05:00
|
|
|
.form-group {
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
|
|
|
label {
|
|
|
|
display: block;
|
|
|
|
font-size: 0.8rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-02 09:34:38 -05:00
|
|
|
.text-red {
|
|
|
|
color: #d20f39;
|
|
|
|
}
|
|
|
|
|
2024-07-01 20:53:23 -05:00
|
|
|
.mb-1 {
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mb-2 {
|
|
|
|
margin-bottom: 2rem;
|
2024-07-02 12:40:18 -05:00
|
|
|
}
|
|
|
|
|
2024-07-13 23:15:25 -05:00
|
|
|
.my-1 {
|
|
|
|
margin-top: 1rem;
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
|
2024-07-02 12:40:18 -05:00
|
|
|
.my-2 {
|
|
|
|
margin-top: 2rem;
|
|
|
|
margin-bottom: 2rem;
|
2024-07-13 23:15:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
div.alert {
|
|
|
|
font-size: 0.9rem;
|
|
|
|
padding: 0.5rem;
|
|
|
|
background-color: gray;
|
|
|
|
|
|
|
|
&.is-danger {
|
|
|
|
color: hsl(359deg, 68%, 11%);
|
|
|
|
background-color: hsl(359deg, 68%, 71%);
|
|
|
|
}
|
2024-07-17 16:12:57 -05:00
|
|
|
}
|