blob: a4d3f1e315657b1fafc7e4f6019b91aa7132ad0d [file] [log] [blame]
Akron2f979122018-07-25 17:00:23 +02001@charset "utf-8";
2@import "../util";
3
Akron2f979122018-07-25 17:00:23 +02004div.stattable {
5 display: flex;
6 flex-direction: row;
7}
Akron2f979122018-07-25 17:00:23 +02008
9div.stattable > dl {
10 display: flex;
11 flex-flow: row wrap;
12 //margin-top: 4 * $border-size !important;
13 margin-top:4px;
14 margin-bottom:4px;
15 padding-bottom: 1px;
16 > div {
Akron2f979122018-07-25 17:00:23 +020017 border-color: $dark-green;
18 > dt {
19 background-color: $middle-green;
Akron2f979122018-07-25 17:00:23 +020020 width: 15em;
21 margin: 0;
22 &:after {
23 content: ":";
24 }
25 }
26 > dd {
Akron2f979122018-07-25 17:00:23 +020027 background-color: $lightest-green;
28 color: $dark-grey;
29 }
30 }
31}