-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (53 loc) · 818 Bytes
/
style.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
body {
background-color: #f3f5f7;
border-top: 3px solid #42bde8;
margin: 0;
box-sizing: border-box;
}
.wrapper {
max-width: 700px;
margin: 7.5% auto 0;
padding: 0 5%;
}
h3 {
color: #333;
}
ol {
font-size: 1.125em;
color: #333;
}
.quick-tip {
margin-top: 20%;
}
.quick-tip p {
display: none;
animation: fadein 1000ms forwards;
}
.show {
border: 1px solid #42bde8;
background-color: rgba(66, 189, 232, 0.05);
color: #42bde8;
padding: 2.5%;
border-radius: 3px;
animation: fadeout 300ms forwards;
}
@keyframes fadein {
from {
opacity: 0;
transform: translateY(25px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeout {
from {
opacity: 1;
transform: translateY(0);
}
to {
opacity: 0;
transform: translateY(25px);
}
}