-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.css
81 lines (65 loc) · 886 Bytes
/
demo.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
html,
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
}
body {
padding: 20px 10vw;
}
h1 {
font-size: 50px;
margin-bottom: 100px;
}
h2 {
font-size: 30px;
margin: 30px 0 15px;
}
h4 {
font-size: 18px;
margin: 0 0 10px;
}
a {
color: #000;
}
#obj {
width: 100px;
height: 100px;
background-color: #000;
margin-bottom: 100px;
}
.demo-playground form {
position: relative;
z-index: 10;
display: flex;
}
.demo-playground form > * + * {
margin-left: 30px;
}
#grad {
width: 100%;
height: 200px;
margin-right: 10px;
}
.demos {
display: flex;
}
.demo {
flex: 1;
}
.cols {
display: flex;
}
@media screen and (max-width: 800px) {
.demos {
display: block;
}
h1 {
margin-bottom: 50px;
}
.demo-playground form {
display: block;
}
.demo-playground form > * + * {
margin-left: 0;
display: none;
}
}