2025-03-02 21:14:28 -05:00
|
|
|
/* Line break for flex layout */
|
|
|
|
.newLine {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2025-03-05 21:08:39 -05:00
|
|
|
.disabled {
|
|
|
|
pointer-events: none;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
#body {
|
2025-02-26 06:48:37 -05:00
|
|
|
background-image: linear-gradient(to right, rgba(0, 0, 255, .8), rgba(255, 165, 0, .8));
|
|
|
|
padding-top: 2%;
|
|
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
2025-03-02 21:14:28 -05:00
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
2025-02-26 06:48:37 -05:00
|
|
|
}
|
|
|
|
|
2025-03-02 21:14:28 -05:00
|
|
|
/*
|
|
|
|
|
|
|
|
CONTENT FRAME
|
|
|
|
|
|
|
|
Modifies and defines the iFrame that's holding the content shown to the user
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2025-02-26 06:48:37 -05:00
|
|
|
#contentFrame {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
margin: auto;
|
|
|
|
border: 1px solid black;
|
|
|
|
border-radius: 5px;
|
|
|
|
background-color: rgba(255, 255, 255, .2);
|
2025-03-07 22:00:55 -05:00
|
|
|
width:100%;
|
2025-03-01 07:43:59 -05:00
|
|
|
max-width: 900px;
|
2025-02-26 06:48:37 -05:00
|
|
|
min-height: 0px;
|
|
|
|
padding-top: 20px;
|
|
|
|
padding-left: 50px;
|
|
|
|
padding-right: 50px;
|
|
|
|
padding-bottom: 40px;
|
2025-03-02 21:14:28 -05:00
|
|
|
box-shadow: 0px 0px 2px;
|
2025-02-26 06:48:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#contentFrame h1 {
|
|
|
|
margin: auto;
|
|
|
|
padding-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
2025-03-01 16:02:45 -05:00
|
|
|
#contentFrame h2,h3 {
|
2025-02-26 06:48:37 -05:00
|
|
|
margin: auto;
|
|
|
|
padding-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
2025-03-02 21:14:28 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
STANDARD NAVIGATION
|
|
|
|
|
|
|
|
For upper/primary controls
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
.navPanel {
|
2025-02-26 06:48:37 -05:00
|
|
|
position: relative;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
gap: 10%;
|
2025-03-01 07:43:59 -05:00
|
|
|
font-weight: bold;
|
2025-02-26 06:48:37 -05:00
|
|
|
}
|
|
|
|
|
2025-03-02 21:14:28 -05:00
|
|
|
.navPanel a:hover {
|
2025-02-26 06:48:37 -05:00
|
|
|
color: black;
|
|
|
|
background-color: rgba(255, 165, 0, .6);
|
|
|
|
}
|
|
|
|
|
2025-03-02 21:14:28 -05:00
|
|
|
.navPanel a:active {
|
|
|
|
box-shadow: 0px 0px 2px;
|
|
|
|
transform: translateY(2px);
|
2025-02-26 06:48:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.navLink {
|
|
|
|
border: 1px solid blue;
|
|
|
|
border-radius: 3px;
|
2025-03-02 21:14:28 -05:00
|
|
|
box-shadow: 0px 2px 4px;
|
2025-02-26 06:48:37 -05:00
|
|
|
text-decoration: none;
|
|
|
|
color: black;
|
|
|
|
padding: 10px;
|
|
|
|
padding-left: 30px;
|
|
|
|
padding-right: 30px;
|
2025-03-02 21:14:28 -05:00
|
|
|
margin-bottom: 8px;
|
2025-02-26 06:48:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.dataFrame {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
|
|
|
margin: auto;
|
|
|
|
padding: 0;
|
|
|
|
border: none;
|
2025-03-07 22:00:55 -05:00
|
|
|
max-width: 100%;
|
2025-02-26 06:48:37 -05:00
|
|
|
}
|
|
|
|
|
2025-03-01 16:02:45 -05:00
|
|
|
|
2025-03-02 21:14:28 -05:00
|
|
|
/*
|
|
|
|
SUB-NAVIGATION
|
|
|
|
|
|
|
|
For all the things at the bottom of the page; log in/out, 'my account', etc.
|
2025-03-01 16:02:45 -05:00
|
|
|
|
2025-03-02 21:14:28 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
.subNav {
|
2025-03-01 16:02:45 -05:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: center;
|
|
|
|
gap: 2%;
|
2025-03-02 21:14:28 -05:00
|
|
|
padding: 5px;
|
|
|
|
padding-left: 15px;
|
|
|
|
padding-right: 15px;
|
|
|
|
font-size: small;
|
2025-03-01 16:02:45 -05:00
|
|
|
}
|
|
|
|
|
2025-03-02 21:14:28 -05:00
|
|
|
.subNavLink {
|
|
|
|
border: 1px solid blue;
|
|
|
|
border-radius: 3px;
|
2025-03-01 16:02:45 -05:00
|
|
|
box-shadow: 0px 2px 4px;
|
2025-03-02 21:14:28 -05:00
|
|
|
text-decoration: none;
|
2025-03-01 16:02:45 -05:00
|
|
|
color: black;
|
2025-03-02 21:14:28 -05:00
|
|
|
padding: 5px;
|
|
|
|
padding-left: 15px;
|
|
|
|
padding-right: 15px;
|
2025-03-01 16:02:45 -05:00
|
|
|
}
|
|
|
|
|
2025-03-02 21:14:28 -05:00
|
|
|
.subNav a {
|
2025-03-01 16:02:45 -05:00
|
|
|
box-shadow: 0px 2px 4px;
|
|
|
|
}
|
2025-03-02 21:14:28 -05:00
|
|
|
.subNav a:hover {
|
2025-03-01 16:02:45 -05:00
|
|
|
color: black;
|
|
|
|
background-color: rgba(255, 165, 0, .6);
|
|
|
|
}
|
2025-03-02 21:14:28 -05:00
|
|
|
.subNav a:active {
|
2025-03-01 16:02:45 -05:00
|
|
|
box-shadow: 0px 0px 2px;
|
|
|
|
transform: translateY(2px);
|
2025-03-02 21:14:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2025-03-05 21:08:39 -05:00
|
|
|
.submitButton input[type="submit"] {
|
|
|
|
margin: auto;
|
|
|
|
padding: 8px 25px;
|
|
|
|
font-size: 150%;
|
|
|
|
font-weight: bold;
|
|
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
|
|
background-color: rgba(255, 255, 255, 0);
|
|
|
|
border-radius: 6px;
|
|
|
|
border: 1px solid blue;
|
|
|
|
box-shadow: 0px 2px 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.submitButton input[type="submit"]:hover {
|
|
|
|
color: black;
|
|
|
|
background-color: rgba(255, 165, 0, .6);
|
|
|
|
}
|
|
|
|
|
|
|
|
.submitButton input[type="submit"]:active {
|
|
|
|
box-shadow: 0px 0px 2px;
|
|
|
|
transform: translateY(2px);
|
|
|
|
}
|
2025-03-02 21:14:28 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
TEMPORARY
|
|
|
|
*/
|
|
|
|
#contentFrame h4 {
|
|
|
|
margin: auto;
|
|
|
|
padding-bottom: 15px;
|
|
|
|
font-size: 250%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#giveawayLink {
|
|
|
|
text-decoration:none;
|
|
|
|
color:blue;
|
|
|
|
-webkit-text-stroke: 1px white;
|
|
|
|
}
|
|
|
|
#giveawayLink:hover {
|
|
|
|
color:orange;
|
|
|
|
-webkit-text-stroke: 1px black;
|
2025-03-01 16:02:45 -05:00
|
|
|
}
|