-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslider.css
More file actions
70 lines (69 loc) · 1.58 KB
/
slider.css
File metadata and controls
70 lines (69 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
.k-wrap {
position: relative;
margin: 0;
padding: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: space-between;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
background-color: #a5a5a5; }
.k-img_box {
position: absolute;
top: 0;
right: 0;
background-color: #a5a5a5;
width: 100%;
height: 100%;
overflow: hidden; }
.k-img_box__slider {
position: absolute;
display: flex;
width: 100%;
height: 100%;
top: 0;
right: 0; }
.k-img_box__slider-items {
position: absolute;
top: 0;
display: -webkit-box;
padding: 0;
margin: 0;
width: inherit;
height: inherit;
list-style: none;
transition-duration: 600ms;
transition-property: left;
transition-timing-function: cubic-bezier(0.4, 0, 0.8, 1.01); }
.k-controls {
display: flex;
z-index: 999999;
height: inherit;
width: 15%; }
.k-button {
width: 100%;
height: 100%;
background: #98989812;
color: #0000001a;
border: none;
font-size: 60pt;
outline: none;
transition: background-color .3s, color .3s; }
.k-button > svg path {
fill: #0000001a; }
.k-button:hover {
background: #00000047;
color: #000000d1; }
.k-button:hover > svg path {
fill: #000000d1; }
.k-button__back > svg {
transform: rotate(-180deg); }
.k-slider-items {
width: inherit;
height: inherit; }
.k-slider-items > img {
width: inherit;
height: inherit; }
/*# sourceMappingURL=slider.css.map */