-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.css
More file actions
54 lines (43 loc) · 717 Bytes
/
Copy pathdemo.css
File metadata and controls
54 lines (43 loc) · 717 Bytes
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
/*
Edit these variables for color and spacing.
By default padding and margin will use the same values.
*/
:root {
--primary-color: #BDBDBD;
--secondary-color: #E0E0E0;
--accent-color: #448AFF;
--padding: 16px;
--margin: var(--padding);
}
.container,
.container-big,
.container-small{
}
#demo {
margin: var(--margin);
padding: var(--padding);
}
.a {
background: var(--primary-color);
}
.b {
background: var(--secondary-color);
}
.unequal .u:nth-of-type(1) {
width: 20%;
}
.fixed .u:nth-of-type(1) {
min-width: 200px;
}
.column{
padding: var(--padding);
}
blockquote {
border-color: var(--primary-color);
}
.layoutDemo > .row{
height: 200px;
}
.buttonDemo{
justify-content: space-between;
}