-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
61 lines (48 loc) · 803 Bytes
/
styles.css
File metadata and controls
61 lines (48 loc) · 803 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
.rc-wrapper,
.rc,
.rc-slider {
position: relative;
}
.rc {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.rc.-no-scroll {
overflow-x: hidden;
}
.rc-slider {
width: fit-content;
white-space: nowrap;
}
.rc-slide {
display: inline-block;
}
.rc-slide:hover {
cursor: pointer;
}
.rc-slider.-draggable:hover {
cursor: grab;
}
.rc-slider.-draggable.-dragging,
.rc-slider.-draggable.-dragging .rc-slide {
cursor: grabbing;
}
.rc-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
}
.rc-arrow.-left { left: 15px; }
.rc-arrow.-right { right: 15px; }
.rc-dots {
display: flex;
align-items: center;
justify-content: center;
}
.rc-dot {
margin: 0 5px;
opacity: 0.5;
}
.rc-dot.-current {
opacity: 1;
}