-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
99 lines (97 loc) · 1.53 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
html, body {
/* margin: 0; */
/*background-color: #1d1e22;*/
font-family: 'Helvetica', sans-serif;
}
nav {
opacity:0;
animation: 1.25s ease 3s 1 fadeIn;
animation-fill-mode: forwards;
user-select: none;
}
h1 {
margin-top: 10vh;
color: #fff;
/* font-size: 1.6em; */
text-align: center;
opacity:0;
animation: 1.25s ease 3s 1 fadeIn;
animation-fill-mode: forwards;
user-select: none;
}
h3 {
margin: 30px 0px 40px;
color: #fff;
/* font-size: 1.6em; */
text-align: center;
opacity:0;
animation: 1.25s ease 1.33s 1 fadeIn;
animation-fill-mode: forwards;
user-select: none;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
opacity:0;
user-select: none;
}
li {
display: inline;
padding: 10px;
}
.logo-img{
height: 30vh;
margin-top: 20vh;
position: relative;
animation: 1.25s ease 0.25s 1 fadeIn;
animation-fill-mode: forwards;
}
/* unvisited link */
a:link {
color: #ccc;
}
/* visited link */
a:visited {
color: #ccc;
}
/* mouse over link */
a:hover {
color: #ffffff;
}
@keyframes fadeIn {
0% {
opacity:0;
}
100% {
opacity:1;
}
}
@keyframes fadeInVideo {
0% {
opacity:0;
}
100% {
opacity:0.5;
}
}
#videoDiv {
z-index: -5;
background-color: #1d1e22;
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
}
#myVideo {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
opacity: 0;
z-index: -100;
animation: 3s ease 2.5s 1 fadeInVideo;
animation-fill-mode: forwards;
}