@nappr/nappr-styles 0.2.23 → 0.2.26

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/dist/styles.css CHANGED
@@ -4,227 +4,6 @@
4
4
  * !!! DO NOT REORDER -> Declarative loading
5
5
  *
6
6
  */
7
- * {
8
- box-sizing: border-box;
9
- margin: 0;
10
- -webkit-overflow-scrolling: touch;
11
- padding: 0;
12
- }
13
-
14
- html,
15
- body,
16
- div,
17
- span,
18
- applet,
19
- object,
20
- iframe,
21
- h1,
22
- h2,
23
- h3,
24
- h4,
25
- h5,
26
- h6,
27
- p,
28
- blockquote,
29
- pre,
30
- a,
31
- abbr,
32
- acronym,
33
- address,
34
- big,
35
- cite,
36
- code,
37
- del,
38
- dfn,
39
- em,
40
- img,
41
- ins,
42
- kbd,
43
- q,
44
- s,
45
- samp,
46
- small,
47
- strike,
48
- strong,
49
- sub,
50
- sup,
51
- tt,
52
- var,
53
- b,
54
- u,
55
- i,
56
- center,
57
- dl,
58
- dt,
59
- dd,
60
- ol,
61
- ul,
62
- li,
63
- fieldset,
64
- form,
65
- label,
66
- legend,
67
- table,
68
- caption,
69
- tbody,
70
- tfoot,
71
- thead,
72
- tr,
73
- th,
74
- td,
75
- article,
76
- aside,
77
- canvas,
78
- details,
79
- embed,
80
- figure,
81
- figcaption,
82
- footer,
83
- header,
84
- hgroup,
85
- menu,
86
- nav,
87
- output,
88
- ruby,
89
- section,
90
- summary,
91
- time,
92
- mark,
93
- audio,
94
- video {
95
- /* http://meyerweb.com/eric/tools/css/reset/
96
- v2.0 | 20110126
97
- License: none (public domain)
98
- */
99
- border: 0;
100
- font: inherit;
101
- font-size: 100%;
102
- margin: 0;
103
- padding: 0;
104
- vertical-align: baseline;
105
- }
106
-
107
- article,
108
- aside,
109
- details,
110
- figcaption,
111
- figure,
112
- footer,
113
- header,
114
- hgroup,
115
- menu,
116
- nav,
117
- section {
118
- display: block;
119
- }
120
-
121
- html,
122
- body {
123
- margin: 0;
124
- min-height: 100vh;
125
- padding: 0;
126
- }
127
-
128
- body {
129
- color: #000000;
130
- font-family: Helvetica, Arial, Verdana, sans-serif;
131
- font-size: 16px;
132
- -webkit-font-smoothing: antialiased;
133
- -moz-osx-font-smoothing: grayscale;
134
- line-height: 1;
135
- width: 100vw;
136
- }
137
-
138
- hr,
139
- input,
140
- button,
141
- textarea,
142
- [role=reset],
143
- [role=submit],
144
- [role=button] {
145
- margin: 0;
146
- padding: 0;
147
- }
148
-
149
- ul,
150
- ol,
151
- li {
152
- list-style-type: none;
153
- }
154
-
155
- ol + ol,
156
- li + li {
157
- margin-top: 12px;
158
- }
159
-
160
- blockquote,
161
- q {
162
- quotes: none;
163
- }
164
-
165
- blockquote::before,
166
- blockquote::after,
167
- q::before,
168
- q::after {
169
- content: "";
170
- content: none;
171
- }
172
-
173
- a,
174
- button {
175
- cursor: pointer;
176
- }
177
-
178
- pre {
179
- white-space: pre-wrap;
180
- word-wrap: break-word;
181
- }
182
-
183
- p {
184
- white-space: initial;
185
- }
186
-
187
- button,
188
- [role=reset],
189
- [role=submit],
190
- [role=button] {
191
- background: transparent;
192
- border: 0;
193
- cursor: pointer;
194
- font-size: 1rem;
195
- overflow: hidden;
196
- text-align: center;
197
- text-decoration: none;
198
- text-overflow: ellipsis;
199
- user-select: none;
200
- white-space: nowrap;
201
- }
202
-
203
- .disabled,
204
- :disabled,
205
- :disabled:link,
206
- :disabled:visited,
207
- :disabled:hover,
208
- :disabled:active {
209
- box-shadow: inherit;
210
- cursor: default;
211
- cursor: not-allowed;
212
- pointer-events: none;
213
- text-shadow: inherit;
214
- }
215
-
216
- /*
217
- // @NOTE
218
- // a:hover DOIT venir après a:link et a:visited
219
- // a:active DOIT venir après un a:hover
220
- a:not(.is-underline),
221
- a:link:not(.is-underline),
222
- a:visited:not(.is-underline),
223
- a:hover:not(.is-underline),
224
- a:active:not(.is-underline) {
225
- text-decoration: none;
226
- }
227
- */
228
7
  /**
229
8
  * Ce fichier permet de transformer
230
9
  * Les fichiers de variables
@@ -236,6 +15,57 @@ a:active:not(.is-underline) {
236
15
  SOURCE: https://github.com/pierreburel/sass-rem
237
16
 
238
17
  ------------------------------------ */
