forked from link277/chromedeveditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspark_polymer.css
More file actions
executable file
·53 lines (47 loc) · 994 Bytes
/
Copy pathspark_polymer.css
File metadata and controls
executable file
·53 lines (47 loc) · 994 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
48
49
50
51
52
53
/* Copyright (c) 2013, Google Inc. Please see the AUTHORS file for details. */
/* All rights reserved. Use of this source code is governed by a BSD-style */
/* license that can be found in the LICENSE file. */
@import url("spark_common.css");
body {
bottom: 0;
display: flex;
flex-flow: column;
left: 0;
margin: 0;
padding: 0;
overflow: hidden;
position: absolute;
right: 0;
top: 0;
}
#topUi {
height: 100%;
width: 100%;
opacity: 1;
transition: opacity 300ms;
}
#splashScreen {
background: #fff;
background-image: url("images/icon_256.png");
background-position: center;
background-repeat: no-repeat;
opacity: 1;
transition: opacity 300ms;
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: 1000;
}
#splashScreenProgress {
background-image: url("images/progress.gif");
height: 48px;
left: calc(50% - 24px);
position: absolute;
top: calc(50% + 150px);
width: 48px;
}
#splashScreen.closeSplash {
opacity: 0;
}