forked from JedWatson/react-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
75 lines (74 loc) · 1.2 KB
/
index.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
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono|Roboto:400,500,700');
body {
-moz-font-feature-settings: 'liga' on;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
color: #253858;
font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Helvetica Neue',
Helvetica, sans-serif;
font-style: normal;
font-weight: 400;
margin: 0;
padding: 0;
text-rendering: optimizeLegibility;
}
p > a,
p > a:hover,
p > a:visited {
color: #2684ff;
}
code {
font-family: Roboto Mono, Monaco, monospace;
}
p > code {
white-space: nowrap;
}
p,
ul,
ol {
line-height: 1.5;
}
td p {
margin: 0;
}
h1,
h2,
h3,
h4,
h5 {
color: #091e42;
}
h6 {
color: #777;
margin-bottom: 0.25em;
text-transform: uppercase;
}
@keyframes dropIn {
from,
60%,
75%,
90%,
to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
transform: translate3d(0, -1666px, 0);
}
60% {
opacity: 1;
transform: translate3d(0, 26px, 0);
}
75% {
transform: translate3d(0, -10px, 0);
}
90% {
transform: translate3d(0, 6px, 0);
}
to {
transform: translate3d(0, 0, 0);
}
}
.animate-dropin {
animation: dropIn 0.66s;
}