- Added admin panel - Added user creation form - Now connects to SQL - Added option for DB (re)initialization - Capable of writing user form to SQL
83 lines
1.5 KiB
CSS
83 lines
1.5 KiB
CSS
#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;
|
|
height:100%
|
|
}
|
|
|
|
#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;
|
|
}
|
|
|
|
#contentFrame h1 {
|
|
margin: auto;
|
|
padding-bottom: 20px;
|
|
}
|
|
|
|
#contentFrame h2,h3 {
|
|
margin: auto;
|
|
padding-bottom: 30px;
|
|
}
|
|
|
|
#adminHeader {
|
|
font-size: 200%;
|
|
}
|
|
|
|
.dataFrame {
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
margin: auto;
|
|
padding: 0;
|
|
border: none;
|
|
max-width: 90%;
|
|
}
|
|
|
|
.newLine {
|
|
width: 100%;
|
|
}
|
|
|
|
#adminHomeButton {
|
|
box-shadow: 0px 2px 4px;
|
|
font-weight: bold;
|
|
}
|
|
#adminHomeButton:hover {
|
|
color: black;
|
|
background-color: rgba(255, 165, 0, .6);
|
|
}
|
|
#adminHomeButton:active {
|
|
box-shadow: 0px 0px 2px;
|
|
transform: translateY(2px);
|
|
}
|
|
|
|
#subNav {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 1%;
|
|
justify-content: center;
|
|
gap: 2%;
|
|
}
|
|
|
|
#mainHomeButton {
|
|
box-shadow: 0px 2px 4px;
|
|
font-weight: bold;
|
|
}
|
|
#mainHomeButton:hover {
|
|
color: black;
|
|
background-color: rgba(255, 165, 0, .6);
|
|
}
|
|
#mainHomeButton:active {
|
|
box-shadow: 0px 0px 2px;
|
|
transform: translateY(2px);
|
|
} |