2023-03-25 23:38:15 +00:00
|
|
|
:root {
|
2023-04-06 19:47:40 +00:00
|
|
|
--accent-bkg-color: black;
|
2023-03-25 23:38:15 +00:00
|
|
|
--accent-txt-color: white;
|
2023-04-06 19:47:40 +00:00
|
|
|
--accent-lnk-color: white;
|
2023-03-25 23:38:15 +00:00
|
|
|
--content-bkg-color: white;
|
|
|
|
--content-txt-color: black;
|
2023-04-06 19:47:40 +00:00
|
|
|
--content-lnk-color: #6666FF;
|
2023-03-25 23:38:15 +00:00
|
|
|
--form-disabled-color: #606060;
|
|
|
|
--button-accept: #0F0;
|
2023-04-03 22:59:36 +00:00
|
|
|
--success-color: #0F0;
|
2023-03-25 23:38:15 +00:00
|
|
|
--button-cancel: #F00;
|
2023-04-03 22:59:36 +00:00
|
|
|
--fail-color: #F00;
|
2023-03-25 23:38:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
font-family: monospace;
|
2023-04-06 04:43:36 +00:00
|
|
|
font-size: large;
|
2023-03-25 23:38:15 +00:00
|
|
|
}
|
|
|
|
|
2022-12-11 02:02:29 +00:00
|
|
|
body {
|
2023-03-25 23:38:15 +00:00
|
|
|
display: grid;
|
|
|
|
min-height: 100vh;
|
2023-04-06 03:46:39 +00:00
|
|
|
grid-template-rows: 1fr auto;
|
2023-03-25 23:38:15 +00:00
|
|
|
grid-template-columns: auto 1fr;
|
|
|
|
grid-template-areas:
|
2023-04-06 03:46:39 +00:00
|
|
|
"bar main"
|
2023-03-25 23:38:15 +00:00
|
|
|
"footer main"
|
|
|
|
;
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
2023-04-06 02:05:57 +00:00
|
|
|
header {
|
2023-04-06 03:46:39 +00:00
|
|
|
grid-area: bar;
|
2023-04-05 23:35:11 +00:00
|
|
|
}
|
|
|
|
|
2023-03-25 23:38:15 +00:00
|
|
|
main {
|
2023-04-06 03:46:39 +00:00
|
|
|
padding: 20px;
|
2023-04-03 22:09:04 +00:00
|
|
|
grid-area: main;
|
2023-03-25 23:38:15 +00:00
|
|
|
}
|
|
|
|
|
2023-04-03 22:09:04 +00:00
|
|
|
footer {
|
|
|
|
grid-area: footer;
|
2023-04-06 03:46:39 +00:00
|
|
|
text-align: center;
|
2023-04-03 22:09:04 +00:00
|
|
|
}
|
|
|
|
|
2023-04-06 03:46:39 +00:00
|
|
|
header, footer {
|
|
|
|
background-color: var(--accent-bkg-color);
|
|
|
|
color: var(--accent-txt-color);
|
|
|
|
padding: 20px;
|
2023-03-25 23:38:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav a {
|
2023-04-06 19:47:40 +00:00
|
|
|
background-color: var(--accent-bkg-color);
|
|
|
|
color: var(--accent-lnk-color);
|
|
|
|
font-size: xx-large;
|
|
|
|
text-decoration: underline 0.1em var(--accent-bkg-color);
|
|
|
|
transition: text-decoration-color 250ms;
|
2023-03-25 23:38:15 +00:00
|
|
|
}
|
|
|
|
|
2023-04-06 19:47:40 +00:00
|
|
|
nav a:hover, nav a[aria-current="true"] {
|
|
|
|
text-decoration: underline 0.1em var(--accent-lnk-color);
|
2023-03-25 23:38:15 +00:00
|
|
|
}
|
|
|
|
|
2023-04-06 19:47:40 +00:00
|
|
|
main a {
|
|
|
|
font-size: inherit;
|
|
|
|
color: var(--content-lnk-color);
|
|
|
|
text-decoration: underline 0.1em var(--content-bkg-color);
|
|
|
|
transition: text-decoration-color 250ms;
|
2023-03-25 23:38:15 +00:00
|
|
|
}
|
|
|
|
|
2023-04-06 19:47:40 +00:00
|
|
|
main a:hover {
|
|
|
|
text-decoration: underline 0.1em var(--content-lnk-color);
|
2022-12-11 02:02:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
2023-04-06 03:46:39 +00:00
|
|
|
font-size: xx-large;
|
|
|
|
margin: 0px;
|
|
|
|
text-align: center;
|
2022-12-11 02:02:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
2023-04-06 03:46:39 +00:00
|
|
|
font-size: xx-large;
|
|
|
|
margin: 0px;
|
2022-12-11 02:02:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
2023-04-05 23:35:11 +00:00
|
|
|
font-size: x-large;
|
2022-12-11 02:02:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
2023-04-05 23:35:11 +00:00
|
|
|
font-size: large;
|
2022-12-11 02:02:29 +00:00
|
|
|
}
|
|
|
|
|
2023-01-17 17:56:48 +00:00
|
|
|
.hidden {
|
|
|
|
visibility: hidden;
|
2023-01-18 23:43:57 +00:00
|
|
|
}
|
|
|
|
|
2023-02-16 00:57:11 +00:00
|
|
|
.none {
|
|
|
|
display: none;
|
2023-04-06 03:46:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
border: 1px solid;
|
|
|
|
border-color: inherit;
|
2023-03-25 23:38:15 +00:00
|
|
|
}
|