2022-11-24 09:15:38 +00:00
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,600;1,700;1,800;1,900&family=Yeseva+One&display=swap');
|
2022-11-29 15:48:18 +00:00
|
|
|
@import "normalize.css";
|
2022-11-24 09:15:38 +00:00
|
|
|
|
|
|
|
:root {
|
|
|
|
--primary: hsla(220, 60%, 50%, 1);
|
|
|
|
--hover: hsl(240, 50%, 22%);
|
2022-11-29 15:48:18 +00:00
|
|
|
--secondary: hsl(210, 100%, 95%, 1);
|
2022-11-24 09:15:38 +00:00
|
|
|
--accent: hsla(15, 99%, 57%, 1);
|
|
|
|
--light: hsla(90, 8%, 85%, 1);
|
2022-12-15 14:50:58 +00:00
|
|
|
--mutedBlack: hsla(0, 0%, 0%, 0.25);
|
2022-11-24 09:15:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2022-11-29 15:48:18 +00:00
|
|
|
html, body {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2022-11-24 09:15:38 +00:00
|
|
|
body {
|
|
|
|
font-size: 1em;
|
|
|
|
font-weight: 400;
|
|
|
|
font-family: "Fira Sans", sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2 {
|
|
|
|
font-weight: 400;
|
|
|
|
font-family: "Yeseva One", cursive;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
outline: none;
|
|
|
|
border: none;
|
2022-11-29 15:48:18 +00:00
|
|
|
padding: 0.875em 1.75em;
|
2022-11-24 09:15:38 +00:00
|
|
|
cursor: pointer;
|
|
|
|
-webkit-border-radius: 1em;
|
|
|
|
-moz-border-radius: 1em;
|
|
|
|
border-radius: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btnPrimary {
|
|
|
|
background-color: var(--primary);
|
|
|
|
color: #FFFFFF;
|
|
|
|
}
|
|
|
|
|
2022-11-29 15:48:18 +00:00
|
|
|
.btnPrimary:hover {
|
2022-12-03 12:57:42 +00:00
|
|
|
background-color: var(--hover);
|
2022-11-29 15:48:18 +00:00
|
|
|
}
|
2022-11-24 09:15:38 +00:00
|
|
|
|
|
|
|
div.formControl {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: flex-start;
|
|
|
|
gap: 0.5em;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2022-11-29 15:48:18 +00:00
|
|
|
input:not([type="submit"]), form .formControl textarea {
|
2022-11-24 09:15:38 +00:00
|
|
|
width: 100%;
|
|
|
|
border: 4px solid var(--primary);
|
|
|
|
background: 0 0;
|
|
|
|
outline: 0;
|
|
|
|
-webkit-border-radius: 1em;
|
|
|
|
-moz-border-radius: 1em;
|
|
|
|
border-radius: .5em;
|
|
|
|
padding: 0 .5em;
|
|
|
|
height: 3em;
|
|
|
|
}
|
|
|
|
|
2022-11-29 15:48:18 +00:00
|
|
|
input:not([type="submit"]):hover, form .formControl textarea:hover {
|
|
|
|
border: 4px solid var(--hover);
|
|
|
|
}
|
|
|
|
|
2022-12-15 14:50:58 +00:00
|
|
|
.checkContainer {
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
margin-bottom: 0.75em;
|
|
|
|
cursor: pointer;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.checkContainer input[type="checkbox"] {
|
|
|
|
position: absolute;
|
|
|
|
opacity: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
height: 0;
|
|
|
|
width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.checkmark {
|
|
|
|
position: absolute;
|
|
|
|
top: 1.25em;
|
|
|
|
left: 0;
|
|
|
|
height: 1.5em;
|
|
|
|
width: 1.5em;
|
|
|
|
background-color: #eee;
|
|
|
|
}
|
|
|
|
|
|
|
|
.checkContainer:hover input ~ .checkmark {
|
|
|
|
background-color: #ccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
.checkContainer input:checked ~ .checkmark {
|
|
|
|
background-color: var(--primary);
|
|
|
|
}
|
|
|
|
|
|
|
|
.checkContainer:hover input:checked ~ .checkmark {
|
|
|
|
background-color: var(--hover);
|
|
|
|
}
|
|
|
|
|
|
|
|
.checkmark:after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.checkContainer input:checked ~ .checkmark:after {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.checkContainer .checkmark:after {
|
|
|
|
left: 9px;
|
|
|
|
top: 5px;
|
|
|
|
width: 0.35em;
|
|
|
|
height: 0.6em;
|
|
|
|
border: solid white;
|
|
|
|
border-width: 0 3px 3px 0;
|
|
|
|
-webkit-transform: rotate(45deg);
|
|
|
|
-ms-transform: rotate(45deg);
|
|
|
|
transform: rotate(45deg);
|
|
|
|
}
|
|
|
|
|
2022-12-09 04:51:56 +00:00
|
|
|
.selectDiv {
|
|
|
|
position: relative;
|
|
|
|
min-width: 300px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.selectDiv:before {
|
|
|
|
content: '';
|
|
|
|
-webkit-transform: rotate(90deg);
|
|
|
|
-moz-transform: rotate(90deg);
|
|
|
|
-ms-transform: rotate(90deg);
|
|
|
|
transform: rotate(90deg);
|
|
|
|
right: -5px;
|
|
|
|
top: 13px;
|
|
|
|
padding: 0 0 2px;
|
|
|
|
position: absolute;
|
|
|
|
width: 46px;
|
|
|
|
background-color: var(--primary);
|
|
|
|
height: 30px;
|
|
|
|
border-top-right-radius: 0.5em;
|
|
|
|
border-top-left-radius: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.selectDiv:after {
|
|
|
|
content: '<>';
|
|
|
|
font: 18px "Consolas", monospace;
|
|
|
|
color: #FFFFFF;
|
|
|
|
-webkit-transform: rotate(90deg);
|
|
|
|
-moz-transform: rotate(90deg);
|
|
|
|
-ms-transform: rotate(90deg);
|
|
|
|
transform: rotate(90deg);
|
|
|
|
right: 6px;
|
|
|
|
top: 18px;
|
|
|
|
padding: 0 0 2px;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.selectDiv select {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
cursor: pointer;
|
|
|
|
display: block;
|
|
|
|
outline: none;
|
|
|
|
width: 100%;
|
|
|
|
height: 3em;
|
|
|
|
margin: 6px 0;
|
|
|
|
padding: 0 24px;
|
|
|
|
background-color: #ffffff;
|
|
|
|
background-image: none;
|
|
|
|
border: 4px solid var(--primary);
|
|
|
|
-webkit-border-radius: 0.5em;
|
|
|
|
-moz-border-radius: 0.5em;
|
|
|
|
border-radius: 0.5em;
|
|
|
|
word-break: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.selectDiv:hover select, .selectDiv select:hover {
|
|
|
|
border: 4px solid var(--hover);
|
|
|
|
}
|
|
|
|
|
|
|
|
.selectDiv:hover:before {
|
|
|
|
background-color: var(--hover);
|
|
|
|
}
|
|
|
|
|
2022-11-29 15:48:18 +00:00
|
|
|
table {
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
|
|
|
|
|
|
|
table td, table th {
|
|
|
|
border: 1px solid #DDDDDD;
|
|
|
|
padding: 0.5em;
|
|
|
|
min-width: 7.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
table tr:nth-child(even) {
|
|
|
|
background-color: var(--secondary);
|
|
|
|
}
|
|
|
|
|
|
|
|
table tr:hover {
|
|
|
|
background-color: #ddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
table th {
|
|
|
|
padding: 0.75em 0;
|
|
|
|
text-align: left;
|
|
|
|
background-color: var(--primary);
|
|
|
|
color: #FFFFFF;
|
2022-12-09 04:51:56 +00:00
|
|
|
}
|
|
|
|
|
2022-12-15 14:50:58 +00:00
|
|
|
main {
|
|
|
|
padding-top: 2.5em;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
main form {
|
|
|
|
width: 15%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: flex-start;
|
|
|
|
gap: 1em;
|
|
|
|
}
|
|
|
|
|
2022-12-09 04:51:56 +00:00
|
|
|
main #title {
|
|
|
|
align-self: flex-start;
|
2022-12-15 14:50:58 +00:00
|
|
|
margin-left: 1em;
|
2022-12-09 04:51:56 +00:00
|
|
|
}
|