scss_ninja 0.1.6 → 0.2.0

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.
@@ -0,0 +1,390 @@
1
+ /* ######## Margin styles ######### */
2
+ .m-auto {
3
+ margin: auto auto auto auto;
4
+ }
5
+
6
+ .mx-auto {
7
+ margin-left: auto;
8
+ margin-right: auto;
9
+ }
10
+
11
+ .mx-0 {
12
+ margin-left: 0;
13
+ margin-right: 0;
14
+ }
15
+
16
+ .mx-1 {
17
+ margin-left: 1 1rem;
18
+ margin-right: 1rem;
19
+ }
20
+
21
+ .mx-2 {
22
+ margin-left: 2 1rem;
23
+ margin-right: 2rem;
24
+ }
25
+
26
+ .mx-3 {
27
+ margin-left: 3 1rem;
28
+ margin-right: 3rem;
29
+ }
30
+
31
+ .mx-4 {
32
+ margin-left: 4 1rem;
33
+ margin-right: 4rem;
34
+ }
35
+
36
+ .mx-5 {
37
+ margin-left: 5 1rem;
38
+ margin-right: 5rem;
39
+ }
40
+
41
+ .my-auto {
42
+ margin-top: auto;
43
+ margin-bottom: auto;
44
+ }
45
+
46
+ .my-0 {
47
+ margin-top: 0;
48
+ margin-bottom: 0;
49
+ }
50
+
51
+ .my-1 {
52
+ margin-top: 1 1rem;
53
+ margin-bottom: 1rem;
54
+ }
55
+
56
+ .my-2 {
57
+ margin-top: 2 1rem;
58
+ margin-bottom: 2rem;
59
+ }
60
+
61
+ .my-3 {
62
+ margin-top: 3 1rem;
63
+ margin-bottom: 3rem;
64
+ }
65
+
66
+ .my-4 {
67
+ margin-top: 4 1rem;
68
+ margin-bottom: 4rem;
69
+ }
70
+
71
+ .my-5 {
72
+ margin-top: 5 1rem;
73
+ margin-bottom: 5rem;
74
+ }
75
+
76
+ .m-0 {
77
+ margin: 0;
78
+ }
79
+
80
+ .m-1 {
81
+ margin: 1rem;
82
+ }
83
+
84
+ .m-2 {
85
+ margin: 2rem;
86
+ }
87
+
88
+ .m-3 {
89
+ margin: 3rem;
90
+ }
91
+
92
+ .m-4 {
93
+ margin: 4rem;
94
+ }
95
+
96
+ .m-5 {
97
+ margin: 5rem;
98
+ }
99
+
100
+ .mt-0 {
101
+ margin: 0;
102
+ }
103
+
104
+ .mt-1 {
105
+ margin: 1rem;
106
+ }
107
+
108
+ .mt-2 {
109
+ margin: 2rem;
110
+ }
111
+
112
+ .mt-3 {
113
+ margin: 3rem;
114
+ }
115
+
116
+ .mt-4 {
117
+ margin: 4rem;
118
+ }
119
+
120
+ .mt-5 {
121
+ margin: 5rem;
122
+ }
123
+
124
+ .mb-0 {
125
+ margin: 0;
126
+ }
127
+
128
+ .mb-1 {
129
+ margin: 1rem;
130
+ }
131
+
132
+ .mb-2 {
133
+ margin: 2rem;
134
+ }
135
+
136
+ .mb-3 {
137
+ margin: 3rem;
138
+ }
139
+
140
+ .mb-4 {
141
+ margin: 4rem;
142
+ }
143
+
144
+ .mb-5 {
145
+ margin: 5rem;
146
+ }
147
+
148
+ .mr-0 {
149
+ margin: 0;
150
+ }
151
+
152
+ .mr-1 {
153
+ margin: 1rem;
154
+ }
155
+
156
+ .mr-2 {
157
+ margin: 2rem;
158
+ }
159
+
160
+ .mr-3 {
161
+ margin: 3rem;
162
+ }
163
+
164
+ .mr-4 {
165
+ margin: 4rem;
166
+ }
167
+
168
+ .mr-5 {
169
+ margin: 5rem;
170
+ }
171
+
172
+ .ml-0 {
173
+ margin: 0;
174
+ }
175
+
176
+ .ml-1 {
177
+ margin: 1rem;
178
+ }
179
+
180
+ .ml-2 {
181
+ margin: 2rem;
182
+ }
183
+
184
+ .ml-3 {
185
+ margin: 3rem;
186
+ }
187
+
188
+ .ml-4 {
189
+ margin: 4rem;
190
+ }
191
+
192
+ .ml-5 {
193
+ margin: 5rem;
194
+ }
195
+
196
+ /* ######## Padding styles ######### */
197
+ .p-auto {
198
+ padding: auto auto auto auto;
199
+ }
200
+
201
+ .px-auto {
202
+ padding-left: auto;
203
+ padding-right: auto;
204
+ }
205
+
206
+ .px-0 {
207
+ padding-left: 0;
208
+ padding-right: 0;
209
+ }
210
+
211
+ .px-1 {
212
+ padding-left: 1 1rem;
213
+ padding-right: 1rem;
214
+ }
215
+
216
+ .px-2 {
217
+ padding-left: 2 1rem;
218
+ padding-right: 2rem;
219
+ }
220
+
221
+ .px-3 {
222
+ padding-left: 3 1rem;
223
+ padding-right: 3rem;
224
+ }
225
+
226
+ .px-4 {
227
+ padding-left: 4 1rem;
228
+ padding-right: 4rem;
229
+ }
230
+
231
+ .px-5 {
232
+ padding-left: 5 1rem;
233
+ padding-right: 5rem;
234
+ }
235
+
236
+ .py-auto {
237
+ padding-top: auto;
238
+ padding-bottom: auto;
239
+ }
240
+
241
+ .py-0 {
242
+ padding-top: 0;
243
+ padding-bottom: 0;
244
+ }
245
+
246
+ .py-1 {
247
+ padding-top: 1 1rem;
248
+ padding-bottom: 1rem;
249
+ }
250
+
251
+ .py-2 {
252
+ padding-top: 2 1rem;
253
+ padding-bottom: 2rem;
254
+ }
255
+
256
+ .py-3 {
257
+ padding-top: 3 1rem;
258
+ padding-bottom: 3rem;
259
+ }
260
+
261
+ .py-4 {
262
+ padding-top: 4 1rem;
263
+ padding-bottom: 4rem;
264
+ }
265
+
266
+ .py-5 {
267
+ padding-top: 5 1rem;
268
+ padding-bottom: 5rem;
269
+ }
270
+
271
+ .p-0 {
272
+ padding: 0;
273
+ }
274
+
275
+ .p-1 {
276
+ padding: 1rem;
277
+ }
278
+
279
+ .p-2 {
280
+ padding: 2rem;
281
+ }
282
+
283
+ .p-3 {
284
+ padding: 3rem;
285
+ }
286
+
287
+ .p-4 {
288
+ padding: 4rem;
289
+ }
290
+
291
+ .p-5 {
292
+ padding: 5rem;
293
+ }
294
+
295
+ .pt-0 {
296
+ padding-top: 0;
297
+ }
298
+
299
+ .pt-1 {
300
+ padding-top: 1rem;
301
+ }
302
+
303
+ .pt-2 {
304
+ padding-top: 2rem;
305
+ }
306
+
307
+ .pt-3 {
308
+ padding-top: 3rem;
309
+ }
310
+
311
+ .pt-4 {
312
+ padding-top: 4rem;
313
+ }
314
+
315
+ .pt-5 {
316
+ padding-top: 5rem;
317
+ }
318
+
319
+ .pb-0 {
320
+ padding-bottom: 0;
321
+ }
322
+
323
+ .pb-1 {
324
+ padding-bottom: 1rem;
325
+ }
326
+
327
+ .pb-2 {
328
+ padding-bottom: 2rem;
329
+ }
330
+
331
+ .pb-3 {
332
+ padding-bottom: 3rem;
333
+ }
334
+
335
+ .pb-4 {
336
+ padding-bottom: 4rem;
337
+ }
338
+
339
+ .pb-5 {
340
+ padding-bottom: 5rem;
341
+ }
342
+
343
+ .pr-0 {
344
+ padding-right: 0;
345
+ }
346
+
347
+ .pr-1 {
348
+ padding-right: 1rem;
349
+ }
350
+
351
+ .pr-2 {
352
+ padding-right: 2rem;
353
+ }
354
+
355
+ .pr-3 {
356
+ padding-right: 3rem;
357
+ }
358
+
359
+ .pr-4 {
360
+ padding-right: 4rem;
361
+ }
362
+
363
+ .pr-5 {
364
+ padding-right: 5rem;
365
+ }
366
+
367
+ .pl-0 {
368
+ padding-left: 0;
369
+ }
370
+
371
+ .pl-1 {
372
+ padding-left: 1rem;
373
+ }
374
+
375
+ .pl-2 {
376
+ padding-left: 2rem;
377
+ }
378
+
379
+ .pl-3 {
380
+ padding-left: 3rem;
381
+ }
382
+
383
+ .pl-4 {
384
+ padding-left: 4rem;
385
+ }
386
+
387
+ .pl-5 {
388
+ padding-left: 5rem;
389
+ }
390
+ /*# sourceMappingURL=margins&paddings.css.map */
@@ -0,0 +1,58 @@
1
+ .modal {
2
+ width: 100%;
3
+ height: 100%;
4
+ }
5
+
6
+ .modal .input-modal {
7
+ display: none;
8
+ }
9
+
10
+ .modal .input-modal:checked ~ .modal-card {
11
+ display: block;
12
+ -webkit-transform: scale(1, 1);
13
+ transform: scale(1, 1);
14
+ -webkit-transform-origin: top;
15
+ transform-origin: top;
16
+ -webkit-transition: -webkit-transform 0.5s ease-in-out;
17
+ transition: -webkit-transform 0.5s ease-in-out;
18
+ transition: transform 0.5s ease-in-out;
19
+ transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
20
+ }
21
+
22
+ .modal .modal-card {
23
+ position: relative;
24
+ -webkit-transform: scale(1, 0);
25
+ transform: scale(1, 0);
26
+ }
27
+
28
+ .modal .modal-card label {
29
+ position: absolute;
30
+ top: 0.2rem;
31
+ right: 0.2rem;
32
+ height: 2rem;
33
+ width: 2.8rem;
34
+ }
35
+
36
+ .modal .modal-card label span {
37
+ font-size: 3rem;
38
+ font-weight: 900;
39
+ }
40
+
41
+ .modal .modal-card .modal-card-header {
42
+ position: absolute;
43
+ top: 2rem;
44
+ height: 20%;
45
+ }
46
+
47
+ .modal .modal-card .modal-card-body {
48
+ position: absolute;
49
+ top: calc(20% + 2rem);
50
+ height: calc(100% - (20% + 2rem + 10%));
51
+ }
52
+
53
+ .modal .modal-control label {
54
+ padding: 1rem 0.7rem 1rem 0.7rem;
55
+ background-color: aqua;
56
+ border-radius: 0.8rem;
57
+ }
58
+ /*# sourceMappingURL=modals.css.map */
@@ -0,0 +1,259 @@
1
+ /* ############ Nav bar styles ############# */
2
+ @media only screen and (min-width: 826px) {
3
+ .nav-bar {
4
+ display: -ms-grid;
5
+ display: grid;
6
+ -ms-grid-columns: 2fr 8fr 2fr;
7
+ grid-template-columns: 2fr 8fr 2fr;
8
+ height: 70px;
9
+ width: 100%;
10
+ background-color: #76e9cc;
11
+ font-size: 20px;
12
+ font-family: 'Times New Roman', Times, serif;
13
+ }
14
+ .nav-bar .checkbox,
15
+ .nav-bar .checkbox-lab {
16
+ display: none;
17
+ }
18
+ .nav-bar .nav-start {
19
+ -ms-grid-column: 1;
20
+ -ms-grid-column-span: 1;
21
+ grid-column: 1 / span 1;
22
+ padding: 0;
23
+ margin: 23px 0 0 0;
24
+ }
25
+ .nav-bar .nav-start p {
26
+ padding: 0;
27
+ margin: 0 0 0 20px;
28
+ width: -webkit-fit-content;
29
+ width: -moz-fit-content;
30
+ width: fit-content;
31
+ text-shadow: 2px 2px #bdbaba;
32
+ font-weight: 900;
33
+ }
34
+ .nav-bar .nav-start p::after {
35
+ content: '';
36
+ height: 7px;
37
+ width: 0;
38
+ display: block;
39
+ background-color: ivory;
40
+ border-radius: 2px;
41
+ }
42
+ .nav-bar .nav-start p:hover::after {
43
+ width: 100%;
44
+ -webkit-transition: width 0.2s ease-in-out;
45
+ transition: width 0.2s ease-in-out;
46
+ }
47
+ .nav-bar .mid-nav {
48
+ -ms-grid-column: 2;
49
+ -ms-grid-column-span: 1;
50
+ grid-column: 2 / span 1;
51
+ margin: 0;
52
+ margin-top: 23px;
53
+ }
54
+ .nav-bar .mid-nav ul {
55
+ display: -webkit-box;
56
+ display: -ms-flexbox;
57
+ display: flex;
58
+ padding: 0;
59
+ margin: 0;
60
+ }
61
+ .nav-bar .mid-nav ul li {
62
+ list-style: none;
63
+ padding: 0;
64
+ margin: 0 auto 0 auto;
65
+ font-family: 'Times New Roman', Times, serif;
66
+ width: -webkit-fit-content;
67
+ width: -moz-fit-content;
68
+ width: fit-content;
69
+ }
70
+ .nav-bar .mid-nav ul li a {
71
+ text-decoration: none;
72
+ color: black;
73
+ width: -webkit-fit-content;
74
+ width: -moz-fit-content;
75
+ width: fit-content;
76
+ font-weight: 900;
77
+ text-shadow: 2px 2px #d3d2d2;
78
+ }
79
+ .nav-bar .mid-nav ul li a:hover::after {
80
+ content: '';
81
+ height: 7px;
82
+ background-color: aliceblue;
83
+ display: block;
84
+ border-radius: 2px;
85
+ }
86
+ .nav-bar .nav-end {
87
+ -ms-grid-column: 3;
88
+ -ms-grid-column-span: 1;
89
+ grid-column: 3 / span 1;
90
+ margin-top: 23px;
91
+ }
92
+ }
93
+
94
+ @media only screen and (max-width: 825px) {
95
+ .nav-bar {
96
+ all: initial;
97
+ position: relative;
98
+ display: -ms-grid;
99
+ display: grid;
100
+ -ms-grid-columns: 2fr 4fr 3fr;
101
+ grid-template-columns: 2fr 4fr 3fr;
102
+ height: 70px;
103
+ width: 100%;
104
+ background-color: #76e9cc;
105
+ font-size: 20px;
106
+ font-family: 'Times New Roman', Times, serif;
107
+ }
108
+ .nav-bar .checkbox {
109
+ display: none;
110
+ }
111
+ .nav-bar .checkbox:checked ~ .mid-nav {
112
+ display: block;
113
+ }
114
+ .nav-bar .checkbox:checked ~ .checkbox-lab > span {
115
+ -webkit-transform: rotate(45deg);
116
+ transform: rotate(45deg);
117
+ -webkit-transition: -webkit-transform 0.4s ease-in-out;
118
+ transition: -webkit-transform 0.4s ease-in-out;
119
+ transition: transform 0.4s ease-in-out;
120
+ transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
121
+ }
122
+ .nav-bar .checkbox:checked ~ .checkbox-lab > span:hover {
123
+ -webkit-transform: rotate(180deg);
124
+ transform: rotate(180deg);
125
+ -webkit-transition: -webkit-transform 0.7s ease-in-out;
126
+ transition: -webkit-transform 0.7s ease-in-out;
127
+ transition: transform 0.7s ease-in-out;
128
+ transition: transform 0.7s ease-in-out, -webkit-transform 0.7s ease-in-out;
129
+ }
130
+ .nav-bar .checkbox:checked ~ .checkbox-lab > span::after {
131
+ -webkit-transform: rotate(90deg);
132
+ transform: rotate(90deg);
133
+ bottom: 0;
134
+ }
135
+ .nav-bar .checkbox:checked ~ .checkbox-lab > span::before {
136
+ display: none;
137
+ }
138
+ .nav-bar .checkbox-lab {
139
+ display: block;
140
+ height: calc(70px - 23px);
141
+ margin: 30px 0 0 20px;
142
+ -ms-grid-column: 1;
143
+ -ms-grid-column-span: 1;
144
+ grid-column: 1 / span 1;
145
+ }
146
+ .nav-bar .checkbox-lab > span {
147
+ content: '';
148
+ display: block;
149
+ background-color: ivory;
150
+ width: 55px;
151
+ height: 6px;
152
+ position: relative;
153
+ }
154
+ .nav-bar .checkbox-lab > span::before {
155
+ content: '';
156
+ display: block;
157
+ background-color: ivory;
158
+ width: 55px;
159
+ height: 6px;
160
+ position: absolute;
161
+ top: 13px;
162
+ }
163
+ .nav-bar .checkbox-lab > span::after {
164
+ content: '';
165
+ display: block;
166
+ background-color: ivory;
167
+ width: 55px;
168
+ height: 6px;
169
+ position: absolute;
170
+ bottom: 13px;
171
+ }
172
+ .nav-bar .nav-start {
173
+ -ms-grid-column: 2;
174
+ -ms-grid-column-span: 1;
175
+ grid-column: 2/ span 1;
176
+ padding: 0;
177
+ margin: 23px 0 0 0;
178
+ }
179
+ .nav-bar .nav-start p {
180
+ padding: 0;
181
+ margin: 0 0 0 20px;
182
+ width: -webkit-fit-content;
183
+ width: -moz-fit-content;
184
+ width: fit-content;
185
+ text-shadow: 2px 2px #bdbaba;
186
+ font-weight: 900;
187
+ }
188
+ .nav-bar .nav-start p::after {
189
+ content: '';
190
+ height: 7px;
191
+ width: 0;
192
+ display: block;
193
+ background-color: ivory;
194
+ border-radius: 2px;
195
+ }
196
+ .nav-bar .nav-start p:hover::after {
197
+ width: 100%;
198
+ -webkit-transition: width 0.2s ease-in-out;
199
+ transition: width 0.2s ease-in-out;
200
+ }
201
+ .nav-bar .mid-nav {
202
+ display: none;
203
+ position: absolute;
204
+ top: 100%;
205
+ left: 0 !important;
206
+ margin: 0;
207
+ width: 100%;
208
+ height: 90vh;
209
+ background-color: #0dc0c0;
210
+ z-index: 1;
211
+ }
212
+ .nav-bar .mid-nav ul {
213
+ padding: 0;
214
+ margin-left: auto;
215
+ margin-right: auto;
216
+ width: 20%;
217
+ height: 30%;
218
+ margin-top: 30%;
219
+ -webkit-box-align: center;
220
+ -ms-flex-align: center;
221
+ align-items: center;
222
+ }
223
+ .nav-bar .mid-nav ul li {
224
+ list-style: none;
225
+ padding: 0;
226
+ margin: 0 auto;
227
+ width: -webkit-fit-content;
228
+ width: -moz-fit-content;
229
+ width: fit-content;
230
+ font-family: 'Times New Roman', Times, serif;
231
+ }
232
+ .nav-bar .mid-nav ul li a {
233
+ text-decoration: none;
234
+ color: black;
235
+ width: -webkit-fit-content;
236
+ width: -moz-fit-content;
237
+ width: fit-content;
238
+ font-weight: 900;
239
+ text-shadow: 2px 2px #d3d2d2;
240
+ }
241
+ .nav-bar .mid-nav ul li a:hover::after {
242
+ content: '';
243
+ height: 7px;
244
+ background-color: aliceblue;
245
+ border-radius: 2px;
246
+ display: block;
247
+ }
248
+ .nav-bar .nav-end {
249
+ -ms-grid-column: 3;
250
+ -ms-grid-column-span: 1;
251
+ grid-column: 3 / span 1;
252
+ margin-top: 23px;
253
+ }
254
+ }
255
+
256
+ .img-rounded {
257
+ border-radius: 50%;
258
+ }
259
+ /*# sourceMappingURL=nav.css.map */
@@ -0,0 +1,40 @@
1
+ .op-1 {
2
+ opacity: 0.1;
3
+ }
4
+
5
+ .op-2 {
6
+ opacity: 0.2;
7
+ }
8
+
9
+ .op-3 {
10
+ opacity: 0.3;
11
+ }
12
+
13
+ .op-4 {
14
+ opacity: 0.4;
15
+ }
16
+
17
+ .op-5 {
18
+ opacity: 0.5;
19
+ }
20
+
21
+ .op-6 {
22
+ opacity: 0.6;
23
+ }
24
+
25
+ .op-7 {
26
+ opacity: 0.7;
27
+ }
28
+
29
+ .op-8 {
30
+ opacity: 0.8;
31
+ }
32
+
33
+ .op-9 {
34
+ opacity: 0.9;
35
+ }
36
+
37
+ .op-10 {
38
+ opacity: 1;
39
+ }
40
+ /*# sourceMappingURL=opacity.css.map */