-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
executable file
·98 lines (98 loc) · 1.18 KB
/
Copy pathapp.css
File metadata and controls
executable file
·98 lines (98 loc) · 1.18 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
* {
margin: 0;
padding: 0;
}
.mb0 {
margin-bottom: 0px;
}
.mb5 {
margin-bottom: 5px;
}
.mb10 {
margin-bottom: 10px;
}
.mb15 {
margin-bottom: 15px;
}
.mb20 {
margin-bottom: 20px;
}
.mb25 {
margin-bottom: 25px;
}
.mb30 {
margin-bottom: 30px;
}
.mb35 {
margin-bottom: 35px;
}
.mb40 {
margin-bottom: 40px;
}
.mb45 {
margin-bottom: 45px;
}
.mb50 {
margin-bottom: 50px;
}
body {
padding: 0;
font-size: 14px;
word-wrap: break-word;
}
.container {
padding: 20px;
}
.main-title {
margin-bottom: 20px;
padding: 10px;
background: #ccc;
font-size: 20px;
}
.play-list-item {
margin-bottom: 20px;
padding: 20px;
border: solid 1px #ccc;
}
.playground-header {
margin-bottom: 20px;
}
.step-header {
margin-bottom: 5px;
}
.step-num {
font-weight: normal;
}
.step-num:hover {
cursor: pointer;
}
.play-code {
display: none;
}
.is-open {
display: block;
animation: show 1s linear 0s;
}
.env {
padding: 10px;
border: solid 1px #ccc;
}
.env-title {
margin-bottom: 5px;
font-size: 16px;
}
.information {
margin-top: 10px;
}
.play-title {
font-size: 16px;
margin-bottom: 10px;
}
@keyframes show {
from {
opacity: 0;
}
to {
opacity: 1;
}
}