-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (49 loc) · 830 Bytes
/
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
html {
height: 100vh;
width: 100vw;
margin: 0;
padding: 0;
overflow: hidden;
position: relative;
}
body {
height: 100vh;
width: 100vw;;
margin: 0;
padding: 0;
display: flex;
flex-flow: column wrap;
justify-content: center;
align-items: center;
}
.video-container {
margin: 0 auto;
display: block;
}
video {
width: 100%;
height: auto;
object-fit: cover;
}
#main {
background-color: #1b1b1b;
}
#vid2 {
background-color: #1b1b1b;
}
#vid3 {
background-color: #fd6531;
}
nav ul {
list-style: none;
padding: 0;
background-color: #333;
}
nav ul li {
display: inline;
margin-right: 20px;
}
nav ul li a {
color: white;
text-decoration: none;
}