-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
57 lines (56 loc) · 1.08 KB
/
Copy pathmain.css
File metadata and controls
57 lines (56 loc) · 1.08 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
body {
background: url(bg.jpg) no-repeat;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
margin: 0px;
}
.skyva {
width: 100%;
height:100%;
}
.skyva-element {
/*border-radius: 50px;
background: red;*/
top:0;
transform: translate(-50%, -50%);
left:0;
width: 200px;
height: 200px;
-webkit-transition: -webkit-transform 1s;
transition: transform 1s;
}
#skyva-moon, #skyva-sun {
position: absolute;
}
#skyva-moon {
background: url(moon1.png) no-repeat;
background-size: contain;
}
#skyva-sun {
background: url(sun1.png) no-repeat;
background-size: contain;
}
#skyva-cloud {
background: url(cloud1.png) no-repeat;
background-size: contain;
}
.skyva-container {
/* width: 100%;*/
height: 200%;
position: fixed;
top: 0;
left: 50%;
margin:100px 0px;
z-index: -99999;
}
#skyva-light-container {
width: 100%;
height: 100%;
/* position: fixed; */
top: 0;
left: 0;
opacity: 0;
z-index: -999;
background-color: #0f1165;
}