18
+ :root {
19
+ --nappr-black: #000000;
20
+ --nappr-white: #ffffff;
21
+ --nappr-grey: #7f7f7f;
22
+ --nappr-blue: #0000ff;
23
+ --nappr-red: #ff0000;
24
+ --nappr-green: #00ff00;
25
+ --nappr-yellow: #f0f00f;
26
+ --nappr-magenta: #800080;
27
+ --nappr-orange: #ffa500;
28
+ --nappr-warning: #2b2925;
29
+ --nappr-success: #268744;
30
+ --nappr-info: #0762c8;
31
+ --nappr-error: #ff0000;
32
+ --nappr-g100: #f8f8f8;
33
+ --nappr-g200: #f0f0f0;
34
+ --nappr-g300: #e7e7e7;
35
+ --nappr-g400: #cecece;
36
+ --nappr-g500: #9c9c9c;
37
+ --nappr-g600: #6a6a6a;
38
+ --nappr-g700: #383838;
39
+ --nappr-g750: #2a2a2a;
40
+ --nappr-g800: #1e1e1e;
41
+ --nappr-pastel-blue: #5db0d7;
42
+ --nappr-pastel-yellow: #f9da9b;
43
+ --nappr-pastel-red: #db8c62;
44
+ --nappr-pastel-green: #42b983;
45
+ --nappr-pastel-purple: #9a7fd5;
46
+ --nappr-pastel-verde: #40d4c7;
47
+ --nappr-pastel-kaki: #b9c580;
48
+ --nappr-pastel-gold: #c7b654;
49
+ --nappr-chrome-red: #ff8080;
50
+ --nappr-chrome-yellow: #ffdd9e;
51
+ --nappr-chrome-black: #242424;
52
+ --nappr-chrome-grey: #333333;
53
+ --nappr-chrome-light: #525252;
54
+ --nappr-chrome-white: #e6e6e6;
55
+ --nappr-airbnb: #ff385c;
56
+ --nappr-amazon: #ff9900;
57
+ --nappr-twitch: #9147ff;
58
+ --nappr-youtube: #ff0000;
59
+ --nappr-twitter: #1da1f2;
60
+ --nappr-facebook: #365899;
61
+ --nappr-instagram: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
62
+ --nappr-breakpoints-xs: 320px;
63
+ --nappr-breakpoints-sm: 576px;
64
+ --nappr-breakpoints-md: 768px;
65
+ --nappr-breakpoints-lg: 1024px;
66
+ --nappr-breakpoints-xl: 1248px;
67
+ }
68
+
239
69
  .b1 {
240
70
  border-width: 1px;
241
71
  border-width: 0.0625rem;
@@ -322,55 +152,331 @@ SOURCE: https://github.com/pierreburel/sass-rem
322
152
  border-style: solid;
323
153
  }
324
154
 
