2019-08-28 03:53:44 +00:00
|
|
|
body {
|
|
|
|
font-family: "Roboto", sans-serif;
|
2019-08-30 03:56:28 +00:00
|
|
|
margin: 2%;
|
2019-08-28 03:53:44 +00:00
|
|
|
background-color: #282c37;
|
|
|
|
color: white;
|
2019-08-29 05:08:11 +00:00
|
|
|
}
|
|
|
|
* {
|
2019-08-28 03:53:44 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
background-color: #444a5c;
|
|
|
|
padding:10px;
|
|
|
|
}
|
2019-08-29 06:23:56 +00:00
|
|
|
.light {
|
2019-08-29 01:14:42 +00:00
|
|
|
background-color: #4d5366;
|
|
|
|
}
|
2019-08-28 03:53:44 +00:00
|
|
|
.column {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-basis: 0;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
.large {
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
2019-08-29 05:08:11 +00:00
|
|
|
.small {
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
2019-08-29 01:14:42 +00:00
|
|
|
.centred {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.thin {
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
.subtle {
|
2019-09-01 04:04:32 +00:00
|
|
|
color: #ccc;
|
2019-08-29 01:14:42 +00:00
|
|
|
}
|
|
|
|
.row {
|
|
|
|
display: flex;
|
|
|
|
}
|
2019-08-29 01:35:06 +00:00
|
|
|
.full-width {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2019-08-28 03:53:44 +00:00
|
|
|
|
2019-08-31 13:57:38 +00:00
|
|
|
.panel-icon {
|
2019-09-01 04:52:39 +00:00
|
|
|
width: 100px;
|
2019-08-29 06:23:56 +00:00
|
|
|
height: 100px;
|
2019-08-30 03:34:59 +00:00
|
|
|
background: center/contain url("https://cloud.lynnesbian.space/s/JZCPTs3DzMLAspC/preview");
|
2019-08-29 06:23:56 +00:00
|
|
|
}
|
2019-09-02 06:59:49 +00:00
|
|
|
.panel-icon.large {
|
|
|
|
width: 150px;
|
|
|
|
height: 150px;
|
|
|
|
}
|
2019-09-01 04:52:39 +00:00
|
|
|
.panel-icon.online, .panel-icon.offline {
|
|
|
|
width: 105px;
|
|
|
|
}
|
2019-09-01 01:48:08 +00:00
|
|
|
.panel-icon.online {
|
|
|
|
border-left: 5px #5c5 solid;
|
|
|
|
}
|
|
|
|
.panel-icon.offline {
|
|
|
|
border-left: 5px #c33 solid;
|
|
|
|
}
|
2019-08-31 13:57:38 +00:00
|
|
|
.panel-icon, .panel-text, .panel-actions {
|
2019-08-29 06:23:56 +00:00
|
|
|
display: inline-block;
|
|
|
|
align-self: center;
|
|
|
|
}
|
2019-08-31 13:57:38 +00:00
|
|
|
.panel-text {
|
2019-08-29 06:23:56 +00:00
|
|
|
flex-grow: 1;
|
2019-08-30 04:02:41 +00:00
|
|
|
margin: 0 0 10px 10px;
|
2019-08-29 06:23:56 +00:00
|
|
|
}
|
2019-08-31 13:57:38 +00:00
|
|
|
.panel-name {
|
2019-08-29 06:23:56 +00:00
|
|
|
font-size: 1.8em;
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
2019-08-31 13:57:38 +00:00
|
|
|
.panel-actions {
|
2019-08-29 06:23:56 +00:00
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
2019-08-29 01:35:06 +00:00
|
|
|
.button {
|
2019-08-28 03:53:44 +00:00
|
|
|
color: white;
|
|
|
|
line-height:1.2em;
|
|
|
|
padding:10px;
|
|
|
|
text-decoration: none;
|
|
|
|
display: inline-block;
|
|
|
|
margin: 5px 0;
|
|
|
|
transition: 0.2s linear;
|
2019-08-29 01:35:06 +00:00
|
|
|
border:none;
|
2019-08-28 03:53:44 +00:00
|
|
|
}
|
2019-08-29 01:35:06 +00:00
|
|
|
.button:visited {
|
2019-08-28 03:53:44 +00:00
|
|
|
color:white;
|
|
|
|
}
|
2019-08-30 03:18:51 +00:00
|
|
|
input.button, button.button {
|
2019-08-29 01:35:06 +00:00
|
|
|
font-size: 1em;
|
2019-08-29 05:08:11 +00:00
|
|
|
cursor: pointer;
|
2019-08-29 01:35:06 +00:00
|
|
|
}
|
2019-08-28 03:53:44 +00:00
|
|
|
|
2019-08-29 01:35:06 +00:00
|
|
|
.btn-primary {
|
2019-08-27 11:33:23 +00:00
|
|
|
background-color: #9370db;
|
|
|
|
border-color: #9370db;
|
|
|
|
}
|
2019-08-29 01:35:06 +00:00
|
|
|
.btn-primary:hover {
|
2019-08-27 11:33:23 +00:00
|
|
|
background-color: #7859b6;
|
|
|
|
border-color: #7859b6;
|
|
|
|
}
|
2019-08-28 03:53:44 +00:00
|
|
|
|
2019-08-29 01:35:06 +00:00
|
|
|
.btn-secondary {
|
2019-08-28 03:53:44 +00:00
|
|
|
background-color: #999;
|
|
|
|
}
|
2019-08-29 01:35:06 +00:00
|
|
|
.btn-secondary:hover {
|
2019-08-28 03:53:44 +00:00
|
|
|
background-color: #777;
|
|
|
|
}
|
|
|
|
|
2019-08-29 01:35:06 +00:00
|
|
|
.btn-large {
|
2019-08-28 03:53:44 +00:00
|
|
|
font-size: 1.6em;
|
|
|
|
}
|
|
|
|
|
2019-08-29 06:23:56 +00:00
|
|
|
.btn-dangerous {
|
|
|
|
background-color: #e22;
|
|
|
|
}
|
|
|
|
.btn-dangerous:hover {
|
|
|
|
background-color: #c22;
|
|
|
|
}
|
|
|
|
|
2019-08-28 03:53:44 +00:00
|
|
|
a {
|
|
|
|
color: mediumpurple;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
a:visited {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 4em;
|
2019-08-29 01:14:42 +00:00
|
|
|
margin-top: 10px !important;
|
2019-08-28 03:53:44 +00:00
|
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
font-weight: 400;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2019-08-29 01:35:06 +00:00
|
|
|
|
|
|
|
form {
|
|
|
|
display:inline-block;
|
|
|
|
}
|
|
|
|
label.important {
|
|
|
|
font-size: 1.4em;
|
|
|
|
margin: 10px 0;
|
|
|
|
font-weight: 300;
|
|
|
|
display:block;
|
|
|
|
}
|
2019-08-29 13:51:31 +00:00
|
|
|
input, select {
|
2019-08-29 05:08:11 +00:00
|
|
|
font-size: 1.2em;
|
|
|
|
line-height:1.4em;
|
|
|
|
border: 3px grey solid;
|
|
|
|
border-radius: none;
|
|
|
|
padding: 3px;
|
|
|
|
}
|
2019-08-29 13:51:31 +00:00
|
|
|
input:focus, select:focus {
|
2019-08-29 05:08:11 +00:00
|
|
|
border: 3px mediumpurple solid;
|
|
|
|
}
|
2019-08-29 13:51:31 +00:00
|
|
|
|
|
|
|
label, input {
|
|
|
|
flex-basis: 0;
|
|
|
|
}
|
|
|
|
label {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
form .row {
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|