-
Notifications
You must be signed in to change notification settings - Fork 16
/
style.css
70 lines (59 loc) · 957 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
body {
max-width: 800px;
margin: 0 auto 0 auto;
}
#icon-preview {
height: calc(2.25rem + 2px);
width: calc(2.25rem + 2px);
object-fit: contain;
}
mark {
background-color: #fff9d8ee;
}
/* advanced options are initially hidden */
.adv-hidden {
display: none;
}
#post-checkbox {
margin-bottom: .5rem;
}
input[type=file] {
display: none;
}
label[for=input-file-icon] {
width: 100%;
-moz-appearance: button;
}
#instructions {
display: none;
}
#arrow {
position: fixed;
top: 40px;
left: 50%;
margin-left:-20px;
width: 40px;
height: 40px;
background-image: url(icons/arrow.svg);
background-size: contain;
animation: bounce 2s infinite;
}
#info {
margin: auto;
padding-top: 100px;
width: 800px;
}
#info p {
margin-top: 0.5em;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0);
}
40% {
transform: translateY(-30px);
}
60% {
transform: translateY(-15px);
}
}