forked from nathanbirrell/overcast-macos
-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
57 lines (53 loc) · 812 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
html,
body {
width: 100%; height: 100%; margin: 0;
background: #fff;
display: flex;
align-items: center;
}
@media (max-width: 420px) {
body {
padding-top: 62px;
}
}
.loader {
background-image: url("loader.svg");
background-size: contain;
display: none;
height: 48px;
width: 48px;
position: absolute;
left: 47%;
margin: 0 auto;
}
.loader.is-loading {
display: block;
animation: loader infinite 0.5s;
}
@keyframes loader {
0% {
transform: scale(1);
}
50% {
transform: scale(.90);
}
100% {
transform: scale(1);
}
}
webview {
width: 100%;
height: 100%;
z-index: 1;
}
.title-bar {
-webkit-app-region: drag;
position: absolute;
display: block;
height: 34px;
width: 100%;
top: 0;
z-index: 999999;
background: #fff;
opacity: 0.8;
}