44 lines
515 B
CSS
44 lines
515 B
CSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-size: 16px;
|
|
background-image: url(/img/bg/bg.webp);
|
|
background-repeat: repeat;
|
|
}
|
|
|
|
#install-container {
|
|
max-width: 996px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 0.5rem;
|
|
|
|
label {
|
|
display: block;
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
input {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.text-red {
|
|
color: #d20f39;
|
|
}
|
|
|
|
.mb-1 {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.mb-2 {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.my-2 {
|
|
margin-top: 2rem;
|
|
margin-bottom: 2rem;
|
|
} |