-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathapp.css
More file actions
114 lines (94 loc) · 1.68 KB
/
app.css
File metadata and controls
114 lines (94 loc) · 1.68 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
110
111
112
113
// CSS for DEMO page
*, *::before, *::after {
box-sizing: border-box;
}
html, body {
font-family: sans-serif;
font-size: 16px;
background-color: #f7f7f7;
padding-bottom: 100px;
margin: 0;
}
body {
padding: 15px 15px 100px 15px;
}
button {
padding: 8px 25px;
font-size: 16px;
background: none;
border: 3px solid;
cursor: pointer;
border-radius: 6px;
}
button:focus {
outline: none;
}
#root {
max-width: 750px;
margin: auto;
}
.demo-container {
padding: 30px 0;
}
.demo-container h1 {
text-align: center;
}
.demo-container + .demo-container {
border-top: 1px dashed #b7b7b7;
}
.demo {
display: flex;
justify-content: space-around;
align-items: center;
}
@media(max-device-width: 737px) {
.demo {
flex-direction: column;
}
}
.demo pre {
max-width: 100%;
overflow: hidden;
}
.hljs {
padding: 20px;
border: 1px solid #ededed;
background: #fff;
}
.spinner {
display: inline-block;
width: 17px;
height: 17px;
position: relative;
vertical-align: bottom;
margin-right: 5px;
}
.double-bounce1, .double-bounce2 {
width: 100%;
height: 100%;
border-radius: 50%;
background-color: #999;
opacity: 0.6;
position: absolute;
top: 0;
left: 0;
-webkit-animation: sk-bounce 1.0s infinite ease-in-out;
animation: sk-bounce 1.0s infinite ease-in-out;
}
.double-bounce2 {
-webkit-animation-delay: -0.5s;
animation-delay: -0.5s;
}
@-webkit-keyframes sk-bounce {
0%, 100% { -webkit-transform: scale(0.0); }
50% { -webkit-transform: scale(1.0); }
}
@keyframes sk-bounce {
0%, 100% {
transform: scale(0.0);
-webkit-transform: scale(0.0);
} 50% {
transform: scale(1.0);
-webkit-transform: scale(1.0);
}
}