bytewax-docs 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,133 +0,0 @@
1
- /* Slider */
2
- .slick-slider {
3
- position: relative;
4
- display: block;
5
- box-sizing: border-box;
6
- -webkit-touch-callout: none;
7
- -webkit-user-select: none;
8
- -khtml-user-select: none;
9
- -moz-user-select: none;
10
- -ms-user-select: none;
11
- user-select: none;
12
- -ms-touch-action: pan-y;
13
- touch-action: pan-y;
14
- -webkit-tap-highlight-color: transparent;
15
- }
16
- .slick-list {
17
- position: relative;
18
- display: block;
19
- margin: 0;
20
- padding: 0;
21
- overflow: hidden;
22
-
23
- &:focus {
24
- outline: none;
25
- }
26
-
27
- &.dragging {
28
- cursor: pointer;
29
- cursor: hand;
30
- }
31
- }
32
- .slick-slider .slick-track,
33
- .slick-slider .slick-list {
34
- -webkit-transform: translate3d(0, 0, 0);
35
- -moz-transform: translate3d(0, 0, 0);
36
- -ms-transform: translate3d(0, 0, 0);
37
- -o-transform: translate3d(0, 0, 0);
38
- transform: translate3d(0, 0, 0);
39
- }
40
-
41
- .slick-track {
42
- position: relative;
43
- top: 0;
44
- left: 0;
45
- display: block;
46
- margin-right: auto;
47
- margin-left: auto;
48
-
49
- &:before,
50
- &:after {
51
- display: table;
52
- content: "";
53
- }
54
-
55
- &:after {
56
- clear: both;
57
- }
58
-
59
- .slick-loading & {
60
- visibility: hidden;
61
- }
62
- }
63
- .slick-slide {
64
-
65
- display: none;
66
- float: left;
67
- height: 100%;
68
- min-height: 1px;
69
- @include max-sm{
70
- animation: none !important;
71
- }
72
- [dir="rtl"] & {
73
- float: right;
74
- }
75
- img {
76
- display: block;
77
- }
78
- &.slick-loading img {
79
- display: none;
80
- }
81
-
82
- &.dragging img {
83
- pointer-events: none;
84
- }
85
-
86
- .slick-initialized & {
87
- display: block;
88
- }
89
-
90
- .slick-loading & {
91
- visibility: hidden;
92
- }
93
-
94
- .slick-vertical & {
95
- display: block;
96
- height: auto;
97
- border: 1px solid transparent;
98
- }
99
- }
100
- .slick-arrow.slick-hidden {
101
- display: none;
102
- }
103
-
104
- /** Navigation styling **/
105
- .slick-dots{
106
- display:flex;
107
- flex-direction:row;
108
- align-items:center;
109
- justify-content:center;
110
- width:100%;
111
- margin:36px 0 0 0;
112
- padding:0;
113
- list-style-type:none;
114
- li{
115
- height:12px;
116
- margin:0 4px;
117
- font-size:0;
118
- line-height:0;
119
- }
120
- button{
121
- position: relative;
122
- width: 12px;
123
- height: 12px;
124
- font-size:0;
125
- line-height:0;
126
- background:url('../img/hex-nav.svg')no-repeat center;
127
- border:0;
128
- outline:none;
129
- }
130
- li.slick-active button{
131
- background:url('../img/hex-nav--active.svg')no-repeat center;
132
- }
133
- }