-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
52 lines (43 loc) · 755 Bytes
/
app.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
body {
font-family: "Source Sans Pro", sans-serif;
}
main {
width: 100%;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
section {
margin: 2rem 1rem;
}
.file-group {
padding: 1rem;
background: #efefef;
border-radius: 1rem;
}
#image {
max-width: 100%;
width: 400px;
height: auto;
display: block;
margin: auto;
}
.image-section {
display: none;
position: relative;
}
.image-loaded .image-section {
display: block;
}
.loading .loader {
display: block;
}
.loader {
display: none;
}
.loading .image-section,
.loading .file-section {
display: none;
}