325
- .bb2 {
326
- border-bottom-width: 2px;
327
- border-bottom-width: 0.125rem;
155
+ .bb2 {
156
+ border-bottom-width: 2px;
157
+ border-bottom-width: 0.125rem;
158
+ border-style: solid;
159
+ }
160
+
161
+ .b3 {
162
+ border-width: 3px;
163
+ border-width: 0.1875rem;
164
+ border-style: solid;
165
+ }
166
+
167
+ .by3 {
168
+ border-top-width: 3px;
169
+ border-top-width: 0.1875rem;
170
+ border-bottom-width: 3px;
171
+ border-bottom-width: 0.1875rem;
172
+ border-style: solid;
173
+ }
174
+
175
+ .bx3 {
176
+ border-left-width: 3px;
177
+ border-left-width: 0.1875rem;
178
+ border-right-width: 3px;
179
+ border-right-width: 0.1875rem;
180
+ border-style: solid;
181
+ }
182
+
183
+ .bt3 {
184
+ border-top-width: 3px;
185
+ border-top-width: 0.1875rem;
186
+ border-style: solid;
187
+ }
188
+
189
+ .bl3 {
190
+ border-left-width: 3px;
191
+ border-left-width: 0.1875rem;
192
+ border-style: solid;
193
+ }
194
+
195
+ .br3 {
196
+ border-right-width: 3px;
197
+ border-right-width: 0.1875rem;
198
+ border-style: solid;
199
+ }
200
+
201
+ .bb3 {
202
+ border-bottom-width: 3px;
203
+ border-bottom-width: 0.1875rem;
204
+ border-style: solid;
205
+ }
206
+
207
+ .b4 {
208
+ border-width: 4px;
209
+ border-width: 0.25rem;
210
+ border-style: solid;
211
+ }
212
+
213
+ .by4 {
214
+ border-top-width: 4px;
215
+ border-top-width: 0.25rem;
216
+ border-bottom-width: 4px;
217
+ border-bottom-width: 0.25rem;
218
+ border-style: solid;
219
+ }
220
+
221
+ .bx4 {
222
+ border-left-width: 4px;
223
+ border-left-width: 0.25rem;
224
+ border-right-width: 4px;
225
+ border-right-width: 0.25rem;
226
+ border-style: solid;
227
+ }
228
+
229
+ .bt4 {
230
+ border-top-width: 4px;
231
+ border-top-width: 0.25rem;
232
+ border-style: solid;
233
+ }
234
+
235
+ .bl4 {
236
+ border-left-width: 4px;
237
+ border-left-width: 0.25rem;
238
+ border-style: solid;
239
+ }
240
+
241
+ .br4 {
242
+ border-right-width: 4px;
243
+ border-right-width: 0.25rem;
244
+ border-style: solid;
245
+ }
246
+
247
+ .bb4 {
248
+ border-bottom-width: 4px;
249
+ border-bottom-width: 0.25rem;
250
+ border-style: solid;
251
+ }
252
+
253
+ .b5 {
254
+ border-width: 5px;
255
+ border-width: 0.3125rem;
256
+ border-style: solid;
257
+ }
258
+
259
+ .by5 {
260
+ border-top-width: 5px;
261
+ border-top-width: 0.3125rem;
262
+ border-bottom-width: 5px;
263
+ border-bottom-width: 0.3125rem;
264
+ border-style: solid;
265
+ }
266
+
267
+ .bx5 {
268
+ border-left-width: 5px;
269
+ border-left-width: 0.3125rem;
270
+ border-right-width: 5px;
271
+ border-right-width: 0.3125rem;
272
+ border-style: solid;
273
+ }
274
+
275
+ .bt5 {
276
+ border-top-width: 5px;
277
+ border-top-width: 0.3125rem;
278
+ border-style: solid;
279
+ }
280
+
281
+ .bl5 {
282
+ border-left-width: 5px;
283
+ border-left-width: 0.3125rem;
284
+ border-style: solid;
285
+ }
286
+
287
+ .br5 {
288
+ border-right-width: 5px;
289
+ border-right-width: 0.3125rem;
290
+ border-style: solid;
291
+ }
292
+
293
+ .bb5 {
294
+ border-bottom-width: 5px;
295
+ border-bottom-width: 0.3125rem;
296
+ border-style: solid;
297
+ }
298
+
299
+ .b6 {
300
+ border-width: 6px;
301
+ border-width: 0.375rem;
302
+ border-style: solid;
303
+ }
304
+
305
+ .by6 {
306
+ border-top-width: 6px;
307
+ border-top-width: 0.375rem;
308
+ border-bottom-width: 6px;
309
+ border-bottom-width: 0.375rem;
310
+ border-style: solid;
311
+ }
312
+
313
+ .bx6 {
314
+ border-left-width: 6px;
315
+ border-left-width: 0.375rem;
316
+ border-right-width: 6px;
317
+ border-right-width: 0.375rem;
318
+ border-style: solid;
319
+ }
320
+
321
+ .bt6 {
322
+ border-top-width: 6px;
323
+ border-top-width: 0.375rem;
324
+ border-style: solid;
325
+ }
326
+
327
+ .bl6 {
328
+ border-left-width: 6px;
329
+ border-left-width: 0.375rem;
330
+ border-style: solid;
331
+ }
332
+
333
+ .br6 {
334
+ border-right-width: 6px;
335
+ border-right-width: 0.375rem;
336
+ border-style: solid;
337
+ }
338
+
339
+ .bb6 {
340
+ border-bottom-width: 6px;
341
+ border-bottom-width: 0.375rem;
342
+ border-style: solid;
343
+ }
344
+
345
+ .b7 {
346
+ border-width: 7px;
347
+ border-width: 0.4375rem;
348
+ border-style: solid;
349
+ }
350
+
351
+ .by7 {
352
+ border-top-width: 7px;
353
+ border-top-width: 0.4375rem;
354
+ border-bottom-width: 7px;
355
+ border-bottom-width: 0.4375rem;
356
+ border-style: solid;
357
+ }
358
+
359
+ .bx7 {
360
+ border-left-width: 7px;
361
+ border-left-width: 0.4375rem;
362
+ border-right-width: 7px;
363
+ border-right-width: 0.4375rem;
364
+ border-style: solid;
365
+ }
366
+
367
+ .bt7 {
368
+ border-top-width: 7px;
369
+ border-top-width: 0.4375rem;
370
+ border-style: solid;
371
+ }
372
+
373
+ .bl7 {
374
+ border-left-width: 7px;
375
+ border-left-width: 0.4375rem;
376
+ border-style: solid;
377
+ }
378
+
379
+ .br7 {
380
+ border-right-width: 7px;
381
+ border-right-width: 0.4375rem;
382
+ border-style: solid;
383
+ }
384
+
385
+ .bb7 {
386
+ border-bottom-width: 7px;
387
+ border-bottom-width: 0.4375rem;
388
+ border-style: solid;
389
+ }
390
+
391
+ .b8 {
392
+ border-width: 8px;
393
+ border-width: 0.5rem;
394
+ border-style: solid;
395
+ }
396
+
397
+ .by8 {
398
+ border-top-width: 8px;
399
+ border-top-width: 0.5rem;
400
+ border-bottom-width: 8px;
401
+ border-bottom-width: 0.5rem;
402
+ border-style: solid;
403
+ }
404
+
405
+ .bx8 {
406
+ border-left-width: 8px;
407
+ border-left-width: 0.5rem;
408
+ border-right-width: 8px;
409
+ border-right-width: 0.5rem;
410
+ border-style: solid;
411
+ }
412
+
413
+ .bt8 {
414
+ border-top-width: 8px;
415
+ border-top-width: 0.5rem;
416
+ border-style: solid;
417
+ }
418
+
419
+ .bl8 {
420
+ border-left-width: 8px;
421
+ border-left-width: 0.5rem;
422
+ border-style: solid;
423
+ }
424
+
425
+ .br8 {
426
+ border-right-width: 8px;
427
+ border-right-width: 0.5rem;
428
+ border-style: solid;
429
+ }
430
+
431
+ .bb8 {
432
+ border-bottom-width: 8px;
433
+ border-bottom-width: 0.5rem;
328
434
  border-style: solid;
329
435
  }
330
436
 
331
- .b3 {
332
- border-width: 3px;
333
- border-width: 0.1875rem;
437
+ .b10 {
438
+ border-width: 10px;
439
+ border-width: 0.625rem;
334
440
  border-style: solid;
335
441
  }
336
442
 
337
- .by3 {
338
- border-top-width: 3px;
339
- border-top-width: 0.1875rem;
340
- border-bottom-width: 3px;
341
- border-bottom-width: 0.1875rem;
443
+ .by10 {
444
+ border-top-width: 10px;
445
+ border-top-width: 0.625rem;
446
+ border-bottom-width: 10px;
447
+ border-bottom-width: 0.625rem;
342
448
  border-style: solid;
343
449
  }
344
450
 
345
- .bx3 {
346
- border-left-width: 3px;
347
- border-left-width: 0.1875rem;
348
- border-right-width: 3px;
349
- border-right-width: 0.1875rem;
451
+ .bx10 {
452
+ border-left-width: 10px;
453
+ border-left-width: 0.625rem;
454
+ border-right-width: 10px;
455
+ border-right-width: 0.625rem;
350
456
  border-style: solid;
351
457
  }
352
458
 
353
- .bt3 {
354
- border-top-width: 3px;
355
- border-top-width: 0.1875rem;
459
+ .bt10 {
460
+ border-top-width: 10px;
461
+ border-top-width: 0.625rem;
356
462
  border-style: solid;
357
463
  }
358
464
 
359
- .bl3 {
360
- border-left-width: 3px;
361
- border-left-width: 0.1875rem;
465
+ .bl10 {
466
+ border-left-width: 10px;
467
+ border-left-width: 0.625rem;
362
468
  border-style: solid;
363
469
  }
364
470
 
365
- .br3 {
366
- border-right-width: 3px;
367
- border-right-width: 0.1875rem;
471
+ .br10 {
472
+ border-right-width: 10px;
473
+ border-right-width: 0.625rem;
368
474
  border-style: solid;
369
475
  }
370
476
 
371
- .bb3 {
372
- border-bottom-width: 3px;
373
- border-bottom-width: 0.1875rem;
477
+ .bb10 {
478
+ border-bottom-width: 10px;
479
+ border-bottom-width: 0.625rem;
374
480
  border-style: solid;
375
481
  }
376
482
 
@@ -1710,11 +1816,11 @@ SOURCE: https://github.com/pierreburel/sass-rem
1710
1816
  }
1711
1817
 
1712
1818
  .is-grey {
1713
- color: #dddddd;
1819
+ color: #7f7f7f;
1714
1820
  }
1715
1821
 
1716
1822
  .bg-grey {
1717
- background-color: #dddddd;
1823
+ background-color: #7f7f7f;
1718
1824
  }
1719
1825
 
1720
1826
  .is-blue {
@@ -1749,11 +1855,11 @@ SOURCE: https://github.com/pierreburel/sass-rem
1749
1855
  background-color: #f0f00f;
1750
1856
  }
1751
1857
 
1752
- .is-purple {
1858
+ .is-magenta {
1753
1859
  color: #800080;
1754
1860
  }
1755
1861
 
1756
- .bg-purple {
1862
+ .bg-magenta {
1757
1863
  background-color: #800080;
1758
1864
  }
1759
1865
 
@@ -1766,11 +1872,11 @@ SOURCE: https://github.com/pierreburel/sass-rem
1766
1872
  }
1767
1873
 
1768
1874
  .is-warning {
1769
- color: #ffb344;
1875
+ color: #2b2925;
1770
1876
  }
1771
1877
 
1772
1878
  .bg-warning {
1773
- background-color: #ffb344;
1879
+ background-color: #2b2925;
1774
1880
  }
1775
1881
 
1776
1882
  .is-success {
@@ -2037,6 +2143,227 @@ SOURCE: https://github.com/pierreburel/sass-rem
2037
2143
  background-color: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
2038
2144
  }
2039
2145
 
2146
+ * {
2147
+ box-sizing: border-box;
2148
+ margin: 0;
2149
+ -webkit-overflow-scrolling: touch;
2150
+ padding: 0;
2151
+ }
2152
+
2153
+ html,
2154
+ body,
2155
+ div,
2156
+ span,
2157
+ applet,
2158
+ object,
2159
+ iframe,
2160
+ h1,
2161
+ h2,
2162
+ h3,
2163
+ h4,
2164
+ h5,
2165
+ h6,
2166
+ p,
2167
+ blockquote,
2168
+ pre,
2169
+ a,
2170
+ abbr,
2171
+ acronym,
2172
+ address,
2173
+ big,
2174
+ cite,
2175
+ code,
2176
+ del,
2177
+ dfn,
2178
+ em,
2179
+ img,
2180
+ ins,
2181
+ kbd,
2182
+ q,
2183
+ s,
2184
+ samp,
2185
+ small,
2186
+ strike,
2187
+ strong,
2188
+ sub,
2189
+ sup,
2190
+ tt,
2191
+ var,
2192
+ b,
2193
+ u,
2194
+ i,
2195
+ center,
2196
+ dl,
2197
+ dt,
2198
+ dd,
2199
+ ol,
2200
+ ul,
2201
+ li,
2202
+ fieldset,
2203
+ form,
2204
+ label,
2205
+ legend,
2206
+ table,
2207
+ caption,
2208
+ tbody,
2209
+ tfoot,
2210
+ thead,
2211
+ tr,
2212
+ th,
2213
+ td,
2214
+ article,
2215
+ aside,
2216
+ canvas,
2217
+ details,
2218
+ embed,
2219
+ figure,
2220
+ figcaption,
2221
+ footer,
2222
+ header,
2223
+ hgroup,
2224
+ menu,
2225
+ nav,
2226
+ output,
2227
+ ruby,
2228
+ section,
2229
+ summary,
2230
+ time,
2231
+ mark,
2232
+ audio,
2233
+ video {
2234
+ /* http://meyerweb.com/eric/tools/css/reset/
2235
+ v2.0 | 20110126
2236
+ License: none (public domain)
2237
+ */
2238
+ border: 0;
2239
+ font: inherit;
2240
+ font-size: 100%;
2241
+ margin: 0;
2242
+ padding: 0;
2243
+ vertical-align: baseline;
2244
+ }
2245
+
2246
+ article,
2247
+ aside,
2248
+ details,
2249
+ figcaption,
2250
+ figure,
2251
+ footer,
2252
+ header,
2253
+ hgroup,
2254
+ menu,
2255
+ nav,
2256
+ section {
2257
+ display: block;
2258
+ }
2259
+
2260
+ html,
2261
+ body {
2262
+ margin: 0;
2263
+ min-height: 100vh;
2264
+ padding: 0;
2265
+ }
2266
+
2267
+ body {
2268
+ color: #000000;
2269
+ font-family: Helvetica, Arial, Verdana, sans-serif;
2270
+ font-size: 16px;
2271
+ -webkit-font-smoothing: antialiased;
2272
+ -moz-osx-font-smoothing: grayscale;
2273
+ line-height: 1;
2274
+ width: 100vw;
2275
+ }
2276
+
2277
+ hr,
2278
+ input,
2279
+ button,
2280
+ textarea,
2281
+ [role=reset],
2282
+ [role=submit],
2283
+ [role=button] {
2284
+ margin: 0;
2285
+ padding: 0;
2286
+ }
2287
+
2288
+ ul,
2289
+ ol,
2290
+ li {
2291
+ list-style-type: none;
2292
+ }
2293
+
2294
+ ol + ol,
2295
+ li + li {
2296
+ margin-top: 12px;
2297
+ }
2298
+
2299
+ blockquote,
2300
+ q {
2301
+ quotes: none;
2302
+ }
2303
+
2304
+ blockquote::before,
2305
+ blockquote::after,
2306
+ q::before,
2307
+ q::after {
2308
+ content: "";
2309
+ content: none;
2310
+ }
2311
+
2312
+ a,
2313
+ button {
2314
+ cursor: pointer;
2315
+ }
2316
+
2317
+ pre {
2318
+ white-space: pre-wrap;
2319
+ word-wrap: break-word;
2320
+ }
2321
+
2322
+ p {
2323
+ white-space: initial;
2324
+ }
2325
+
2326
+ button,
2327
+ [role=reset],
2328
+ [role=submit],
2329
+ [role=button] {
2330
+ background: transparent;
2331
+ border: 0;
2332
+ cursor: pointer;
2333
+ font-size: 1rem;
2334
+ overflow: hidden;
2335
+ text-align: center;
2336
+ text-decoration: none;
2337
+ text-overflow: ellipsis;
2338
+ user-select: none;
2339
+ white-space: nowrap;
2340
+ }
2341
+
2342
+ .disabled,
2343
+ :disabled,
2344
+ :disabled:link,
2345
+ :disabled:visited,
2346
+ :disabled:hover,
2347
+ :disabled:active {
2348
+ box-shadow: inherit;
2349
+ cursor: default;
2350
+ cursor: not-allowed;
2351
+ pointer-events: none;
2352
+ text-shadow: inherit;
2353
+ }
2354
+
2355
+ /*
2356
+ // @NOTE
2357
+ // a:hover DOIT venir après a:link et a:visited
2358
+ // a:active DOIT venir après un a:hover
2359
+ a:not(.is-underline),
2360
+ a:link:not(.is-underline),
2361
+ a:visited:not(.is-underline),
2362
+ a:hover:not(.is-underline),
2363
+ a:active:not(.is-underline) {
2364
+ text-decoration: none;
2365
+ }
2366
+ */
2040
2367
  /* -------------------------------------------------
2041
2368
 
2042
2369
  NEGATES
@@ -2539,6 +2866,18 @@ a.no-no-underline:visited {
2539
2866
  align-items: flex-end;
2540
2867
  }
2541
2868
 
2869
+ .self-start {
2870
+ align-self: flex-start;
2871
+ }
2872
+
2873
+ .self-end {
2874
+ align-self: flex-end;
2875
+ }
2876
+
2877
+ .self-center {
2878
+ align-self: center;
2879
+ }
2880
+
2542
2881
  .clearfix {
2543
2882
  *zoom: 1;
2544
2883
  }