-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
54 lines (47 loc) · 822 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
list-style: none;
}
section{
position: relative;
width: 100%;
height: 100vh;
}
section video{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
section .navigation{
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
z-index: 100;
display: flex;
justify-content: center;
align-items: center;
}
section .navigation ul{
cursor: pointer;
margin: 0 10px;
border-radius: 4px;
background: #fff;
padding: 20x 3px 0;
opacity: 0.5s;
}
section .navigation li:hover{
opacity: 1;
}
section .navigation ul img{
width: 200px;
transition: 0.5s;
}
section .navigation ul img:hover{
width: 200px;
}