-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocs.html
More file actions
1601 lines (1557 loc) · 69.6 KB
/
docs.html
File metadata and controls
1601 lines (1557 loc) · 69.6 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Essential META Tags -->
<meta property="og:title" content="TINT CSS Framework | TINT Is Not Tailwind">
<meta property="og:description"
content="TINT CSS Framework is a utility-first css-framework | TINT CSS Framework | TINT Is Not Tailwind">
<meta property="og:image" content="https://emsad87.github.io/css-framework/css-framework.png">
<meta property="og:url" content="https://emsad87.github.io/css-framework/">
<meta name="twitter:card" content="summary_large_image">
<meta name="author" content="Emsad Ahmetašević">
<!-- Non-Essential, But Recommended -->
<meta property="og:site_name" content="TINT CSS Framework | TINT Is Not Tailwind">
<meta name="twitter:image:alt" content="TINT CSS Framework | TINT Is Not Tailwind">
<title>TINT CSS Framework | TINT Is Not Tailwind</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body class="c-white fsize-120 overX-hidden">
<nav class="fixed w-100 z-99 p-15-y no-deco bg-steel shadow-sharp">
<div class="container-fluid j-center md-j-between a-center">
<div class="row j-between a-center w-80 sm-text-center">
<div class="navbar__toggle" id="js-navbar-toggle"></div>
<a class="col-md-4 col-12 fsize-150" href="#home">TINT.css</a>
<ul class="col-md-4 col-12 none md-flex md-f-row f-col a-center gap-15 list-none" id="js-menu">
<li>
<a href="./index.html" class="navbar__link">Home</a>
</li>
<li>
<a href="./docs.html" class="navbar__link">Docs</a>
</li>
<li>
<a href="./examples.html" class="navbar__link">Examples</a>
</li>
<li>
<a href="https://github.com/emsad87/css-framework"
class="btn btn-secondary flex center gap-15 m-auto r-5 shadow-sharp">
<svg style="fill: currentColor;" width="32px" height="32px" viewBox="0 0 32 32"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M 16 4 C 9.371094 4 4 9.371094 4 16 C 4 21.300781 7.4375 25.800781 12.207031 27.386719 C 12.808594 27.496094 13.027344 27.128906 13.027344 26.808594 C 13.027344 26.523438 13.015625 25.769531 13.011719 24.769531 C 9.671875 25.492188 8.96875 23.160156 8.96875 23.160156 C 8.421875 21.773438 7.636719 21.402344 7.636719 21.402344 C 6.546875 20.660156 7.71875 20.675781 7.71875 20.675781 C 8.921875 20.761719 9.554688 21.910156 9.554688 21.910156 C 10.625 23.746094 12.363281 23.214844 13.046875 22.910156 C 13.15625 22.132813 13.46875 21.605469 13.808594 21.304688 C 11.144531 21.003906 8.34375 19.972656 8.34375 15.375 C 8.34375 14.0625 8.8125 12.992188 9.578125 12.152344 C 9.457031 11.851563 9.042969 10.628906 9.695313 8.976563 C 9.695313 8.976563 10.703125 8.65625 12.996094 10.207031 C 13.953125 9.941406 14.980469 9.808594 16 9.804688 C 17.019531 9.808594 18.046875 9.941406 19.003906 10.207031 C 21.296875 8.65625 22.300781 8.976563 22.300781 8.976563 C 22.957031 10.628906 22.546875 11.851563 22.421875 12.152344 C 23.191406 12.992188 23.652344 14.0625 23.652344 15.375 C 23.652344 19.984375 20.847656 20.996094 18.175781 21.296875 C 18.605469 21.664063 18.988281 22.398438 18.988281 23.515625 C 18.988281 25.121094 18.976563 26.414063 18.976563 26.808594 C 18.976563 27.128906 19.191406 27.503906 19.800781 27.386719 C 24.566406 25.796875 28 21.300781 28 16 C 28 9.371094 22.628906 4 16 4 Z" />
</svg>
Github
</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container-fluid vh-50 center p-35-y shadow-sharp">
<div class="hero__bg"><img src="https://source.unsplash.com/collection/53285157" alt=""></div>
<section class="row center w-80">
<article class="col-12 col-sm-6">
<h1 class="sm-fsize-140">TINT Documentation</h1>
</article>
</section>
</div>
<main class="flex f-col a-center gap-50 p-50-y bg-steel shadow-sharp shadow-sharp">
<section class="w-80">
<h2>Getting started</h2>
<p>
To use TINT CSS Framework download the css file from
<a class="c-white" href="https://github.com/emsad87/css-framework">github</a> and refer to it in the
head element of your html file.
</p>
<textarea name="code" class="code bg-night">
<head>
<link rel="stylesheet" href="./css/style.css">
</head>
</textarea>
</section>
<section class="w-80">
<h2>How to use it</h2>
<p>
Just add utility classes to your html element.
</p>
<p>
Like in this example
</p>
<p class="fsize-80">
( Here we add "position: absolute; width: 90%; padding: 15px; background-color: indigo; color: red;
background-color: black; padding: 10px; color: white;" )
</p>
Code:
<textarea name="code" class="code bg-night">
<div class="relative w-90 m-auto p-15 bg-indigo">
<h2 class="c-red">Title</h2>
<p class="bg-night p-10 c-white">Text text text...</p>
</div>
</textarea>
Result:
<div class="relative w-100 h-100 p-15 r-5 bg-info">
<div class="relative w-90 m-auto p-15 bg-indigo">
<h2 class="c-red">Title</h2>
<p class="bg-night p-10 c-white">Text text text...</p>
</div>
</div>
</section>
<section class="w-80">
<h2>Positioning</h2>
<article class="m-15-bottom p-15 bg-secondary r-5 shadow-sharp over-auto">
<table class="fsize-90">
<h3>Position</h3>
<tr>
<th>TINT Class</th>
<th>CSS Property and value</th>
</tr>
<tr>
<td>relative</td>
<td>position: relative</td>
</tr>
<tr>
<td>absolute</td>
<td>position: absolute</td>
</tr>
<tr>
<td>fixed</td>
<td>position: fixed</td>
</tr>
<tr>
<td>sticky</td>
<td>position: sticky</td>
</tr>
</table>
<p>
Example use of position classes
</p>
<p class="fsize-80">
( Here we add "position: absolute;")
</p>
Code:
<textarea name="code" class="code bg-night">
<div class="absolute ...">
<p>Absolute element</p>
</div>
</textarea>
Result:
<div class="relative p-100 w-100 h-100 r-5 bg-info">
<div class="absolute bottom-10 left-10 bg-indigo p-15 r-5">
<p class="m-0">Absolute element</p>
</div>
</div>
</article>
<article class="m-15-bottom p-15 bg-secondary r-5 shadow-sharp over-auto">
<table class="fsize-90">
<h3>Top - Right - Bottom - Left</h3>
<tr>
<th>TINT Class</th>
<th>CSS Property and value</th>
<th>Range</th>
</tr>
<tr>
<td>top-0</td>
<td>top: 0%</td>
<td>from 0% to 50% ( top-0, top-2, top-3, ... , top-50 )</td>
</tr>
<tr>
<td>right-0</td>
<td>right: 0%</td>
<td>from 0% to 50% ( right-0, right-2, right-3, ... , right-50 )</td>
</tr>
<tr>
<td>bottom-0</td>
<td>bottom: 0%</td>
<td>from 0% to 50% ( bottom-0, bottom-2, bottom-3, ... , bottom-50 )</td>
</tr>
<tr>
<td>left-0</td>
<td>left: 0%</td>
<td>from 0% to 50% ( left-0, left-2, left-3, ... , left-50 )</td>
</tr>
<tr>
<td>absolute-center</td>
<td>
<ul class="list-none list-nop">
<li>position: absolute;</li>
<li>top: 50%;</li>
<li>left: 50%;</li>
<li>transform: translate(-50%,
-50%);</li>
</ul>
</td>
</tr>
</table>
<p>
Example use of Top - Right - Bottom - Left classes
</p>
<p class="fsize-80">
( Here we add "position: absolute; top: 20%; left: 30%;")
</p>
Code:
<textarea name="code" class="code bg-night">
<div class="absolute top-20 left-30 ...">
<p>Absolute element</p>
</div>
</textarea>
Result:
<div class="relative p-100 w-100 h-100 r-5 bg-info">
<div class="absolute top-20 left-30 bg-indigo p-15 r-5">
<p class="m-0">Absolute element</p>
</div>
</div>
</article>
<article class="m-15-bottom p-15 bg-secondary r-5 shadow-sharp over-auto">
<table class="fsize-90">
<h3>z-index</h3>
<tr>
<th>TINT Class</th>
<th>CSS Property and value</th>
<th>Range</th>
</tr>
<tr>
<td>z-0</td>
<td>z-index: 0</td>
<td>From -1 to 99 ( z--1, z-0, z-1, ... , z-99 )</td>
</tr>
</table>
<p>
Example use of z-index classes
</p>
<p class="fsize-80">
( Here we add "z-index: 3, z-index: 2, z-index: 1")
</p>
Code:
<textarea name="code" class="code bg-night">
<div class="z-3 ...">
<p>3</p>
</div>
<div class="z-2 ...">
<p>2</p>
</div>
<div class="z-1 ...">
<p>1</p>
</div>
</textarea>
Result:
<div class="relative p-100 w-100 h-100 r-5 bg-info">
<div class="absolute top-50 left-45 z-3 inline-block bg-indigo p-25 r-5">
<p class="m-0">3</p>
</div>
<div class="absolute top-25 left-43 z-2 inline-block bg-blue p-25 r-5">
<p class="m-0">2</p>
</div>
<div class="absolute top-7 left-50 z-1 inline-block bg-magenta p-25 r-5">
<p class="m-0">1</p>
</div>
</div>
</article>
</section>
<section class="w-80">
<h2>Display</h2>
<article class="m-15-bottom p-15 bg-secondary r-5 shadow-sharp over-auto">
<table class="fsize-90">
<tr>
<th>TINT Class</th>
<th>CSS Property and value</th>
</tr>
<tr>
<td>none</td>
<td>display: none</td>
</tr>
<tr>
<td>inline</td>
<td>display: inline</td>
</tr>
<tr>
<td>block</td>
<td>display: block</td>
</tr>
<tr>
<td>inline-block</td>
<td>display: inline-block</td>
</tr>
<tr>
<td>flex</td>
<td>display: flex</td>
</tr>
<tr>
<td>grid</td>
<td>display: grid</td>
</tr>
</table>
<p>
Example use of display classes
</p>
<p class="fsize-80">
( Here we add "display: inline-block")
</p>
Code:
<textarea name="code" class="code bg-night">
<div class="inline-block ...">
<p>1</p>
</div>
<div class="inline-block ...">
<p>2</p>
</div>
</textarea>
Result:
<div class="relative p-15 w-100 vh-10 r-5 bg-info">
<div class="inline-block bg-indigo p-15 r-5">
<p class="m-0">1</p>
</div>
<div class="inline-block bg-blue p-15 r-5">
<p class="m-0">2</p>
</div>
</div>
</article>
</section>
<section class="w-80">
<h2>Width & Height</h2>
<article class="m-15-bottom p-15 bg-secondary r-5 shadow-sharp over-auto">
<table class="fsize-90">
<tr>
<th>TINT Class</th>
<th>CSS Property and value</th>
<th>Range</th>
</tr>
<tr>
<td>w-1</td>
<td>width: 1%</td>
<td>from 1% to 100% ( w-1, w-2, w-3, ... , w-100 )</td>
</tr>
<tr>
<td>h-1</td>
<td>height: 1%</td>
<td>from 1% to 100%( h-1, h-2, h-3, ... , h-100 )</td>
</tr>
<tr>
<td>vw-1</td>
<td>width: 1vw</td>
<td>from 1vw to 100vw( vw-1, vw-2, vw-3, ... , vw-100 )</td>
</tr>
<tr>
<td>vh-1</td>
<td>min-height: 1vh</td>
<td>from 1vh to 100vh( vh-1, vh-2, vh-3, ... , vh-100 )</td>
</tr>
<tr>
<td>full</td>
<td>
<ul class="list-none list-nop">
<li>width: 100%;</li>
<li>height: 100vh;</li>
</ul>
</td>
<td>from 1vh to 100vh( vh-1, vh-2, vh-3, ... , vh-100 )</td>
</tr>
</table>
<p>
Example use of width & height classes
</p>
<p class="fsize-80">
( Here we add "width: 90%; min-height: 10vh;")
</p>
Code:
<textarea name="code" class="code bg-night">
<div class="w-90 vh-10 ...">
<h2>Title</h2>
<p>Text...</p>
</div>
</textarea>
Result:
<div class="relative p-15 w-100 vh-10 r-5 bg-info">
<div class="w-90 vh-10 bg-indigo p-15 r-5">
<h2>Title</h2>
<p class="m-0">Text...</p>
</div>
</div>
</article>
</section>
<section class="w-80">
<h2>Margin & Padding</h2>
<article class="m-15-bottom p-15 bg-secondary r-5 shadow-sharp over-auto">
<h3>Margin</h3>
<table class="fsize-90">
<tr>
<th>TINT Class</th>
<th>CSS Property and value</th>
<th>Range</th>
</tr>
<tr>
<td>m-1</td>
<td>margin: 1px</td>
<td>from 1px to 100px ( m-1, m-2, m-3, ... , m-100 )</td>
</tr>
<tr>
<td>m-1-top</td>
<td>margin: 1px 0 0 0</td>
<td>from 1px to 100px ( m-1-top, m-2-top, m-3-top, ... , m-100-top )</td>
</tr>
<tr>
<td>m-1-right</td>
<td>margin: 0 1px 0 0</td>
<td>from 1px to 100px ( m-1-right, m-2-right, m-3-right, ... , m-100-right )</td>
</tr>
<tr>
<td>m-1-bottom</td>
<td>margin: 0 0 1px 0</td>
<td>from 1px to 100px ( m-1-bottom, m-2-bottom, m-3-bottom, ... , m-100-bottom )</td>
</tr>
<tr>
<td>m-1-left</td>
<td>margin: 0 0 0 1px</td>
<td>from 1px to 100px ( m-1-left, m-2-left, m-3-left, ... , m-100-left )</td>
</tr>
<tr>
<td>m-1-x</td>
<td>margin: 0 1px</td>
<td>from 1px to 100px ( m-1-x, m-2-x, m-3-x, ... , m-100-x )</td>
</tr>
<tr>
<td>m-1-y</td>
<td>margin: 1px 0</td>
<td>from 1px to 100px ( m-1-y, m-2-y, m-3-y, ... , m-100-y )</td>
</tr>
<tr>
<td>m-auto</td>
<td>margin: 0 auto</td>
<td></td>
</tr>
</table>
<h3>Padding</h3>
<table class="fsize-90">
<tr>
<th>TINT Class</th>
<th>CSS Property and value</th>
<th>Range</th>
</tr>
<tr>
<td>p-1</td>
<td>padding: 1px</td>
<td>from 1px to 100px ( p-1, p-2, p-3, ... , p-100 )</td>
</tr>
<tr>
<td>p-1-top</td>
<td>padding: 1px 0 0 0</td>
<td>from 1px to 100px ( p-1-top, p-2-top, p-3-top, ... , p-100-top )</td>
</tr>
<tr>
<td>p-1-right</td>
<td>padding: 0 1px 0 0</td>
<td>from 1px to 100px ( p-1-right, p-2-right, p-3-right, ... , p-100-right )</td>
</tr>
<tr>
<td>p-1-bottom</td>
<td>padding: 0 0 1px 0</td>
<td>from 1px to 100px ( p-1-bottom, p-2-bottom, p-3-bottom, ... , p-100-bottom )</td>
</tr>
<tr>
<td>p-1-left</td>
<td>padding: 0 0 0 1px</td>
<td>from 1px to 100px ( p-1-left, p-2-left, p-3-left, ... , p-100-left )</td>
</tr>
<tr>
<td>p-1-x</td>
<td>padding: 0 1px</td>
<td>from 1px to 100px ( p-1-x, p-2-x, p-3-x, ... , p-100-x )</td>
</tr>
<tr>
<td>p-1-y</td>
<td>padding: 1px 0</td>
<td>from 1px to 100px ( p-1-y, p-2-y, p-3-y, ... , p-100-y )</td>
</tr>
</table>
<p>
Example use of width & height classes
</p>
<p class="fsize-80">
( Here we add "margin: 0 auto; padding: 15px;")
</p>
Code:
<textarea name="code" class="code bg-night">
<div class="m-auto p-15 ...">
<h2>Title</h2>
<p>Text...</p>
</div>
</textarea>
Result:
<div class="relative p-15 w-100 vh-10 r-5 bg-info">
<div class="w-90 vh-10 bg-indigo m-auto p-15 r-5">
<h2>Title</h2>
<p class="m-0">Text...</p>
</div>
</div>
</article>
</section>
<section class="w-80">
<h2>Typography</h2>
<article class="m-15-bottom p-15 bg-secondary r-5 shadow-sharp over-auto">
<h3>Font size</h3>
<table class="fsize-90">
<tr>
<th>TINT Class</th>
<th>CSS Property and value</th>
<th>Range</th>
</tr>
<tr>
<td>fsize-1</td>
<td>font-size: 1%;</td>
<td>from 1% to 1000% ( fsize-1, fsize-2, fsize-3, ... , fsize-1000 )</td>
</tr>
<tr>
<td>sm-fsize-1</td>
<td>
<ul class="list-none list-nop">
<li>@media screen and (max-width: 576px) {</li>
<li> .sm-fsize-1 {</li>
<li> font-size: 1%;</li>
<li>}</li>
</ul>
</td>
<td>from 1% to 1000% ( sm-fsize-1, sm-fsize-2, ... , sm-fsize-1000 )</td>
</tr>
</table>
<h3>Color</h3>
<table class="fsize-90">
<tr>
<th>TINT Class</th>
<th>CSS Property and value</th>
<th>Range</th>
</tr>
<tr>
<td>c-cc</td>
<td>color: currentColor;</td>
<td></td>
</tr>
<tr>
<td>c-black</td>
<td>color: #000000;</td>
<td>
<ul class="list-none list-nop">
<li>c-black : #000000</li>
<li>c-white : #ffffff</li>
<li>c-indigo : #4b0082</li>
<li>c-purple : #8e35ef</li>
<li>c-pearl : #fdeef4</li>
<li>c-crimson : #e238ec</li>
<li>c-magenta : #ff00ff</li>
<li>c-red : #ff0000</li>
<li>c-wood : #966f33</li>
<li>c-orange : #f88017</li>
<li>c-blue : #0000ff</li>
<li>c-green : #00ff00</li>
<li>c-yellow : #ffff00</li>
<li>c-steel : #4863a0</li>
<li>c-night : #0c090a</li>
<li>c-primary : #626ed4</li>
<li>c-secondary : #343549</li>
<li>c-success : #2aa39a</li>
<li>c-danger : #ec4561</li>
<li>c-warning : #f8b425</li>
<li>c-info : #38a5f8</li>
<li>c-light : #f8f8fa</li>
<li>c-dark : #575c62</li>
<li>c-muted : #edecf1</li>
</ul>
</td>
</tr>
</table>
<h3>Text aling</h3>
<table class="fsize-90">
<tr>
<th>TINT Class</th>
<th>CSS Property and value</th>
</tr>
<tr>
<td>text-center</td>
<td>text-align: center;</td>
</tr>
<tr>
<td>sm-text-center</td>
<td>
<ul class="list-none list-nop">
<li>@media screen and (max-width: 576px) {</li>
<li> text-align: center;</li>
<li>}</li>
</ul>
</td>
</tr>
<tr>
<td>text-left</td>
<td>text-align: left;</td>
</tr>
<tr>
<td>sm-text-left</td>
<td>
<ul class="list-none list-nop">
<li>@media screen and (max-width: 576px) {</li>
<li> text-align: left;</li>
<li>}</li>
</ul>
</td>
</tr>
<tr>
<td>text-right</td>
<td>text-align: right;</td>
</tr>
<tr>
<td>sm-text-right</td>
<td>
<ul class="list-none list-nop">
<li>@media screen and (max-width: 576px) {</li>
<li> text-align: right;</li>
<li>}</li>
</ul>
</td>
</tr>
</table>
<h3>List</h3>
<table class="fsize-90">
<tr>
<th>TINT Class</th>
<th>CSS Property and value</th>
<th>Range</th>
</tr>
<tr>
<td>list-none</td>
<td>list-style: none;</td>
<td>
<ul class="list-none list-nop">
<li>none : none</li>
<li>square : square</li>
<li>circle : circle</li>
<li>disc : disc</li>
<li>decimal : decimal</li>
<li>georgian : georgian</li>
</ul>
</td>
</tr>
</table>
<h3>Anchor</h3>
<table class="fsize-90">
<tr>
<th>TINT Class</th>
<th>CSS Property and value</th>
</tr>
<tr>
<td>no-deco</td>
<td>
<ul class="list-none list-nop">
<li>.no-deco a {</li>
<li> text-decoration: none;</li>
<li> color: currentColor;</li>
<li>}</li>
</ul>
</td>
</tr>
<tr>
<th>TINT Class</th>
<th>CSS Property and value</th>
</tr>
<tr>
<td>a-no-deco</td>
<td>
<ul class="list-none list-nop">
<li> text-decoration: none;</li>
<li> color: currentColor;</li>
</ul>
</td>
</tr>
</table>
<p>
Example use of Typography classes
</p>
<p class="fsize-80">
( Here we add "list-style: none; font-size: 120%; font-size: 80%; color: #ff00ff; color: #ff0000;
text-center")
</p>
Code:
<textarea name="code" class="code bg-night">
<ul class="list-none">
<li class="fsize-120 sm-fsize-80 c-magenta">List item1</li>
<li class="c-red">List item2</li>
</ul>
</textarea>
Result:
<div class="relative p-15 w-100 vh-10 r-5 bg-info">
<div class="bg-indigo m-auto p-15 r-5">
<ul class="list-none">
<li class="fsize-120 sm-fsize-80 c-magenta">List item1</li>
<li class="c-red">List item2</li>
</ul>
</div>
</div>
</article>
</section>
<section class="w-80">
<h2>Visual</h2>
<article class="m-15-bottom p-15 bg-secondary r-5 shadow-sharp over-auto">
<h3>Background</h3>
<table class="fsize-90">
<tr>
<th>TINT Class</th>
<th>CSS Property and value</th>
<th>Range</th>
</tr>
<tr>
<td>bg-black</td>
<td>background-color: #000000;</td>
<td>
<ul class="list-none list-nop">
<li>bg-black : #000000</li>
<li>bg-white : #ffffff</li>
<li>bg-indigo : #4b0082</li>
<li>bg-purple : #8e35ef</li>
<li>bg-pearl : #fdeef4</li>
<li>bg-crimson : #e238ec</li>
<li>bg-magenta : #ff00ff</li>
<li>bg-red : #ff0000</li>
<li>bg-wood : #966f33</li>
<li>bg-orange : #f88017</li>
<li>bg-blue : #0000ff</li>
<li>bg-green : #00ff00</li>
<li>bg-yellow : #ffff00</li>
<li>bg-steel : #4863a0</li>
<li>bg-night : #0c090a</li>
<li>bg-primary : #626ed4</li>
<li>bg-secondary : #343549</li>
<li>bg-success : #2aa39a</li>
<li>bg-danger : #ec4561</li>
<li>bg-warning : #f8b425</li>
<li>bg-info : #38a5f8</li>
<li>bg-light : #f8f8fa</li>
<li>bg-dark : #575c62</li>
<li>bg-muted : #edecf1</li>
</ul>
</td>
</tr>
</table>
<h3>Border</h3>
<table class="fsize-90">
<tr>
<th>TINT Class</th>
<th>CSS Property and value</th>
<th>Range</th>
</tr>
<tr>
<td>b-1</td>
<td>border: 1px solid currentColor;</td>
<td>from 1px to 20px ( b-1, b-2, b-3, ... , b-20 )</td>
</tr>
<tr>
<td>b-1-top</td>
<td>
<ul class="list-none list-nop">
<li>border-style: solid;</li>
<li>border-width: 1px 0 0 0;</li>
<li>border-color: currentColor;</li>
</ul>
</td>
<td>from 1px to 20px ( b-1-top, b-2-top, ... , b-20-top )</td>
</tr>
<tr>
<td>b-1-right</td>
<td>
<ul class="list-none list-nop">
<li>border-style: solid;</li>
<li>border-width: 0 1px 0 0;</li>
<li>border-color: currentColor;</li>
</ul>
</td>
<td>from 1px to 20px ( b-1-right, b-2-right, ... , b-20-right )</td>
</tr>
<tr>
<td>b-1-bottom</td>
<td>
<ul class="list-none list-nop">
<li>border-style: solid;</li>
<li>border-width: 0 0 1px 0;</li>
<li>border-color: currentColor;</li>
</ul>
</td>
<td>from 1px to 20px ( b-1-bottom, b-2-bottom, ... , b-20-bottom )</td>
</tr>
<tr>
<td>b-1-left</td>
<td>
<ul class="list-none list-nop">
<li>border-style: solid;</li>
<li>border-width: 0 0 0 1px;</li>
<li>border-color: currentColor;</li>
</ul>
</td>
<td>from 1px to 20px ( b-1-left, b-2-left, ... , b-20-left )</td>
</tr>
<tr>
<td>b-1-x</td>
<td>
<ul class="list-none list-nop">
<li>border-style: solid;</li>
<li>border-width: 0 1px 0 1px;</li>
<li>border-color: currentColor;</li>
</ul>
</td>
<td>from 1px to 20px ( b-1-x, b-2-x, b-3-x, ... , b-20-x )</td>
</tr>
<tr>
<td>b-1-y</td>
<td>
<ul class="list-none list-nop">
<li>border-style: solid;</li>
<li>border-width: 1px 0 1px 0;</li>
<li>border-color: currentColor;</li>
</ul>
</td>
<td>from 1px to 20px ( b-1-y, b-2-y,b-3-y, ... , b-20-y )</td>
</tr>
<tr>
<td>b-black</td>
<td>bordfer-color: #000000;</td>
<td>
<ul class="list-none list-nop">
<li>bg-black : #000000</li>
<li>bg-white : #ffffff</li>
<li>bg-indigo : #4b0082</li>
<li>bg-purple : #8e35ef</li>
<li>bg-pearl : #fdeef4</li>
<li>bg-crimson : #e238ec</li>
<li>bg-magenta : #ff00ff</li>
<li>bg-red : #ff0000</li>
<li>bg-wood : #966f33</li>
<li>bg-orange : #f88017</li>
<li>bg-blue : #0000ff</li>
<li>bg-green : #00ff00</li>
<li>bg-yellow : #ffff00</li>
<li>bg-steel : #4863a0</li>
<li>bg-night : #0c090a</li>
<li>bg-primary : #626ed4</li>
<li>bg-secondary : #343549</li>
<li>bg-success : #2aa39a</li>
<li>bg-danger : #ec4561</li>
<li>bg-warning : #f8b425</li>
<li>bg-info : #38a5f8</li>
<li>bg-light : #f8f8fa</li>
<li>bg-dark : #575c62</li>
<li>bg-muted : #edecf1</li>
</ul>
</td>
</tr>
</table>
<h3>Radius</h3>
<table class="fsize-90">
<tr>
<th>TINT Class</th>
<th>CSS Property and value</th>
<th>Range</th>
</tr>
<tr>
<td>r-5</td>
<td>border: 5px solid currentColor;</td>
<td>from 5px to 50px ( r-5, r-10, r-15, ... , r-50 )</td>
</tr>
<tr>
<td>r-5-top</td>
<td>border-radius: 5px 5px 0 0;</td>
<td>from 5px to 50px ( r-5, r-10, r-15, ... , r-50 )</td>
</tr>
<tr>
<td>r-1-bottom</td>
<td>border-radius: 0 0 5px 5px;</td>
<td>from 5px to 50px ( r-5, r-10, r-15, ... , r-50 )</td>
</tr>
<tr>
<td>r-1-x</td>
<td>border-radius: 5px 0 5px 0;</td>
<td>from 5px to 50px ( r-5-x, r-10-x, r-15-x, ... , r-50-x )</td>
</tr>
<tr>
<td>r-1-y</td>
<td>border-radius: 0 5px 0 5px;</td>
<td>from 5px to 50px ( r-5-y, r-10-y, r-15-y, ... , r-50-y )</td>
</tr>
<tr>
<td>r50</td>
<td>border-radius: 50%;</td>
<td></td>
</tr>
<tr>
<td>r100</td>
<td>border-radius: 100%;</td>
<td></td>
</tr>
</table>
<h3>Shadow</h3>
<table class="fsize-90">
<tr>
<th>TINT Class</th>
<th>CSS Property and value</th>
</tr>
<tr>
<td>shadow</td>
<td>box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);</td>
</tr>
<tr>
<td>shadow-2</td>
<td>box-shadow:
<ul class="list-none list-nop">
<li>0 1px 1px rgba(0, 0, 0, 0.15),</li>
<li>0 2px 2px rgba(0, 0, 0, 0.15);</li>
</ul>
</td>
</tr>
<tr>
<td>shadow-3</td>
<td>box-shadow:
<ul class="list-none list-nop">
<li>0 1px 1px rgba(0, 0, 0, 0.15),</li>
<li>0 2px 2px rgba(0, 0, 0, 0.15),</li>
<li>0 4px 4px rgba(0, 0, 0, 0.15);</li>
</ul>
</td>
</tr>
<tr>
<td>shadow-4</td>
<td>box-shadow:
<ul class="list-none list-nop">
<li>0 1px 1px rgba(0, 0, 0, 0.15),</li>
<li>0 2px 2px rgba(0, 0, 0, 0.15),</li>
<li>0 4px 4px rgba(0, 0, 0, 0.15),</li>
<li>0 8px 8px rgba(0, 0, 0, 0.15);</li>
</ul>
</td>
</tr>
<tr>
<td>shadow-5</td>
<td>box-shadow:
<ul class="list-none list-nop">
<li>0 1px 1px rgba(0, 0, 0, 0.12),</li>
<li>0 2px 2px rgba(0, 0, 0, 0.12),</li>
<li>0 4px 4px rgba(0, 0, 0, 0.12),</li>
<li>0 8px 8px rgba(0, 0, 0, 0.12),</li>
<li>0 16px 16px rgba(0, 0, 0, 0.12);</li>
</ul>
</td>
</tr>
<tr>
<td>shadow-6</td>
<td>box-shadow:
<ul class="list-none list-nop">
<li>0 1px 1px rgba(0, 0, 0, 0.11),</li>
<li>0 2px 2px rgba(0, 0, 0, 0.11),</li>
<li>0 4px 4px rgba(0, 0, 0, 0.11),</li>
<li>0 8px 8px rgba(0, 0, 0, 0.11),</li>
<li>0 16px 16px rgba(0, 0, 0, 0.11),</li>
<li>0 32px 32px rgba(0, 0, 0, 0.11);</li>
</ul>
</td>
</tr>
<tr>
<td>shadow-sharp</td>
<td>box-shadow:
<ul class="list-none list-nop">
<li>0 1px 1px rgba(0, 0, 0, 0.25),</li>
<li>0 2px 2px rgba(0, 0, 0, 0.2),</li>
<li>0 4px 4px rgba(0, 0, 0, 0.15),</li>
<li>0 8px 8px rgba(0, 0, 0, 0.1),</li>
<li>0 16px 16px rgba(0, 0, 0, 0.05);</li>
</ul>
</td>
</tr>
<tr>
<td>shadow-diffuse</td>
<td>box-shadow: