2023-02-17 16:59:42 -05:00
|
|
|
|
2023-03-06 09:33:42 -05:00
|
|
|
/* 1.0 - Foundational Styling */
|
2023-02-17 16:59:42 -05:00
|
|
|
|
|
|
|
|
:root {
|
2023-02-21 16:59:41 -05:00
|
|
|
--primary: #66C92D;
|
|
|
|
|
--text-light: #FFFFFF;
|
|
|
|
|
--text-dark: #667E8A;
|
|
|
|
|
--background: #667E8A;
|
|
|
|
|
--background-light: #E5E9EB;
|
|
|
|
|
height: 100%;
|
2023-02-17 16:59:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*,
|
|
|
|
|
*::before,
|
|
|
|
|
*::after {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
box-sizing: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
2023-02-21 16:59:41 -05:00
|
|
|
/*background: linear-gradient(
|
2023-02-17 16:59:42 -05:00
|
|
|
145deg, #81A1C1, #88C0D0, #8FBCBB, #A3BE8C, #EBCB8B, #D08770
|
|
|
|
|
);
|
|
|
|
|
background-size: 700% 550%;
|
2023-02-21 16:59:41 -05:00
|
|
|
animation: gradient 7s ease-in-out infinite;*/
|
|
|
|
|
color: var(--text-dark);
|
2023-02-17 16:59:42 -05:00
|
|
|
font-family: 'Space Grotesk', sans-serif;
|
2023-02-21 16:59:41 -05:00
|
|
|
background-color: var(--background-light);
|
2023-02-17 16:59:42 -05:00
|
|
|
box-sizing: border-box;
|
2023-02-21 16:59:41 -05:00
|
|
|
text-align: center;
|
|
|
|
|
width: 100%;
|
2023-02-17 16:59:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes gradient {
|
|
|
|
|
0% {
|
|
|
|
|
background-position: 0% 79%;
|
|
|
|
|
}
|
|
|
|
|
50% {
|
|
|
|
|
background-position: 100% 22%;
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
background-position: 0% 79%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-21 16:59:41 -05:00
|
|
|
html {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-06 09:33:42 -05:00
|
|
|
/* 1.1 - Dataframe and Table Styling */
|
|
|
|
|
|
2023-02-21 16:59:41 -05:00
|
|
|
input,
|
|
|
|
|
select {
|
2023-02-22 06:42:26 -05:00
|
|
|
width: 200px;
|
|
|
|
|
height: 25px;
|
|
|
|
|
margin: 2px;
|
|
|
|
|
--moz-box-sizing: border-box;
|
|
|
|
|
--webkit-box-sizing: border-box;
|
|
|
|
|
box-sizing: border-box;
|
2023-02-21 16:59:41 -05:00
|
|
|
}
|
2023-02-22 17:11:14 -05:00
|
|
|
|
2023-02-21 16:59:41 -05:00
|
|
|
.dataframe {
|
|
|
|
|
font-size: 11pt;
|
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
border: 1px solid #66C92D;
|
|
|
|
|
width: 100%;
|
|
|
|
|
text-align: left !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dataframe td, th {
|
|
|
|
|
padding: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dataframe tr:nth-child(even) {
|
2023-02-22 17:11:14 -05:00
|
|
|
background: #CCE8EE;
|
2023-02-21 16:59:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dataframe tr:hover {
|
2023-02-22 17:11:14 -05:00
|
|
|
background: #CCD4D8;
|
|
|
|
|
}
|
2023-02-21 16:59:41 -05:00
|
|
|
|
2023-03-06 09:33:42 -05:00
|
|
|
/* Titles and Header Copy/Test */
|
|
|
|
|
|
2023-02-17 16:59:42 -05:00
|
|
|
h1 {
|
|
|
|
|
font-size: 4rem;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1 > span {
|
|
|
|
|
color: var(--primary);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
|
align-items: center;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
img {
|
2023-02-21 16:59:41 -05:00
|
|
|
height: 80px;
|
2023-02-17 16:59:42 -05:00
|
|
|
}
|
2023-02-21 16:59:41 -05:00
|
|
|
|
2023-03-06 09:33:42 -05:00
|
|
|
.logo-div {
|
2023-02-17 16:59:42 -05:00
|
|
|
margin: 4px;
|
|
|
|
|
flex-wrap: wrap;
|
2023-03-01 17:05:16 -05:00
|
|
|
padding: 25px;
|
2023-02-17 16:59:42 -05:00
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-06 09:33:42 -05:00
|
|
|
/* 1.? - Header and Navigation Bar Styling */
|
|
|
|
|
|
2023-02-17 16:59:42 -05:00
|
|
|
.header {
|
2023-03-01 17:05:16 -05:00
|
|
|
margin: 0;
|
|
|
|
|
padding: 20px;
|
2023-02-17 16:59:42 -05:00
|
|
|
font-weight: 200;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-01 17:05:16 -05:00
|
|
|
.header_opts {
|
|
|
|
|
margin: 0px;
|
|
|
|
|
--webkit-box-align: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
height: 48px;
|
|
|
|
|
padding: 8px 16px;
|
2023-03-07 09:59:27 -05:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
2023-03-01 17:05:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-link {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-07 17:52:36 -05:00
|
|
|
.instructions-list{
|
|
|
|
|
display:flex;
|
2023-03-09 15:15:42 -05:00
|
|
|
justify-content: space-around;
|
2023-03-07 17:52:36 -05:00
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-01 17:05:16 -05:00
|
|
|
li {
|
2023-03-07 17:52:36 -05:00
|
|
|
display: block;
|
2023-03-01 17:05:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button-background {
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-07 17:52:36 -05:00
|
|
|
.radio-options {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-01 17:05:16 -05:00
|
|
|
.navbutton {
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
margin-right: 4px;
|
|
|
|
|
border: 1px solid #66C92D;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 16px;
|
|
|
|
|
padding: 8px 16px 8px 12px;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-07 14:56:01 -05:00
|
|
|
.man-csv-opts {
|
2023-03-07 17:52:36 -05:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-evenly;
|
2023-03-07 14:56:01 -05:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
.csv-upload {
|
|
|
|
|
align-items: right;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-07 09:59:27 -05:00
|
|
|
.navoption {
|
|
|
|
|
color: var(--background);
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-17 16:59:42 -05:00
|
|
|
#currentDate {
|
|
|
|
|
color: var(--primary);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#currentTime {
|
|
|
|
|
font-size: 4rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-07 09:59:27 -05:00
|
|
|
.header {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-evenly;
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-17 16:59:42 -05:00
|
|
|
@media screen and (max-width: 1250px) {
|
|
|
|
|
h1 {
|
2023-02-21 16:59:41 -05:00
|
|
|
display: flex;
|
2023-02-17 16:59:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#currentTime {
|
|
|
|
|
font-size: 3rem;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#fullDate {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-02-21 16:59:41 -05:00
|
|
|
ul {
|
2023-03-07 17:52:36 -05:00
|
|
|
display: block;
|
|
|
|
|
text-align: left;
|
2023-02-21 16:59:41 -05:00
|
|
|
}
|
2023-02-17 16:59:42 -05:00
|
|
|
|
2023-03-06 09:33:42 -05:00
|
|
|
/* 1.? - Card Layout in options.html only */
|
|
|
|
|
|
2023-02-21 16:59:41 -05:00
|
|
|
.card-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(3, 1fr);
|
|
|
|
|
grid-auto-rows: 100px;
|
|
|
|
|
grid-gap: 2rem;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card {
|
|
|
|
|
background-color: #089FB7;
|
|
|
|
|
padding: 5px;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
border: 1px solid #66C92D;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
}
|
2023-02-17 16:59:42 -05:00
|
|
|
|
|
|
|
|
.card:hover,
|
|
|
|
|
.card:focus {
|
|
|
|
|
transform: scale(1.02);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card:focus > .card__name {
|
|
|
|
|
bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-06 09:33:42 -05:00
|
|
|
.card:checked > .card__name {
|
2023-02-17 16:59:42 -05:00
|
|
|
bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card__icon {
|
|
|
|
|
font-size: 2rem;
|
|
|
|
|
padding: 1rem;
|
|
|
|
|
display: grid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card__name {
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
transform: translate(-50%, -50%);
|
2023-02-21 16:59:41 -05:00
|
|
|
position: relative;
|
2023-02-17 16:59:42 -05:00
|
|
|
left: 50%;
|
|
|
|
|
transition: 0.1s;
|
|
|
|
|
}
|
2023-03-06 09:33:42 -05:00
|
|
|
|
|
|
|
|
/* Styling for the options2.html file only */
|
|
|
|
|
|
|
|
|
|
.fields {
|
|
|
|
|
display: grid;
|
|
|
|
|
width: 60px; height: 40px; margin: 0;
|
|
|
|
|
appearance: none; -webkit-appearance: none;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
background: var(--background-dark);
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input:not(:nth-of-type(4n+1))::before,
|
|
|
|
|
input:nth-of-type(n+5)::after {
|
|
|
|
|
content: '';
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
grid-area: 1/1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input:not(:nth-of-type(4n+1))::before { transform: translatex(-85px); }
|
|
|
|
|
|
|
|
|
|
input:nth-of-type(n+5)::after { transform: translatey(-60px); }
|
|
|
|
|
|
|
|
|
|
input:checked { background: limegreen; }
|
|
|
|
|
|
|
|
|
|
/* a checked box's right borders */
|
|
|
|
|
input:not(:nth-of-type(4n)):checked + input:checked::before {
|
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
|
background: limegreen;
|
|
|
|
|
}
|
|
|
|
|
/* a checked box's bottom borders */
|
|
|
|
|
input:nth-last-of-type(n+5):checked + * + * + * + input:checked::after {
|
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
|
background: limegreen;
|
|
|
|
|
}
|
|
|
|
|
/* a checked box's adjacent (rightside) checked box's left borders */
|
|
|
|
|
input:not(:nth-of-type(4n)):checked + input:checked + input::before {
|
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
|
background: limegreen;
|
|
|
|
|
}
|
|
|
|
|
/* a checked box's adjacent (below) checked box's top borders */
|
|
|
|
|
input:not(:nth-of-type(4n)):checked + * + * + * + input:checked + input::before {
|
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
|
background: limegreen;
|
|
|
|
|
}
|
|
|
|
|
/* a checked box's (in last column) left borders */
|
|
|
|
|
input:nth-of-type(4n-1):checked + input:checked {
|
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
|
}
|
|
|
|
|
/* a checked box's (in last column) adjacent (below) checked box's top borders */
|
|
|
|
|
input:nth-of-type(4n):checked + * + * + * + input:checked {
|
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.selections {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid: repeat(5, 60px) / repeat(4, 85px);
|
|
|
|
|
align-items: center; justify-items: center;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|