fiatlux/firmware/webdir/css/style.css

55 lines
765 B
CSS
Raw Normal View History

2021-07-18 23:25:27 +00:00
main {
padding: 4em 2em 2em 2em;
max-width: 960px;
width: 100%;
margin-left: auto;
margin-right: auto;
}
2021-09-09 00:35:15 +00:00
canvas {
2021-07-18 23:25:27 +00:00
width: 100%;
}
2021-09-09 00:35:15 +00:00
main section:target ~ section, main section#io, main section#wifi, main section#ota {
2021-08-03 00:02:48 +00:00
display: none;
2021-07-18 23:25:27 +00:00
}
2021-09-09 00:35:15 +00:00
main section:target {
2021-08-03 00:02:48 +00:00
display: block !important;
2021-07-18 23:25:27 +00:00
}
.table {
width: 100%;
display: table;
}
2021-09-09 00:35:15 +00:00
.table > .row {
2021-07-18 23:25:27 +00:00
display: table-row;
}
2021-09-09 00:35:15 +00:00
.table > .row:nth-child(2n) {
background: rgba(17, 17, 17, 0.05);
2021-07-18 23:25:27 +00:00
}
2021-09-09 00:35:15 +00:00
.table > .row > * {
display: table-cell;
padding: .3em .6em .3em .6em;
2021-07-18 23:25:27 +00:00
}
2021-09-09 00:35:15 +00:00
.table > header.row > * {
2021-07-18 23:25:27 +00:00
text-align: left;
font-weight: 900;
color: #fff;
background-color: #0074d9;
}
2021-09-09 00:35:15 +00:00
.table > .row > input {
2021-07-18 23:25:27 +00:00
border: none;
background: none;
font-weight: 900;
}
2021-09-09 00:35:15 +00:00
.plain {
2021-07-18 23:25:27 +00:00
opacity: initial;
width: initial;
}