Taylor Courage 4dd3604d81 THE BIG "I need to commit more" UPDATE!
- Can now create users
- Can now create tournaments
- Has (temporary) link to giveaway
- Removed dev_db_config that was added by mistake (the db pw has been changed!)
- Tons of other little changes
2025-03-02 21:14:28 -05:00

164 lines
2.6 KiB
CSS

/* Line break for flex layout */
.newLine {
width: 100%;
}
#body {
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;
flex-grow: 1;
flex-shrink: 1;
}
/*
CONTENT FRAME
Modifies and defines the iFrame that's holding the content shown to the user
*/
#contentFrame {
display: flex;
flex-direction: column;
margin: auto;
border: 1px solid black;
border-radius: 5px;
background-color: rgba(255, 255, 255, .2);
width:80%;
max-width: 900px;
min-height: 0px;
padding-top: 20px;
padding-left: 50px;
padding-right: 50px;
padding-bottom: 40px;
box-shadow: 0px 0px 2px;
}
#contentFrame h1 {
margin: auto;
padding-bottom: 20px;
}
#contentFrame h2,h3 {
margin: auto;
padding-bottom: 30px;
}
/*
STANDARD NAVIGATION
For upper/primary controls
*/
.navPanel {
position: relative;
flex-wrap: wrap;
display: flex;
justify-content: center;
gap: 10%;
font-weight: bold;
}
.navPanel a:hover {
color: black;
background-color: rgba(255, 165, 0, .6);
}
.navPanel a:active {
box-shadow: 0px 0px 2px;
transform: translateY(2px);
}
.navLink {
border: 1px solid blue;
border-radius: 3px;
box-shadow: 0px 2px 4px;
text-decoration: none;
color: black;
padding: 10px;
padding-left: 30px;
padding-right: 30px;
margin-bottom: 8px;
}
.dataFrame {
flex-grow: 1;
flex-shrink: 1;
margin: auto;
padding: 0;
border: none;
max-width: 90%;
}
/*
SUB-NAVIGATION
For all the things at the bottom of the page; log in/out, 'my account', etc.
*/
.subNav {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
gap: 2%;
padding: 5px;
padding-left: 15px;
padding-right: 15px;
font-size: small;
}
.subNavLink {
border: 1px solid blue;
border-radius: 3px;
box-shadow: 0px 2px 4px;
text-decoration: none;
color: black;
padding: 5px;
padding-left: 15px;
padding-right: 15px;
}
.subNav a {
box-shadow: 0px 2px 4px;
}
.subNav a:hover {
color: black;
background-color: rgba(255, 165, 0, .6);
}
.subNav a:active {
box-shadow: 0px 0px 2px;
transform: translateY(2px);
}
/*
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;
}