blob: 44d8930b6a07a3d1dc107d01e2a1424409aa5196 [file] [log] [blame]
Akron2f979122018-07-25 17:00:23 +02001@charset "utf-8";
2@import "../util";
3
4/*
5div.view.vcstatistic {
6 position: relative;
7 display: inline-flex;
8 width: auto;
9}
10*/
11
12div.stattable {
13 display: flex;
14 flex-direction: row;
15}
16/*
17div.stattable ul.action.image {
18 display: block;
19 li {
20 cursor: pointer;
21 color: $nearly-white;
22 text-decoration: none;
23 > span {
24 @include blind;
25 }
26 border-width: 0;
27 // z-index: 8;
28 text-decoration:none;
29 text-align: center;
30 font-style: normal;
31
32 &.close::after {
33 font-family: 'FontAwesome';
34 content: $fa-close;
35 }
36 }
37}
38*/
39
40div.stattable > dl {
41 display: flex;
42 flex-flow: row wrap;
43 //margin-top: 4 * $border-size !important;
44 margin-top:4px;
45 margin-bottom:4px;
46 padding-bottom: 1px;
47 > div {
48 /*
49 display: flex;
50 margin-right: 5px;
51 margin-left: 5px;
52 > * {
53 @include cell-info;
54 }
55 */
56 border-color: $dark-green;
57 > dt {
58 background-color: $middle-green;
59 /*
60 text-align: right;
61 // padding: 1px;
62 */
63 width: 15em;
64 margin: 0;
65 &:after {
66 content: ":";
67 }
68 }
69 > dd {
70 /*
71 text-align: left;
72 // padding: 1px;
73 margin: 0;
74 width: 100%;
75 max-width: none;
76 max-height: 6em;
77 margin-left: $border-size;
78 */
79 background-color: $lightest-green;
80 color: $dark-grey;
81 }
82 }
83}