48 lines
799 B
CSS
48 lines
799 B
CSS
#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);
|
|
}
|
|
|
|
|
|
#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);
|
|
}
|
|
|
|
#notAnAdmin {
|
|
width: 300px;
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
} |