forked from pwalczyszyn/scroll2play
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
60 lines (58 loc) · 1.83 KB
/
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
58
59
60
html {
height: 100%;
background-color:transparent;
}
body {
position: relative;
margin:0;
background-color:#323c46;
color:#FFFFFF;
font-family: fredericka-the-great, sans-serif;
}
a {
text-decoration:none;
color:#72D5A1;
}
.loader {
display:none;
}
body.loading .loader {
display: block;
}
.s2p-container {
opacity:1;
-webkit-transition: opacity 2s ease-in-out;
-moz-transition: opacity 2s ease-in-out;
-ms-transition: opacity 2s ease-in-out;
-o-transition: opacity 2s ease-in-out;
transition: opacity 2s ease-in-out;
}
body.loading .s2p-container {
opacity:0;
}
body.loading .page {
display:block;
}
.loader, .page {
position:relative;
width:100vw;
height:100vh;
line-height:100vh;
text-align:center;
font-size:8vw;
}
.page.first, .page.last {
background-color:#323c46;
}
.viewport-units-support {
display: none;
}
.no-cssvhunit .viewport-units-support {
display: block;
background-color:rgb(255, 224, 0);
height: 50px;
line-height: 50px;
text-align: center;
color: #FF0000;
font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
}