forked from beeware/briefcase-web-static-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbriefcase.css
More file actions
47 lines (44 loc) · 958 Bytes
/
Copy pathbriefcase.css
File metadata and controls
47 lines (44 loc) · 958 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
/* Splash screen */
div#briefcase-splash {
background-color:#999;
position:fixed;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width:100%;
height:100%;
top:0px;
left:0px;
z-index:1000;
}
div#briefcase-splash p {
text-align: center;
color: white;
font-size: large;
font-family: sans-serif;
}
div#briefcase-splash.hidden {
visibility: hidden;
opacity: 0;
transition: visibility 0s 0.2s, opacity 0.2s linear;
}
div#briefcase-splash img {
animation: throbber 1.5s infinite;
}
@keyframes throbber {
0% {
transform: scale(1.2);
}
70% {
transform: scale(1.0);
}
100% {
transform: scale(1.2);
}
}
/************************* Toolkit styles *************************/
/* WARNING: Do not modify content between the @@ CSS:start @@ and
@@ CSS:end @@ markers. */
/*@@ CSS:start @@*/
/*@@ CSS:end @@*/