-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (89 loc) · 1.58 KB
/
style.css
File metadata and controls
103 lines (89 loc) · 1.58 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
.slider {
max-width: 1170px;
min-width: 320px;
margin: 0 auto;
box-sizing: border-box;
padding: 0;
position: relative;
}
img {
display: block;
width: 100%;
height: auto;
}
.arrow__block {
display: flex;
justify-content: space-between;
align-items: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: calc(100% - 100px);
}
.prev, .next {
width: 50px;
border-radius: 50%;
height: 50px;
background: rgb(119, 119, 119);
position: relative;
padding: 0;
opacity: 0.7;
z-index: 1;
}
.prev p, .next p {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
margin: 0;
color: #fff;
}
.prev:hover {
opacity: 1 !important;
cursor: pointer;
}
.next:hover {
opacity: 1 !important;
cursor: pointer;
}
.prev:active {
transform: translateX(-2px);
}
.next:active {
transform: translateX(2px);
}
.slider-dots .dot{
width: 15px;
height: 15px;
background: #000;
padding: 0;
margin: 0;
border-radius: 50%;
}
.slider-dots {
display: flex;
width: 60px;
justify-content: space-between;
margin: 20px auto;
}
.dot-active{
background: #f00 !important;
}
.slider-item {
transition: all 1000ms 2s;
}
.op {
animation: opac 1200ms;
}
p::selection {
background: none;
}
@keyframes opac {
from {
transform: perspective(600px) translate(0px, -100%) rotateX(45deg);
}
to{
transform: perspective(600px) translate(0px, 0%) rotateX(0deg);
}
}