106 lines
1.5 KiB
CSS
106 lines
1.5 KiB
CSS
html, body {
|
|
padding: 0;
|
|
margin: 0;
|
|
background-color: #333;
|
|
color: aqua;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
#title {
|
|
text-align: center;
|
|
font-size: 35px;
|
|
margin-top: 10px;
|
|
padding-bottom: 15px;
|
|
}
|
|
|
|
#title a {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
|
|
#safeties {
|
|
text-align: center;
|
|
}
|
|
|
|
.controls-container {
|
|
text-align: center;
|
|
}
|
|
|
|
#buttons button {
|
|
margin: 20px 5px;
|
|
font-size: 20px;
|
|
width: 150px;
|
|
height: 30px;
|
|
}
|
|
|
|
.controls-container input {
|
|
margin: 5px;
|
|
}
|
|
|
|
.subheading {
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
|
|
#log-container {
|
|
text-align: center;
|
|
}
|
|
|
|
#log-area {
|
|
width: 100%;
|
|
height: 500px;
|
|
background-color: aqua;
|
|
color: aqua;
|
|
}
|
|
|
|
#trial {
|
|
display:;
|
|
color: yellow;
|
|
font-size: 20px;
|
|
background-color: red;
|
|
}
|
|
|
|
.button-container {
|
|
padding: 0;
|
|
margin-top: 20px;
|
|
margin-bottom: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.btn {
|
|
background-color: #333;
|
|
color: aqua;
|
|
}
|
|
|
|
.button-selected {
|
|
margin: 5px;
|
|
border-width: 0px;
|
|
font-family: times;
|
|
font-size: 20px;
|
|
height: 35px;
|
|
width: 100px;
|
|
border-top-left-radius: 0px;
|
|
border-bottom-left-radius: 0px;
|
|
border-top-right-radius: 0px;
|
|
border-bottom-right-radius: 0px;
|
|
}
|
|
|
|
table {
|
|
margin: 10;
|
|
color: aqua !important;
|
|
}
|
|
|
|
table, th, td {
|
|
border: 1px solid;
|
|
border-collapse: collapse;
|
|
padding: 3px;
|
|
}
|
|
|
|
th, td {
|
|
width: 50%;
|
|
}
|
|
|
|
#quit {
|
|
/* visibility: hidden; */
|
|
} |