-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.css
107 lines (88 loc) · 1.83 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
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
body {
font-family: Arial, Helvetica, sans-serif;
/* Dracula theme (https://github.com/dracula/dracula-theme) */
--background: #282a36;
--highlight: #44475a;
--foreground: #f8f8f2;
--comment: #6272a4;
--cyan: #8be9fd;
--green: #50fa7b;
--orange: #ffb86c;
--pink: #ff79c6;
--purple: #bd93f9;
--red: #ff5555;
--yellow: #f1fa8c;
background: var(--background);
color: var(--foreground);
/* display: flex;
justify-content: center;
align-items: center; */
}
#svgImage {
width: 75vmin;
height: 75vmin;
display: block;
margin-left: auto;
margin-right: auto;
}
#uploader {
display: none;
}
#uploadWrapper {
position: fixed; /* Sit on top of the page content */
width: 100%; /* Full width (cover the whole page) */
height: 100%; /* Full height (cover the whole page) */
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1; /* Specify a stack order in case you're using a different order for other elements */
cursor: pointer; /* Add a pointer on hover */
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background: var(--background);
color: var(--comment);
font-size: 1.5em;
transition: visibility 0s, opacity 0.3s linear;
user-select: none;
}
#uploadWrapper strong{
color: var(--foreground);
font-size: 1.2em;
}
#uploadWrapper img {
width: 30%;
}
#footer {
position: absolute;
width: 100%;
left: 0px;
bottom: 0px;
text-align: center;
z-index: 2;
padding-bottom: 5px;
}
#downloadButton {
border: 5px solid var(--highlight);
border-radius: 10px;
background: none;
color: var(--foreground);
font-size: 2em;
margin: 0 auto;
margin-top: 1em;
font-weight: bold;
}
#refresh {
width: 7vmin;
position: absolute;
right: 1vmin;
top: 1vmin;
}
a {
color: var(--cyan);
}
a:visited {
color: var(--purple);
}