68 lines
802 B
CSS
68 lines
802 B
CSS
::selection {
|
|
background-color: #2563eb;
|
|
color: #fff;
|
|
}
|
|
|
|
::-moz-selection {
|
|
background-color: #2563eb;
|
|
color: #fff;
|
|
}
|
|
|
|
body {
|
|
font-family: sans-serif;
|
|
padding-left: 20px;
|
|
padding-top: 10px;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #000;
|
|
color: #b1b8c0;
|
|
}
|
|
|
|
#wraps {
|
|
margin: 0 auto;
|
|
width: 80%;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.green,
|
|
.green::selection,
|
|
.green::-moz-selection {
|
|
color: #5cdd8b;
|
|
}
|
|
|
|
.red,
|
|
.red::selection,
|
|
.red::-moz-selection {
|
|
color: #dc3545;
|
|
}
|
|
|
|
.grey,
|
|
.grey::selection,
|
|
.grey::-moz-selection {
|
|
color: #dadada;
|
|
}
|
|
|
|
.service {
|
|
width: 400px;
|
|
height: 20px;
|
|
padding: 10px;
|
|
margin-bottom: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
border-radius: 10px;
|
|
background-color: #040407;
|
|
}
|
|
|
|
.service p {
|
|
width: 33%
|
|
}
|
|
|
|
.status {
|
|
display: flex;
|
|
width: 66%
|
|
}
|
|
|
|
.status p {
|
|
width: 9px;
|
|
}
|