-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlib.css
More file actions
50 lines (44 loc) · 700 Bytes
/
lib.css
File metadata and controls
50 lines (44 loc) · 700 Bytes
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
*,
*::after,
*::before{
margin: 0;
padding: 0;
box-sizing: border-box;
}
main{
height: 100vh;
position: relative;
overflow: hidden;
}
.container{
display: flex;
transition: all 700ms;
}
.container div{
min-width: 100vw;
height: 100vh;
}
img{
width: 100%;
height: 100vh;
object-fit: cover;
}
.navigation{
position: absolute;
bottom: 20px;
display: flex;
gap: 10px;
width: 100%;
justify-content: center;
}
.navigation div{
width: 100px;
padding: 10px;
border-radius: 10px;
background: rgba(0, 0, 0, 0.7);
cursor: pointer;
}
.navigation div.active{
background: white;
transition: all 700ms;
}