34 lines
573 B
CSS
34 lines
573 B
CSS
/* STYLE for outdoor lights control -- server
|
|
* copyright: Jannik Beyerstedt | https://jannikbeyerstedt.de
|
|
* license: http://www.gnu.org/licenses/gpl-3.0.txt GPLv3 License
|
|
*/
|
|
|
|
body {
|
|
max-width: 500px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.big{
|
|
font-size: 1.25em;
|
|
}
|
|
table {
|
|
margin-top: 1em;
|
|
margin-bottom: 1em;
|
|
}
|
|
table tr td {
|
|
vertical-align: top;
|
|
}
|
|
table tr>td:first-child {
|
|
padding-right: 0.75em;
|
|
text-align: right;
|
|
}
|
|
|
|
.dark {
|
|
background-color: #292929;
|
|
color: #efefef;
|
|
}
|
|
|
|
form div.form-group > div > input.form-control {
|
|
display: inline-block;
|
|
width: 49%;
|
|
}
|