main
css 49 lines 781 Bytes
Raw
1 .LayoutViewer {
2 padding: 0.25rem;
3 font-family: var(--font-family-monospace);
4 font-size: var(--font-size-monospace-small);
5 }
6
7 .Header {
8 font-family: var(--font-family-sans);
9 }
10
11 .DashedBox,
12 .SolidBox {
13 flex: 1 1 auto;
14 display: flex;
15 flex-direction: column;
16 align-items: center;
17 border-width: 1px;
18 border-color: var(--color-dim);
19 padding: 0.25rem;
20 margin: 0.25rem;
21 }
22 .DashedBox {
23 border-style: dashed;
24 }
25 .SolidBox {
26 border-style: solid;
27 }
28
29 .LabelRow {
30 width: 100%;
31 position: relative;
32 display: flex;
33 align-items: center;
34 justify-content: center;
35 }
36
37 .Label {
38 position: absolute;
39 left: 0.5rem;
40 flex: 1 0 100px;
41 color: var(--color-attribute-name);
42 }
43
44 .BoxRow {
45 width: 100%;
46 display: flex;
47 flex-direction: row;
48 align-items: center;
49 }