-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (58 loc) · 934 Bytes
/
style.css
File metadata and controls
67 lines (58 loc) · 934 Bytes
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
* {
font-family: razer
}
p, label {
color: white;
}
body {
display: flex;
flex-direction: column;
background-color: #708090;
align-items: center;
justify-content: center;
}
@font-face {
font-family: razer;
src: url("razeroblique.ttf");
}
input[type="file"] {
display: none;
}
#import-json-text, button {
border: 1px solid #767676;
display: inline-block;
padding: 1px 5px;
cursor: pointer;
background-color: #efefef;
font-size: 1em;
color: black;
}
#status {
width: 60px;
}
#scroll-to-top {
position: fixed;
bottom: 10px;
right: 13px;
background-color: #efefef;
padding: 1px 5px;
cursor: pointer;
display: none;
border-radius: 25%;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}