This repository has been archived by the owner on Sep 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
generate.css
116 lines (116 loc) · 2.93 KB
/
generate.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
@import "normalize.css";
*,
*::after,
*::before {
box-sizing: border-box;
}
html {
font-size: 62.5%;
background-color: #fff;
}
html body {
font-size: 1.6rem;
width: 95%;
max-width: 1020px;
margin: 2rem auto;
font-family: 'Inconsolata', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-variant-numeric: lining-nums tabular-nums;
}
html body .wrapper {
display: grid;
grid-template-columns: 1fr;
grid-gap: 1rem;
}
html body .wrapper .details-container {
border: 1px solid #ccc;
border-radius: 2px;
}
html body .wrapper .details-container .details {
display: grid;
grid-template-columns: 0.5fr 1fr;
grid-gap: 1rem;
align-items: center;
border-bottom: 1px solid #ccc;
}
html body .wrapper .details-container .details:last-of-type {
border-bottom: 0px;
}
html body .wrapper .details-container .details .caption {
padding: 1rem;
border-right: 1px solid #ccc;
font-size: 1.4rem;
}
html body .wrapper .details-container .details .value {
padding: 1rem;
font-size: 1.8rem;
font-weight: bold;
}
html body .wrapper .details-container .details .value.controls,
html body .wrapper .details-container .details .value.notes {
font-size: 1.6rem;
font-weight: normal;
}
html body .wrapper .type-out {
border: 1px solid #ccc;
border-radius: 2px;
padding: 1.8rem;
}
html body .wrapper .type-out h2,
html body .wrapper .type-out h3 {
font-family: 'Inconsolata', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
margin: 1.5rem auto;
}
html body .wrapper .type-out h3 {
margin: 1.25rem auto;
}
html body .wrapper .type-out .count ul {
column-count: 2;
list-style: circle;
}
@media only screen and (min-width: 720px) {
html body .wrapper .type-out .count ul {
column-count: 3;
}
}
html body .wrapper .type-out .vals .components {
column-count: 2;
list-style: circle;
}
@media only screen and (min-width: 720px) {
html body .wrapper .type-out .vals .components {
column-count: 3;
}
}
html body .wrapper .type-out .vals .components li .value-outer .namep {
font-size: 1.4rem;
letter-spacing: 0.5px;
font-weight: bold;
vertical-align: middle;
}
html body .wrapper .type-out .vals .electromechanical {
column-count: 2;
}
@media only screen and (min-width: 720px) {
html body .wrapper .type-out .vals .electromechanical {
column-count: 3;
}
}
html body.list-checkboxes .count ul,
html body.list-checkboxes .vals ul {
list-style: none !important;
padding: 0;
}
html body.list-checkboxes .count ul li:before,
html body.list-checkboxes .vals ul li:before {
content: "\2610";
vertical-align: middle;
margin-right: 1rem;
line-height: 0.9em;
}
html body.header-checkboxes .type-out h2:before {
content: "\2610";
font-family: 'Inconsolata';
margin-right: 1rem;
vertical-align: middle;
line-height: 0.85em;
}