2023-05-08 12:52:41 -05:00
|
|
|
:root {
|
2023-05-10 12:36:26 -05:00
|
|
|
--primary-color: rgb(230, 210, 255);
|
2023-08-23 11:35:10 -05:00
|
|
|
--text-color: rgb(230, 230, 255);
|
2023-05-08 12:52:41 -05:00
|
|
|
--background-color: rgb(50, 35, 75);
|
|
|
|
--second-bg-color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
text-align: center;
|
|
|
|
color: var(--text-color);
|
|
|
|
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
|
|
}
|
|
|
|
|
2023-05-10 12:36:26 -05:00
|
|
|
h1,
|
|
|
|
h1>* {
|
|
|
|
color: var(--primary-color)
|
|
|
|
}
|
|
|
|
|
|
|
|
p,
|
|
|
|
select,
|
|
|
|
input {
|
2023-05-08 12:52:41 -05:00
|
|
|
font-size: 1.4rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 5px;
|
2023-10-25 16:04:42 -05:00
|
|
|
display: inline-block;
|
2023-05-08 12:52:41 -05:00
|
|
|
}
|
|
|
|
|
2023-05-10 12:36:26 -05:00
|
|
|
body,
|
|
|
|
html {
|
2023-05-08 12:52:41 -05:00
|
|
|
background-color: var(--background-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.grid-container {
|
|
|
|
width: 100%;
|
2023-05-10 12:36:26 -05:00
|
|
|
margin: auto;
|
2023-05-08 12:52:41 -05:00
|
|
|
}
|
|
|
|
|
2023-05-10 12:36:26 -05:00
|
|
|
select,
|
|
|
|
input {
|
2023-10-25 12:32:46 -05:00
|
|
|
display: inline-block;
|
2023-05-08 12:52:41 -05:00
|
|
|
background-color: var(--second-bg-color);
|
2023-08-23 11:35:10 -05:00
|
|
|
color: var(--text-color);
|
2023-05-08 12:52:41 -05:00
|
|
|
margin: 5px auto;
|
2023-05-10 12:36:26 -05:00
|
|
|
border: 2px var(--primary-color) solid;
|
2023-05-08 12:52:41 -05:00
|
|
|
border-radius: 5px;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
2023-05-10 12:36:26 -05:00
|
|
|
.col-sm-3 {
|
|
|
|
outline: white solid 2px
|
|
|
|
}
|
|
|
|
|
|
|
|
select:hover,
|
|
|
|
input:hover {
|
|
|
|
color: var(--text-color);
|
|
|
|
border-color: var(--text-color)
|
|
|
|
}
|
|
|
|
|
2023-05-08 12:52:41 -05:00
|
|
|
label {
|
|
|
|
font-size: 1.5rem;
|
2023-08-24 11:02:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
opacity: 0.3;
|
2023-10-25 12:32:46 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.note {
|
|
|
|
font-size: 1.1rem;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.setting {
|
|
|
|
display: block;
|
|
|
|
margin: 5px;
|
|
|
|
}
|