-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
52 lines (40 loc) · 728 Bytes
/
index.css
File metadata and controls
52 lines (40 loc) · 728 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
body{
position: relative;
background-color: transparent;
line-height: 1;
font-smoothing: antialiased;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: auto | grayscale
}
#container{
width: 1024px;
height: 640px;
padding: 0px;
margin: 0 auto;
border: solid 1px #000;
position: relative;
}
section{
width: 1024px;
height: 640px;
padding: 0px;
margin: 0px;
position: absolute;
background-color: transparent;
}
#stage_transition {
transition-property: background-color;
transition-duration: 0.5s;
transition-delay: 0s;
transition-timing-function:ease-in;
/* z-index: 90; */
}
.stage_transition_display{
z-index: 98;
}
.none_display{
display: none;
}
.display{
z-index: 80;
}