261 lines
3.6 KiB
CSS
261 lines
3.6 KiB
CSS
a:link {
|
|
color: #2c199c;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:visited {
|
|
color: #943cc3;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
body {
|
|
background-color: #ffffff;
|
|
background-image: url("/circuit-light.png");
|
|
color: #000000;
|
|
padding-top: 15px;
|
|
}
|
|
|
|
hr {
|
|
background-color: #070707;
|
|
border: 0;
|
|
color: #070707;
|
|
height: 2px;
|
|
}
|
|
|
|
img {
|
|
border: 0;
|
|
}
|
|
|
|
|
|
.bold {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.box {
|
|
background: #f0f0f0;
|
|
border: 2px solid #070707;
|
|
box-shadow: 10px 10px 10px -5px rgba(0,0,0,0.5);
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.boxmargins {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.boxpadding {
|
|
padding-bottom: 10px;
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.donatebutton {
|
|
margin-left: 100px;
|
|
margin-right: 100px;
|
|
}
|
|
|
|
.heading {
|
|
font-size: 200%;
|
|
}
|
|
|
|
.metertext {
|
|
font-size: 200%;
|
|
}
|
|
|
|
.metertext:empty:before {
|
|
content: "0.00";
|
|
}
|
|
|
|
.notice {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-bottom: 25px;
|
|
margin-right: auto;
|
|
text-align: center;
|
|
width: 70%;
|
|
}
|
|
|
|
.sponsor {
|
|
margin-top: 15px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.subheading {
|
|
font-size: 125%;
|
|
}
|
|
|
|
|
|
#copyright {
|
|
align-self: center;
|
|
margin-left: 0;
|
|
margin-right: auto;
|
|
}
|
|
|
|
#donatebuttons {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
margin-bottom: 10px;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
#footer {
|
|
display: grid;
|
|
column-gap: 50px;
|
|
font-size: 12px;
|
|
grid-template-columns: auto auto;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
#headingbox {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: fit-content;
|
|
}
|
|
|
|
#headingtext {
|
|
margin-bottom: 5px;
|
|
margin-left: 5px;
|
|
margin-right: 5px;
|
|
margin-top: 5px;
|
|
text-align: center;
|
|
}
|
|
|
|
#ipinfo {
|
|
text-align: center;
|
|
}
|
|
|
|
#logo {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
#logo img {
|
|
width: 100%;
|
|
}
|
|
|
|
#page {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 90%;
|
|
}
|
|
|
|
#poweredby {
|
|
align-items: center;
|
|
display: flex;
|
|
margin-left: auto;
|
|
margin-right: 0;
|
|
text-align: right;
|
|
}
|
|
|
|
#poweredby img {
|
|
margin-left: 5px;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
#progress {
|
|
background-color: #2c199c;
|
|
height: 100%;
|
|
position: absolute;
|
|
transition: width 2s;
|
|
width: 0%;
|
|
}
|
|
|
|
#progressbar {
|
|
background-color: #f0f0f0;
|
|
border: 2px solid #070707;
|
|
height: 8px;
|
|
margin-bottom: 5px;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
position: relative;
|
|
width: 600px;
|
|
}
|
|
|
|
#progresstext {
|
|
margin-bottom: 5px;
|
|
text-align: center;
|
|
}
|
|
|
|
#startstopbutton {
|
|
#margin: 0 auto;
|
|
background-color: #f0f0f0;
|
|
border: 2px solid #2c199c;
|
|
box-sizing: border-box;
|
|
color: #2c199c;
|
|
cursor: pointer;
|
|
height: 40px;
|
|
line-height: 36px;
|
|
transition: all 0.3s;
|
|
width: 150px;
|
|
margin-bottom: 30px;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
text-align: center;
|
|
}
|
|
|
|
#startstopbutton:before {
|
|
content: "Start Test";
|
|
}
|
|
|
|
#startstopbutton.running {
|
|
background-color:#2c199c;
|
|
border-color:#070707;
|
|
color:#f0f0f0;
|
|
}
|
|
|
|
#startstopbutton.running:before {
|
|
content: "Abort";
|
|
}
|
|
|
|
#testbox {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
padding-left: 75px;
|
|
padding-right: 75px;
|
|
width: fit-content;
|
|
}
|
|
|
|
#tests {
|
|
column-gap: 150px;
|
|
display: grid;
|
|
grid-template-columns: auto auto auto;
|
|
justify-content: center;
|
|
margin-bottom: 30px;
|
|
text-align: center;
|
|
}
|
|
|
|
#theme {
|
|
column-gap: 50px;
|
|
display: grid;
|
|
grid-template-columns: auto auto auto;
|
|
}
|
|
|
|
#themetoggle {
|
|
align-self: end;
|
|
display: flex;
|
|
height: 25px;
|
|
margin-left: auto;
|
|
margin-right: 0;
|
|
max-height: 25px;
|
|
text-align: right;
|
|
}
|
|
|
|
#themetoggleimg {
|
|
height: 15px;
|
|
margin-right: 5px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
#themetoggletext {
|
|
align-content: center;
|
|
color: #070707;
|
|
font-size: 15px;
|
|
margin-left: 5px;
|
|
margin-right: 5px;
|
|
}
|