marketplacepos 2.5.1 → 2.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Marketplace/397.9488b7c2d948b1be.js +1 -0
- package/Marketplace/assets/bootstrap_light.scss +1142 -1142
- package/Marketplace/assets/floatingLabel.scss +187 -187
- package/Marketplace/assets/lbd/_alerts.scss +90 -90
- package/Marketplace/assets/lbd/_bootstrap-switch.scss +128 -128
- package/Marketplace/assets/lbd/_buttons.scss +132 -132
- package/Marketplace/assets/lbd/_cards.scss +256 -256
- package/Marketplace/assets/lbd/_chartist.scss +229 -229
- package/Marketplace/assets/lbd/_checkbox-radio-switch.scss +140 -140
- package/Marketplace/assets/lbd/_dropdown.scss +137 -137
- package/Marketplace/assets/lbd/_footers.scss +75 -75
- package/Marketplace/assets/lbd/_inputs.scss +141 -141
- package/Marketplace/assets/lbd/_misc.scss +120 -120
- package/Marketplace/assets/lbd/_mixins.scss +8 -8
- package/Marketplace/assets/lbd/_navbars.scss +235 -235
- package/Marketplace/assets/lbd/_partial-nucleo-icons.scss +574 -574
- package/Marketplace/assets/lbd/_responsive.scss +482 -482
- package/Marketplace/assets/lbd/_sidebar-and-main-panel.scss +333 -333
- package/Marketplace/assets/lbd/_tables.scss +88 -88
- package/Marketplace/assets/lbd/_typography.scss +91 -91
- package/Marketplace/assets/lbd/_variables.scss +272 -272
- package/Marketplace/assets/lbd/mixins/_buttons.scss +69 -69
- package/Marketplace/assets/lbd/mixins/_cards.scss +8 -8
- package/Marketplace/assets/lbd/mixins/_chartist.scss +87 -87
- package/Marketplace/assets/lbd/mixins/_icons.scss +12 -12
- package/Marketplace/assets/lbd/mixins/_inputs.scss +1 -1
- package/Marketplace/assets/lbd/mixins/_labels.scss +20 -20
- package/Marketplace/assets/lbd/mixins/_morphing-buttons.scss +33 -33
- package/Marketplace/assets/lbd/mixins/_navbars.scss +11 -11
- package/Marketplace/assets/lbd/mixins/_social-buttons.scss +42 -42
- package/Marketplace/assets/lbd/mixins/_tabs.scss +3 -3
- package/Marketplace/assets/lbd/mixins/_transparency.scss +19 -19
- package/Marketplace/assets/lbd/mixins/_vendor-prefixes.scss +211 -211
- package/Marketplace/assets/lbd/plugins/_animate.scss +227 -227
- package/Marketplace/assets/lbd/plugins/_datetime-picker.scss +463 -463
- package/Marketplace/assets/light-bootstrap-dashboard.scss +32 -32
- package/Marketplace/assets/pos_variable.scss +83 -83
- package/Marketplace/assets/sitemap.json +39 -39
- package/Marketplace/assets/stepper-custom.scss +32 -32
- package/Marketplace/assets/variables-custom.scss +190 -190
- package/Marketplace/assets/version-adjustment-v5.scss +286 -286
- package/Marketplace/index.html +2 -2
- package/Marketplace/{runtime.de37a7d67f4eed9c.js → runtime.6d4d6c7e2c139e6c.js} +1 -1
- package/package.json +1 -1
- package/Marketplace/397.5ae6b1775c69cdc2.js +0 -1
|
@@ -1,211 +1,211 @@
|
|
|
1
|
-
// User select
|
|
2
|
-
// For selecting text on the page
|
|
3
|
-
|
|
4
|
-
@mixin user-select($select) {
|
|
5
|
-
-webkit-user-select: $select;
|
|
6
|
-
-moz-user-select: $select;
|
|
7
|
-
-ms-user-select: $select; // IE10+
|
|
8
|
-
user-select: $select;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
@mixin box-shadow($shadow...) {
|
|
12
|
-
-webkit-box-shadow: $shadow; // iOS <4.3 & Android <4.1
|
|
13
|
-
box-shadow: $shadow;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
// Box sizing
|
|
17
|
-
@mixin box-sizing($boxmodel) {
|
|
18
|
-
-webkit-box-sizing: $boxmodel;
|
|
19
|
-
-moz-box-sizing: $boxmodel;
|
|
20
|
-
box-sizing: $boxmodel;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
@mixin transition($time, $type){
|
|
25
|
-
-webkit-transition: all $time $type;
|
|
26
|
-
-moz-transition: all $time $type;
|
|
27
|
-
-o-transition: all $time $type;
|
|
28
|
-
-ms-transition: all $time $type;
|
|
29
|
-
transition: all $time $type;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
@mixin transform-scale($value){
|
|
33
|
-
-webkit-transform: scale($value);
|
|
34
|
-
-moz-transform: scale($value);
|
|
35
|
-
-o-transform: scale($value);
|
|
36
|
-
-ms-transform: scale($value);
|
|
37
|
-
transform: scale($value);
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
@mixin transform-translate-x($value){
|
|
41
|
-
-webkit-transform: translate3d($value, 0, 0);
|
|
42
|
-
-moz-transform: translate3d($value, 0, 0);
|
|
43
|
-
-o-transform: translate3d($value, 0, 0);
|
|
44
|
-
-ms-transform: translate3d($value, 0, 0);
|
|
45
|
-
transform: translate3d($value, 0, 0);
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
@mixin transform-translate-3d($value){
|
|
49
|
-
-webkit-transform: translate3d($value, 0, 0);
|
|
50
|
-
-moz-transform: translate3d($value, 0, 0);
|
|
51
|
-
-o-transform: translate3d($value, 0, 0);
|
|
52
|
-
-ms-transform: translate3d($value, 0, 0);
|
|
53
|
-
transform: translate3d($value, 0, 0) !important;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
@mixin transform-translate-y-dropdown($value){
|
|
57
|
-
-webkit-transform: translate3d(0, $value, 0) !important;
|
|
58
|
-
-moz-transform: translate3d(0, $value, 0) !important;
|
|
59
|
-
-o-transform: translate3d(0, $value, 0) !important;
|
|
60
|
-
-ms-transform: translate3d(0, $value, 0) !important;
|
|
61
|
-
transform: translate3d(0, $value, 0) !important;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
@mixin transform-translate-3d-0($value){
|
|
65
|
-
-webkit-transform: translate3d(0, $value, 0) !important;
|
|
66
|
-
-moz-transform: translate3d(0, $value, 0) !important;
|
|
67
|
-
-o-transform: translate3d(0, $value, 0) !important;
|
|
68
|
-
-ms-transform: translate3d(0, $value, 0) !important;
|
|
69
|
-
transform: translate3d(0, $value, 0) !important;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
@mixin transform-origin($coordinates){
|
|
73
|
-
-webkit-transform-origin: $coordinates;
|
|
74
|
-
-moz-transform-origin: $coordinates;
|
|
75
|
-
-o-transform-origin: $coordinates;
|
|
76
|
-
-ms-transform-origin: $coordinates;
|
|
77
|
-
transform-origin: $coordinates;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
@mixin icon-gradient ($top-color, $bottom-color){
|
|
81
|
-
background: $top-color;
|
|
82
|
-
background: -moz-linear-gradient(top, $top-color 0%, $bottom-color 100%);
|
|
83
|
-
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,$top-color), color-stop(100%,$bottom-color));
|
|
84
|
-
background: -webkit-linear-gradient(top, $top-color 0%,$bottom-color 100%);
|
|
85
|
-
background: -o-linear-gradient(top, $top-color 0%,$bottom-color 100%);
|
|
86
|
-
background: -ms-linear-gradient(top, $top-color 0%,$bottom-color 100%);
|
|
87
|
-
background: linear-gradient(to bottom, $top-color 0%,$bottom-color 100%);
|
|
88
|
-
background-size: 150% 150%;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
@mixin radial-gradient($extern-color, $center-color){
|
|
92
|
-
background: $extern-color;
|
|
93
|
-
background: -moz-radial-gradient(center, ellipse cover, $center-color 0%, $extern-color 100%); /* FF3.6+ */
|
|
94
|
-
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,$center-color), color-stop(100%,$extern-color)); /* Chrome,Safari4+ */
|
|
95
|
-
background: -webkit-radial-gradient(center, ellipse cover, $center-color 0%,$extern-color 100%); /* Chrome10+,Safari5.1+ */
|
|
96
|
-
background: -o-radial-gradient(center, ellipse cover, $center-color 0%,$extern-color 100%); /* Opera 12+ */
|
|
97
|
-
background: -ms-radial-gradient(center, ellipse cover, $center-color 0%,$extern-color 100%); /* IE10+ */
|
|
98
|
-
background: radial-gradient(ellipse at center, $center-color 0%,$extern-color 100%); /* W3C */
|
|
99
|
-
background-size: 550% 450%;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
@mixin vertical-align {
|
|
103
|
-
position: relative;
|
|
104
|
-
top: 50%;
|
|
105
|
-
-webkit-transform: translateY(-50%);
|
|
106
|
-
-ms-transform: translateY(-50%);
|
|
107
|
-
transform: translateY(-50%);
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
@mixin rotate-180(){
|
|
111
|
-
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
|
|
112
|
-
-webkit-transform: rotate(180deg);
|
|
113
|
-
-ms-transform: rotate(180deg);
|
|
114
|
-
transform: rotate(180deg);
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
@mixin bar-animation($type){
|
|
118
|
-
-webkit-animation: $type 500ms linear 0s;
|
|
119
|
-
-moz-animation: $type 500ms linear 0s;
|
|
120
|
-
animation: $type 500ms 0s;
|
|
121
|
-
-webkit-animation-fill-mode: forwards;
|
|
122
|
-
-moz-animation-fill-mode: forwards;
|
|
123
|
-
animation-fill-mode: forwards;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
@mixin topbar-x-rotation(){
|
|
127
|
-
@keyframes topbar-x {
|
|
128
|
-
0% {top: 0px; transform: rotate(0deg); }
|
|
129
|
-
45% {top: 6px; transform: rotate(145deg); }
|
|
130
|
-
75% {transform: rotate(130deg); }
|
|
131
|
-
100% {transform: rotate(135deg); }
|
|
132
|
-
}
|
|
133
|
-
@-webkit-keyframes topbar-x {
|
|
134
|
-
0% {top: 0px; -webkit-transform: rotate(0deg); }
|
|
135
|
-
45% {top: 6px; -webkit-transform: rotate(145deg); }
|
|
136
|
-
75% {-webkit-transform: rotate(130deg); }
|
|
137
|
-
100% { -webkit-transform: rotate(135deg); }
|
|
138
|
-
}
|
|
139
|
-
@-moz-keyframes topbar-x {
|
|
140
|
-
0% {top: 0px; -moz-transform: rotate(0deg); }
|
|
141
|
-
45% {top: 6px; -moz-transform: rotate(145deg); }
|
|
142
|
-
75% {-moz-transform: rotate(130deg); }
|
|
143
|
-
100% { -moz-transform: rotate(135deg); }
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
@mixin topbar-back-rotation(){
|
|
148
|
-
@keyframes topbar-back {
|
|
149
|
-
0% { top: 6px; transform: rotate(135deg); }
|
|
150
|
-
45% { transform: rotate(-10deg); }
|
|
151
|
-
75% { transform: rotate(5deg); }
|
|
152
|
-
100% { top: 0px; transform: rotate(0); }
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
@-webkit-keyframes topbar-back {
|
|
156
|
-
0% { top: 6px; -webkit-transform: rotate(135deg); }
|
|
157
|
-
45% { -webkit-transform: rotate(-10deg); }
|
|
158
|
-
75% { -webkit-transform: rotate(5deg); }
|
|
159
|
-
100% { top: 0px; -webkit-transform: rotate(0); }
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
@-moz-keyframes topbar-back {
|
|
163
|
-
0% { top: 6px; -moz-transform: rotate(135deg); }
|
|
164
|
-
45% { -moz-transform: rotate(-10deg); }
|
|
165
|
-
75% { -moz-transform: rotate(5deg); }
|
|
166
|
-
100% { top: 0px; -moz-transform: rotate(0); }
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
@mixin bottombar-x-rotation(){
|
|
171
|
-
@keyframes bottombar-x {
|
|
172
|
-
0% {bottom: 0px; transform: rotate(0deg);}
|
|
173
|
-
45% {bottom: 6px; transform: rotate(-145deg);}
|
|
174
|
-
75% {transform: rotate(-130deg);}
|
|
175
|
-
100% {transform: rotate(-135deg);}
|
|
176
|
-
}
|
|
177
|
-
@-webkit-keyframes bottombar-x {
|
|
178
|
-
0% {bottom: 0px; -webkit-transform: rotate(0deg);}
|
|
179
|
-
45% {bottom: 6px; -webkit-transform: rotate(-145deg);}
|
|
180
|
-
75% {-webkit-transform: rotate(-130deg);}
|
|
181
|
-
100% {-webkit-transform: rotate(-135deg);}
|
|
182
|
-
}
|
|
183
|
-
@-moz-keyframes bottombar-x {
|
|
184
|
-
0% {bottom: 0px; -moz-transform: rotate(0deg);}
|
|
185
|
-
45% {bottom: 6px; -moz-transform: rotate(-145deg);}
|
|
186
|
-
75% {-moz-transform: rotate(-130deg);}
|
|
187
|
-
100% {-moz-transform: rotate(-135deg);}
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
@mixin bottombar-back-rotation{
|
|
192
|
-
@keyframes bottombar-back {
|
|
193
|
-
0% { bottom: 6px;transform: rotate(-135deg);}
|
|
194
|
-
45% { transform: rotate(10deg);}
|
|
195
|
-
75% { transform: rotate(-5deg);}
|
|
196
|
-
100% { bottom: 0px;transform: rotate(0);}
|
|
197
|
-
}
|
|
198
|
-
@-webkit-keyframes bottombar-back {
|
|
199
|
-
0% {bottom: 6px;-webkit-transform: rotate(-135deg);}
|
|
200
|
-
45% {-webkit-transform: rotate(10deg);}
|
|
201
|
-
75% {-webkit-transform: rotate(-5deg);}
|
|
202
|
-
100% {bottom: 0px;-webkit-transform: rotate(0);}
|
|
203
|
-
}
|
|
204
|
-
@-moz-keyframes bottombar-back {
|
|
205
|
-
0% {bottom: 6px;-moz-transform: rotate(-135deg);}
|
|
206
|
-
45% {-moz-transform: rotate(10deg);}
|
|
207
|
-
75% {-moz-transform: rotate(-5deg);}
|
|
208
|
-
100% {bottom: 0px;-moz-transform: rotate(0);}
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
}
|
|
1
|
+
// User select
|
|
2
|
+
// For selecting text on the page
|
|
3
|
+
|
|
4
|
+
@mixin user-select($select) {
|
|
5
|
+
-webkit-user-select: $select;
|
|
6
|
+
-moz-user-select: $select;
|
|
7
|
+
-ms-user-select: $select; // IE10+
|
|
8
|
+
user-select: $select;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
@mixin box-shadow($shadow...) {
|
|
12
|
+
-webkit-box-shadow: $shadow; // iOS <4.3 & Android <4.1
|
|
13
|
+
box-shadow: $shadow;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
// Box sizing
|
|
17
|
+
@mixin box-sizing($boxmodel) {
|
|
18
|
+
-webkit-box-sizing: $boxmodel;
|
|
19
|
+
-moz-box-sizing: $boxmodel;
|
|
20
|
+
box-sizing: $boxmodel;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
@mixin transition($time, $type){
|
|
25
|
+
-webkit-transition: all $time $type;
|
|
26
|
+
-moz-transition: all $time $type;
|
|
27
|
+
-o-transition: all $time $type;
|
|
28
|
+
-ms-transition: all $time $type;
|
|
29
|
+
transition: all $time $type;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
@mixin transform-scale($value){
|
|
33
|
+
-webkit-transform: scale($value);
|
|
34
|
+
-moz-transform: scale($value);
|
|
35
|
+
-o-transform: scale($value);
|
|
36
|
+
-ms-transform: scale($value);
|
|
37
|
+
transform: scale($value);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
@mixin transform-translate-x($value){
|
|
41
|
+
-webkit-transform: translate3d($value, 0, 0);
|
|
42
|
+
-moz-transform: translate3d($value, 0, 0);
|
|
43
|
+
-o-transform: translate3d($value, 0, 0);
|
|
44
|
+
-ms-transform: translate3d($value, 0, 0);
|
|
45
|
+
transform: translate3d($value, 0, 0);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
@mixin transform-translate-3d($value){
|
|
49
|
+
-webkit-transform: translate3d($value, 0, 0);
|
|
50
|
+
-moz-transform: translate3d($value, 0, 0);
|
|
51
|
+
-o-transform: translate3d($value, 0, 0);
|
|
52
|
+
-ms-transform: translate3d($value, 0, 0);
|
|
53
|
+
transform: translate3d($value, 0, 0) !important;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
@mixin transform-translate-y-dropdown($value){
|
|
57
|
+
-webkit-transform: translate3d(0, $value, 0) !important;
|
|
58
|
+
-moz-transform: translate3d(0, $value, 0) !important;
|
|
59
|
+
-o-transform: translate3d(0, $value, 0) !important;
|
|
60
|
+
-ms-transform: translate3d(0, $value, 0) !important;
|
|
61
|
+
transform: translate3d(0, $value, 0) !important;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
@mixin transform-translate-3d-0($value){
|
|
65
|
+
-webkit-transform: translate3d(0, $value, 0) !important;
|
|
66
|
+
-moz-transform: translate3d(0, $value, 0) !important;
|
|
67
|
+
-o-transform: translate3d(0, $value, 0) !important;
|
|
68
|
+
-ms-transform: translate3d(0, $value, 0) !important;
|
|
69
|
+
transform: translate3d(0, $value, 0) !important;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
@mixin transform-origin($coordinates){
|
|
73
|
+
-webkit-transform-origin: $coordinates;
|
|
74
|
+
-moz-transform-origin: $coordinates;
|
|
75
|
+
-o-transform-origin: $coordinates;
|
|
76
|
+
-ms-transform-origin: $coordinates;
|
|
77
|
+
transform-origin: $coordinates;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
@mixin icon-gradient ($top-color, $bottom-color){
|
|
81
|
+
background: $top-color;
|
|
82
|
+
background: -moz-linear-gradient(top, $top-color 0%, $bottom-color 100%);
|
|
83
|
+
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,$top-color), color-stop(100%,$bottom-color));
|
|
84
|
+
background: -webkit-linear-gradient(top, $top-color 0%,$bottom-color 100%);
|
|
85
|
+
background: -o-linear-gradient(top, $top-color 0%,$bottom-color 100%);
|
|
86
|
+
background: -ms-linear-gradient(top, $top-color 0%,$bottom-color 100%);
|
|
87
|
+
background: linear-gradient(to bottom, $top-color 0%,$bottom-color 100%);
|
|
88
|
+
background-size: 150% 150%;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
@mixin radial-gradient($extern-color, $center-color){
|
|
92
|
+
background: $extern-color;
|
|
93
|
+
background: -moz-radial-gradient(center, ellipse cover, $center-color 0%, $extern-color 100%); /* FF3.6+ */
|
|
94
|
+
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,$center-color), color-stop(100%,$extern-color)); /* Chrome,Safari4+ */
|
|
95
|
+
background: -webkit-radial-gradient(center, ellipse cover, $center-color 0%,$extern-color 100%); /* Chrome10+,Safari5.1+ */
|
|
96
|
+
background: -o-radial-gradient(center, ellipse cover, $center-color 0%,$extern-color 100%); /* Opera 12+ */
|
|
97
|
+
background: -ms-radial-gradient(center, ellipse cover, $center-color 0%,$extern-color 100%); /* IE10+ */
|
|
98
|
+
background: radial-gradient(ellipse at center, $center-color 0%,$extern-color 100%); /* W3C */
|
|
99
|
+
background-size: 550% 450%;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
@mixin vertical-align {
|
|
103
|
+
position: relative;
|
|
104
|
+
top: 50%;
|
|
105
|
+
-webkit-transform: translateY(-50%);
|
|
106
|
+
-ms-transform: translateY(-50%);
|
|
107
|
+
transform: translateY(-50%);
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
@mixin rotate-180(){
|
|
111
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
|
|
112
|
+
-webkit-transform: rotate(180deg);
|
|
113
|
+
-ms-transform: rotate(180deg);
|
|
114
|
+
transform: rotate(180deg);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
@mixin bar-animation($type){
|
|
118
|
+
-webkit-animation: $type 500ms linear 0s;
|
|
119
|
+
-moz-animation: $type 500ms linear 0s;
|
|
120
|
+
animation: $type 500ms 0s;
|
|
121
|
+
-webkit-animation-fill-mode: forwards;
|
|
122
|
+
-moz-animation-fill-mode: forwards;
|
|
123
|
+
animation-fill-mode: forwards;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
@mixin topbar-x-rotation(){
|
|
127
|
+
@keyframes topbar-x {
|
|
128
|
+
0% {top: 0px; transform: rotate(0deg); }
|
|
129
|
+
45% {top: 6px; transform: rotate(145deg); }
|
|
130
|
+
75% {transform: rotate(130deg); }
|
|
131
|
+
100% {transform: rotate(135deg); }
|
|
132
|
+
}
|
|
133
|
+
@-webkit-keyframes topbar-x {
|
|
134
|
+
0% {top: 0px; -webkit-transform: rotate(0deg); }
|
|
135
|
+
45% {top: 6px; -webkit-transform: rotate(145deg); }
|
|
136
|
+
75% {-webkit-transform: rotate(130deg); }
|
|
137
|
+
100% { -webkit-transform: rotate(135deg); }
|
|
138
|
+
}
|
|
139
|
+
@-moz-keyframes topbar-x {
|
|
140
|
+
0% {top: 0px; -moz-transform: rotate(0deg); }
|
|
141
|
+
45% {top: 6px; -moz-transform: rotate(145deg); }
|
|
142
|
+
75% {-moz-transform: rotate(130deg); }
|
|
143
|
+
100% { -moz-transform: rotate(135deg); }
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
@mixin topbar-back-rotation(){
|
|
148
|
+
@keyframes topbar-back {
|
|
149
|
+
0% { top: 6px; transform: rotate(135deg); }
|
|
150
|
+
45% { transform: rotate(-10deg); }
|
|
151
|
+
75% { transform: rotate(5deg); }
|
|
152
|
+
100% { top: 0px; transform: rotate(0); }
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
@-webkit-keyframes topbar-back {
|
|
156
|
+
0% { top: 6px; -webkit-transform: rotate(135deg); }
|
|
157
|
+
45% { -webkit-transform: rotate(-10deg); }
|
|
158
|
+
75% { -webkit-transform: rotate(5deg); }
|
|
159
|
+
100% { top: 0px; -webkit-transform: rotate(0); }
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
@-moz-keyframes topbar-back {
|
|
163
|
+
0% { top: 6px; -moz-transform: rotate(135deg); }
|
|
164
|
+
45% { -moz-transform: rotate(-10deg); }
|
|
165
|
+
75% { -moz-transform: rotate(5deg); }
|
|
166
|
+
100% { top: 0px; -moz-transform: rotate(0); }
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
@mixin bottombar-x-rotation(){
|
|
171
|
+
@keyframes bottombar-x {
|
|
172
|
+
0% {bottom: 0px; transform: rotate(0deg);}
|
|
173
|
+
45% {bottom: 6px; transform: rotate(-145deg);}
|
|
174
|
+
75% {transform: rotate(-130deg);}
|
|
175
|
+
100% {transform: rotate(-135deg);}
|
|
176
|
+
}
|
|
177
|
+
@-webkit-keyframes bottombar-x {
|
|
178
|
+
0% {bottom: 0px; -webkit-transform: rotate(0deg);}
|
|
179
|
+
45% {bottom: 6px; -webkit-transform: rotate(-145deg);}
|
|
180
|
+
75% {-webkit-transform: rotate(-130deg);}
|
|
181
|
+
100% {-webkit-transform: rotate(-135deg);}
|
|
182
|
+
}
|
|
183
|
+
@-moz-keyframes bottombar-x {
|
|
184
|
+
0% {bottom: 0px; -moz-transform: rotate(0deg);}
|
|
185
|
+
45% {bottom: 6px; -moz-transform: rotate(-145deg);}
|
|
186
|
+
75% {-moz-transform: rotate(-130deg);}
|
|
187
|
+
100% {-moz-transform: rotate(-135deg);}
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
@mixin bottombar-back-rotation{
|
|
192
|
+
@keyframes bottombar-back {
|
|
193
|
+
0% { bottom: 6px;transform: rotate(-135deg);}
|
|
194
|
+
45% { transform: rotate(10deg);}
|
|
195
|
+
75% { transform: rotate(-5deg);}
|
|
196
|
+
100% { bottom: 0px;transform: rotate(0);}
|
|
197
|
+
}
|
|
198
|
+
@-webkit-keyframes bottombar-back {
|
|
199
|
+
0% {bottom: 6px;-webkit-transform: rotate(-135deg);}
|
|
200
|
+
45% {-webkit-transform: rotate(10deg);}
|
|
201
|
+
75% {-webkit-transform: rotate(-5deg);}
|
|
202
|
+
100% {bottom: 0px;-webkit-transform: rotate(0);}
|
|
203
|
+
}
|
|
204
|
+
@-moz-keyframes bottombar-back {
|
|
205
|
+
0% {bottom: 6px;-moz-transform: rotate(-135deg);}
|
|
206
|
+
45% {-moz-transform: rotate(10deg);}
|
|
207
|
+
75% {-moz-transform: rotate(-5deg);}
|
|
208
|
+
100% {bottom: 0px;-moz-transform: rotate(0);}
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
}
|