104 lines
1.7 KiB
CSS
Executable File
104 lines
1.7 KiB
CSS
Executable File
body {
|
|
background-color: #0E2D2D;
|
|
color: white;
|
|
font-family: "Roboto Light", Ubuntu, sans-serif;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
button {
|
|
font-size: 1.2em;
|
|
border-radius: 10px;
|
|
background-color: #42A4A4;
|
|
border: 1px solid #423434;
|
|
padding: 5px;
|
|
}
|
|
|
|
input {
|
|
font-size: 1.2em;
|
|
padding: 3px;
|
|
}
|
|
|
|
|
|
table {
|
|
font-family: arial, sans-serif;
|
|
border-collapse: collapse;
|
|
width: 99.99%;
|
|
background-color: #1D3636;
|
|
margin-bottom: 8%;
|
|
overflow-x: hidden;
|
|
-webkit-user-select: none; /* Safari */
|
|
-ms-user-select: none; /* IE 10 and IE 11 */
|
|
user-select: none; /* Standard syntax */
|
|
|
|
}
|
|
|
|
|
|
td, th {
|
|
border: 1px solid #131A2A;
|
|
text-align: left;
|
|
padding: 8px;
|
|
}
|
|
|
|
tr th {
|
|
text-align: center;
|
|
}
|
|
|
|
tr:active {
|
|
background-color: #66A1A1 !important;
|
|
}
|
|
|
|
tr:nth-child(even) {
|
|
background-color: #1F4444;
|
|
}
|
|
|
|
|
|
/* The Modal (background) */
|
|
.modal {
|
|
display: none; /* Hidden by default */
|
|
position: fixed; /* Stay in place */
|
|
z-index: 1; /* Sit on top */
|
|
padding-top: 100px; /* Location of the box */
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%; /* Full width */
|
|
height: 100%; /* Full height */
|
|
overflow: auto; /* Enable scroll if needed */
|
|
background-color: rgb(0,0,0); /* Fallback color */
|
|
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
|
|
}
|
|
|
|
/* Modal Content */
|
|
.modal-content {
|
|
background-color: #fefefe;
|
|
margin: auto;
|
|
padding: 20px;
|
|
border: 1px solid #888;
|
|
width: 80%;
|
|
color: black;
|
|
}
|
|
|
|
/* The Close Button */
|
|
.close {
|
|
color: #aaaaaa;
|
|
float: right;
|
|
font-size: 28px;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.close:hover,
|
|
.close:focus {
|
|
color: #000;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.footer {
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
background-color: #0E2D2D;
|
|
color: white;
|
|
text-align: center;
|
|
} |