-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
62 lines (54 loc) · 1.83 KB
/
index.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
61
62
html {
overflow: hidden;
}
html body {
font-family: BenchNine;
}
html body h1 {
font-family: Cinzel Decorative;
}
main {
background-image: url("public/images/inkblot-1-min.png");
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
.fade-0 {
/* Start with 0 opacity; fade in */
opacity: 0;
-webkit-transition: opacity 1.5s ease-out 0.5s; /* Safari, Chrome and Opera > 12.1 */
-moz-transition: opacity 1.5s ease-out 0.5s; /* Firefox < 16 */
-ms-transition: opacity 1.5s ease-out 0.5s; /* Internet Explorer */
-o-transition: opacity 1.5s ease-out 0.5s; /* Opera < 12.1 */
transition: opacity 1.5s ease-out 0.5s;
}
.fade-1 {
/* Start with 0 opacity; fade in */
opacity: 0;
-webkit-transition: opacity 1.5s ease-out 1.5s; /* Safari, Chrome and Opera > 12.1 */
-moz-transition: opacity 1.5s ease-out 1.5s; /* Firefox < 16 */
-ms-transition: opacity 1.5s ease-out 1.5s; /* Internet Explorer */
-o-transition: opacity 1.5s ease-out 1.5s; /* Opera < 12.1 */
transition: opacity 1.5s ease-out 1.5s;
}
.fade-2 {
/* Start with 0 opacity; fade in */
opacity: 0;
-webkit-transition: opacity 1.5s ease-out 2.5s; /* Safari, Chrome and Opera > 12.1 */
-moz-transition: opacity 1.5s ease-out 2.5s; /* Firefox < 16 */
-ms-transition: opacity 1.5s ease-out 2.5s; /* Internet Explorer */
-o-transition: opacity 1.5s ease-out 2.5s; /* Opera < 12.1 */
transition: opacity 1.5s ease-out 2.5s;
}
.fade-3 {
/* Start with 0 opacity; fade in */
opacity: 0;
-webkit-transition: opacity 1s ease-out 3.5s; /* Safari, Chrome and Opera > 12.1 */
-moz-transition: opacity 1s ease-out 3.5s; /* Firefox < 16 */
-ms-transition: opacity 1s ease-out 3.5s; /* Internet Explorer */
-o-transition: opacity 1s ease-out 3.5s; /* Opera < 12.1 */
transition: opacity 1s ease-out 3.5s;
}
.load {
opacity: 1;
}