81 lines
1.3 KiB
CSS
81 lines
1.3 KiB
CSS
html {
|
|
font-family: Helvetica, sans-serif;
|
|
}
|
|
h1 {
|
|
margin: 0;
|
|
}
|
|
nav > ul {
|
|
padding-left: 0;
|
|
}
|
|
nav > ul > li {
|
|
display: inline-block;
|
|
list-style: none;
|
|
}
|
|
nav > ul > li + li:before {
|
|
content: ' · ';
|
|
}
|
|
.current-page > a {
|
|
position: relative;
|
|
}
|
|
.current-page > a:after {
|
|
content: '↓';
|
|
font-size: 0.8em;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
display: block;
|
|
right: 50%;
|
|
top: -1em;
|
|
width: 1em;
|
|
text-align: center;
|
|
margin-right: -0.5em;
|
|
animation: wiggle 0.8s ease-in-out 0s infinite;
|
|
/* animation-direction: alternate; */
|
|
}
|
|
.--align-left {
|
|
text-align: left;
|
|
}
|
|
.--align-right {
|
|
text-align: right;
|
|
}
|
|
.--centered {
|
|
text-align: center;
|
|
}
|
|
@keyframes wiggle {
|
|
0%, 100% { margin-top: 0; }
|
|
50% { margin-top: -0.5em; }
|
|
/* 100% { transform: rotate(1turn); } */
|
|
}
|
|
table {
|
|
border-spacing: .5em 0;
|
|
}
|
|
th {
|
|
font-size: .8em;
|
|
}
|
|
@media print {
|
|
body {
|
|
font-size: 8px;
|
|
}
|
|
}
|
|
.form-input > label {
|
|
font-size: .8em;
|
|
}
|
|
.form-input > input:not([type=radio]),
|
|
.form-input > select {
|
|
display: block;
|
|
}
|
|
.form-input.--inline {
|
|
display: inline-block;
|
|
}
|
|
.form-input.--inline > input:not([type=radio]),
|
|
.form-input.--inline > select {
|
|
display: block;
|
|
width: 8em;
|
|
}
|
|
details {
|
|
font-size: 0.8em;
|
|
}
|
|
.consumption-graph {
|
|
display: block;
|
|
height: 1em;
|
|
}
|