forked from DanielBerger1995/finalspec-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsplit.css
More file actions
119 lines (96 loc) · 1.39 KB
/
split.css
File metadata and controls
119 lines (96 loc) · 1.39 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: sans-serif;
}
.intro {
height: 150vh;
width: 100%;
}
.intro h1 {
position: absolute;
top: 200px;
left: 400px;
}
.intro video {
width: 50%;
margin-left: 28vw;
margin-top: 100px;
}
.labels span {
position: fixed;
right: 13vw;
top: 580px;
opacity: 0;
}
.active {
animation: visible 3s forwards;
}
@keyframes visible {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.labels span:nth-of-type(2) {
position: fixed;
left: 15vw;
top: 640px;
opacity: 0;
}
.labels span:nth-of-type(3) {
position: fixed;
left: 15vw;
top: 410px;
opacity: 0;
}
.labels span:nth-of-type(4) {
position: fixed;
right: 12vw;
top: 310px;
opacity: 0;
}
.labels span:nth-of-type(5) {
position: fixed;
right: 40vw;
top: 110px;
opacity: 0;
}
section {
height: 100vh;
color: rgb(255, 255, 255);
width: 100%;
background-color: rgb(255, 255, 255);
position: relative;
}
section h1 {
text-align: center;
font-size: 50px;
font-family: 'Futura', sans-serif;
color: rgb(0, 0, 0);
position: absolute;
top: -19vh;
left: 41vw;
}
section img {
margin-top: 13vh;
}
.description {
width: 40vw;
height: 70vh;
position: absolute;
right: 10vw;
top: 13vh;
}
.description p {
color: black;
margin-top: 6vh;
font-size: 20px;
margin-left: 5vw;
opacity: 0;
}