-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
63 lines (54 loc) · 898 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
60
61
62
63
body{
background: #091a50;
display: flex;
align-items: center;
justify-content: center;
transition: all 1s cubic-bezier(.215, .81, .355, 4);
}
.app{
margin-top: 100px;
display: flex;
flex-direction: column;
align-items: center;
gap: 50px;
}
.top{
display: flex;
align-items: center;
gap: 50px;
}
.arrow{
height: 250px;
cursor: pointer;
}
.left{
transform: rotate(180deg);
}
.frame{
width: 900px;
height: 500px;
overflow: hidden;
border: 2px solid black;
box-shadow: 0 5px 20px rgba(0,0,0,.95);
}
.slider{
display: flex;
transition: all 1s ease;
}
.images{
width: 100%;
height: 100%;
object-fit: cover;
}
.bottom{
display: flex;
gap: 30px;
}
.button{
width: 15px;
height: 15px;
border-radius: 50%;
border: 1px solid white;
z-index: 1;
cursor: pointer;
}