FediBooks/static/style.css

181 lines
2.4 KiB
CSS
Raw Normal View History

body {
font-family: "Roboto", sans-serif;
2019-08-30 03:56:28 +00:00
margin: 2%;
background-color: #282c37;
color: white;
2019-08-29 05:08:11 +00:00
}
* {
box-sizing: border-box;
}
.container {
background-color: #444a5c;
padding:10px;
}
.light {
2019-08-29 01:14:42 +00:00
background-color: #4d5366;
}
.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;
}
.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-08-31 13:57:38 +00:00
.panel-icon {
2019-09-01 04:52:39 +00:00
width: 100px;
height: 100px;
2019-09-02 07:38:29 +00:00
background: center/contain url("/img/bot_generic.png");
}
.panel-icon.large {
width: 150px;
height: 150px;
}
2019-09-01 04:52:39 +00:00
.panel-icon.online, .panel-icon.offline {
width: 105px;
}
.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 {
display: inline-block;
align-self: center;
}
2019-08-31 13:57:38 +00:00
.panel-text {
flex-grow: 1;
margin: 0 0 10px 10px;
}
2019-08-31 13:57:38 +00:00
.panel-name {
font-size: 1.8em;
margin: 10px 0;
}
2019-08-31 13:57:38 +00:00
.panel-actions {
margin-right: 10px;
}
2019-08-29 01:35:06 +00:00
.button {
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-29 01:35:06 +00:00
.button:visited {
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-29 01:35:06 +00:00
.btn-primary {
background-color: #9370db;
border-color: #9370db;
}
2019-08-29 01:35:06 +00:00
.btn-primary:hover {
background-color: #7859b6;
border-color: #7859b6;
}
2019-08-29 01:35:06 +00:00
.btn-secondary {
background-color: #999;
}
2019-08-29 01:35:06 +00:00
.btn-secondary:hover {
background-color: #777;
}
2019-08-29 01:35:06 +00:00
.btn-large {
font-size: 1.6em;
}
.btn-dangerous {
background-color: #e22;
}
.btn-dangerous:hover {
background-color: #c22;
}
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;
}
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;
}
.coming-soon {
height: 200px;
width: 200px;
background: center/contain url("https://lynnesbian.space/img/bune.png");
display: inline-block;
}