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;
|
2019-09-02 10:45:58 +00:00
|
|
|
padding: 10px;
|
2019-08-28 03:53:44 +00:00
|
|
|
}
|
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-09-02 08:18:47 +00:00
|
|
|
.tiny {
|
|
|
|
font-size: 0.5em;
|
|
|
|
}
|
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-09-07 04:01:06 +00:00
|
|
|
.no-margin {
|
|
|
|
margin: 0;
|
|
|
|
}
|
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-09-02 07:38:29 +00:00
|
|
|
background: center/contain url("/img/bot_generic.png");
|
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;
|
2019-09-02 10:45:58 +00:00
|
|
|
line-height: 1.2em;
|
|
|
|
padding: 10px;
|
2019-08-28 03:53:44 +00:00
|
|
|
text-decoration: none;
|
|
|
|
display: inline-block;
|
|
|
|
margin: 5px 0;
|
|
|
|
transition: 0.2s linear;
|
2019-09-02 10:45:58 +00:00
|
|
|
border: none;
|
2019-08-28 03:53:44 +00:00
|
|
|
}
|
2019-08-29 01:35:06 +00:00
|
|
|
.button:visited {
|
2019-09-02 10:45:58 +00:00
|
|
|
color: white;
|
2019-08-28 03:53:44 +00:00
|
|
|
}
|
2019-08-30 03:18:51 +00:00
|
|
|
input.button, button.button {
|
2019-08-29 01:35:06 +00:00
|
|
|
font-size: 1em;
|
2019-09-02 10:45:58 +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-09-06 10:54:29 +00:00
|
|
|
.btn-large, button.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 {
|
2019-09-02 10:43:48 +00:00
|
|
|
color: mediumpurple;
|
2019-08-28 03:53:44 +00:00
|
|
|
}
|
|
|
|
|
2019-09-10 02:22:42 +00:00
|
|
|
p {
|
|
|
|
line-height: 1.4em;
|
|
|
|
}
|
|
|
|
|
2019-08-28 03:53:44 +00:00
|
|
|
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 {
|
2019-09-02 10:45:58 +00:00
|
|
|
display: inline-block;
|
2019-08-29 01:35:06 +00:00
|
|
|
}
|
|
|
|
label.important {
|
|
|
|
font-size: 1.4em;
|
|
|
|
margin: 10px 0;
|
|
|
|
font-weight: 300;
|
2019-09-02 10:45:58 +00:00
|
|
|
display: block;
|
2019-08-29 01:35:06 +00:00
|
|
|
}
|
2019-09-06 10:54:29 +00:00
|
|
|
input, select, textarea {
|
2019-08-29 05:08:11 +00:00
|
|
|
font-size: 1.2em;
|
2019-09-02 10:45:58 +00:00
|
|
|
line-height: 1.4em;
|
2019-08-29 05:08:11 +00:00
|
|
|
border: 3px grey solid;
|
|
|
|
border-radius: none;
|
|
|
|
padding: 3px;
|
2019-09-06 10:54:29 +00:00
|
|
|
font-family: "Roboto", sans-serif;
|
2019-08-29 05:08:11 +00:00
|
|
|
}
|
2019-09-06 10:54:29 +00:00
|
|
|
input:focus, select:focus, textarea: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;
|
|
|
|
}
|
2019-09-02 07:20:28 +00:00
|
|
|
|
|
|
|
.coming-soon {
|
|
|
|
height: 200px;
|
|
|
|
width: 200px;
|
|
|
|
background: center/contain url("https://lynnesbian.space/img/bune.png");
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2019-09-03 03:22:00 +00:00
|
|
|
|
2019-09-09 12:08:43 +00:00
|
|
|
.error, .success {
|
2019-09-03 03:22:00 +00:00
|
|
|
color: white;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 1.6em;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
2019-09-09 12:08:43 +00:00
|
|
|
.error {
|
|
|
|
background-color: #e66;
|
|
|
|
}
|
|
|
|
.error.err-small {
|
|
|
|
font-size: 1.0em;
|
|
|
|
}
|
|
|
|
.success {
|
|
|
|
background-color: #6e6;
|
|
|
|
}
|