-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
113 lines (112 loc) · 2.17 KB
/
styles.css
File metadata and controls
113 lines (112 loc) · 2.17 KB
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
108
109
110
111
112
113
#app-ui {
all: initial;
position: fixed;
width: 100vw;
height: 100vh;
z-index: 1000;
top: 0;
left: 0;
display: flex;
align-items: flex-end;
justify-content: center;
padding: 5em 0;
box-sizing: border-box;
font-family: "Segoe UI", sans-serif;
pointer-events: none;
}
#app-ui * {
all: revert;
font-family: "Segoe UI", sans-serif;
pointer-events: inherit;
}
#app-ui .loadScreen {
top: 0;
left: 0;
position: absolute;
z-index: 1;
background: #f0f0f0;
width: 100vw;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
pointer-events: none;
opacity: 1;
transition: 2s opacity;
flex-direction: column;
}
#app-ui .loadScreen.fade {
opacity: 0;
}
#app-ui .loadScreen img {
max-width: max(10vh, 10vw);
max-height: max(10vh, 10vw);
width: min(50vw, 50vh);
height: min(50vw, 50vh);
}
#app-ui .loadScreen img:not([src]) {
opacity: 0;
}
#app-ui .loadScreen h1 {
display: none;
}
#app-ui .loadScreen progress {
height: 12px;
border-radius: 999px;
overflow: hidden;
border: 1px solid #999;
padding: 2px;
position: fixed;
bottom: 20vh;
width: 30vw;
min-width: 250px;
}
#app-ui .loadScreen progress:not([max]) {
opacity: 0;
}
#app-ui .loadScreen progress::-webkit-progress-bar {
background-color: #f0f0f0;
}
#app-ui .loadScreen progress::-webkit-progress-value {
background-color: #000;
border-radius: 999px;
}
#app-ui .window {
border-radius: 8px;
padding: 1em;
background: #fff;
width: calc(100vw - 64px);
max-width: 500px;
box-shadow: 0 6px 15px -2px rgba(0, 0, 0, 0.6);
z-index: 2;
pointer-events: auto;
overflow: hidden;
}
#app-ui .updateRequest h3 {
margin: 0;
}
#app-ui .updateRequest p {
max-height: 50vh;
overflow-y: auto;
overflow-wrap: anywhere;
}
#app-ui .updateRequest .versions {
font-size: 12px;
}
#app-ui .updateRequest button {
font-size: 18px;
text-transform: uppercase;
border: 1px solid #efefef;
background: #efefef;
border-radius: 8px;
width: 200px;
margin: 0.25em 1em;
padding: 0.5em;
transition: 0.2s;
cursor: pointer;
}
#app-ui .updateRequest button:hover {
border-color: #aaa;
}
/*# sourceMappingURL=styles.css.map */