-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_structure.css
More file actions
109 lines (93 loc) · 1.35 KB
/
_structure.css
File metadata and controls
109 lines (93 loc) · 1.35 KB
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
/* Styles for structure of the example ONLY */
body {
padding: 2em;
margin: 0;
background: #eee;
font-family: sans-serif;
}
h1 {
margin: 0 0 .5em;
}
h2 {
margin: .5em 0 1em;
}
h4 {
margin: 2em 0 .5em;
}
p {
margin: 0 0 1em;
line-height: 1.4;
}
code {
display: inline-flex;
padding: .25em;
background: rgba(0,0,0,.075);
font-size: 1rem;
line-height: 1.2;
}
pre code {
max-width: 100%;
white-space: pre;
padding: .75em;
overflow: auto;
}
label {
display: inline-flex;
align-items: center;
font-size: 1rem;
padding: .5rem;
margin: 0 0 1rem;
user-select: none;
background-color: rgba(0,0,0,.1);
border-radius: .3rem;
}
input[type="checkbox"] {
width: 1rem;
height: 1rem;
margin: 0 .5rem 0 0;
}
.group {
display: flex;
flex-wrap: wrap;
}
.example,
.form {
width: 200px;
}
.example {
margin: 0 2em 2em 0;
}
.example p {
margin: 1em 0 0;
}
.form {
height: 200px;
background: #fff;
}
.tip {
width: fit-content;
padding: .75em;
margin: 0 0 1.5em;
background: #fde68a;
line-height: 1.3;
}
.tag {
display: block;
width: fit-content;
padding: .25em .6em;
margin-top: .5em;
border-radius: 1em;
font-size: .875em;
background: #bae6fd;
}
.tag.forced {
background: #ddd6fe;
}
/* Utilities */
.hidden,
[hidden] {
display: none !important;
}
.upper {
text-transform: uppercase;
}