55 lines
No EOL
765 B
CSS
55 lines
No EOL
765 B
CSS
main {
|
|
padding: 4em 2em 2em 2em;
|
|
max-width: 960px;
|
|
width: 100%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
canvas {
|
|
width: 100%;
|
|
}
|
|
|
|
main section:target ~ section, main section#io, main section#wifi, main section#ota {
|
|
display: none;
|
|
}
|
|
|
|
main section:target {
|
|
display: block !important;
|
|
}
|
|
|
|
.table {
|
|
width: 100%;
|
|
display: table;
|
|
}
|
|
|
|
.table > .row {
|
|
display: table-row;
|
|
}
|
|
|
|
.table > .row:nth-child(2n) {
|
|
background: rgba(17, 17, 17, 0.05);
|
|
}
|
|
|
|
.table > .row > * {
|
|
display: table-cell;
|
|
padding: .3em .6em .3em .6em;
|
|
}
|
|
|
|
.table > header.row > * {
|
|
text-align: left;
|
|
font-weight: 900;
|
|
color: #fff;
|
|
background-color: #0074d9;
|
|
}
|
|
|
|
.table > .row > input {
|
|
border: none;
|
|
background: none;
|
|
font-weight: 900;
|
|
}
|
|
|
|
.plain {
|
|
opacity: initial;
|
|
width: initial;
|
|
} |