-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbutch.html
More file actions
1107 lines (1080 loc) · 56.3 KB
/
butch.html
File metadata and controls
1107 lines (1080 loc) · 56.3 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 http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
<title>Brutalist Framework || BUTCH</title>
<meta name="description" content="A free open source CSS library for the brutalist web design trend." />
<!-- Twitter Card data -->
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@brutalistfwk">
<meta name="twitter:title" content="Brutalist Framework || BUTCH">
<meta name="twitter:description" content="A free open source CSS library for the brutalist web design trend.">
<meta name="twitter:creator" content="@brutalistfwk">
<!-- Twitter Summary card images must be at least 120x120px -->
<meta name="twitter:image" content="http://www.brutalistframework.com/core/files/images/bf21.jpg">
<!-- Open Graph data -->
<meta property="og:title" content="Brutalist Framework || BUTCH" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://www.brutalistframework.com" />
<meta property="og:image" content="http://www.brutalistframework.com/core/files/images/bf21.jpg" />
<meta property="og:description" content="A free open source CSS library for the brutalist web design trend." />
<meta property="og:site_name" content="Brutalist Framework" />
<!-- Icons -->
<link rel="shortcut icon" href="core/files/icons/bf44.png" type="image/x-icon" />
<link rel="icon" href="core/files/icons/bf15.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="core/files/icons/bf57.png" />
<!-- CORE CSS -->
<!--<link href="core/css/dev/core.css" type="text/css" rel="stylesheet" media="all"/>-->
<link href="core/css/brutalist.min.css" type="text/css" rel="stylesheet" media="all"/>
<!-- BELL -->
<link href="core/bell/css/bell.css" type="text/css" rel="stylesheet" media="all" />
<!-- Theme CSS -->
<link href="theme/default/css/theme.css" type="text/css" rel="stylesheet" media="all" />
</head>
<body class="black">
<header class="container-fluid triangle-light anim-bg-neon stack-base">
<div class="row"><div class="col-sm-12"><div class="container-1200">
<div class="row no-padding stack1 content" id="scrolltop">
<div class="col-xs-12 col-sm-12 col-md-4 col-lg-3 no-padding">
<a href="index.html"><img class="large-thumb crop circle brdr-s-k red-border invert-hover" src="core/files/images/brutalist-framework.jpg" alt="Brutalist Framework" /></a>
</div>
<div class="col-xs-12 col-sm-12 col-md-8 col-lg-9 no-padding lucida-text">
<h1 class="page-title border-solid-thick red-border courier-new-text fittext-h1 white-text baffle-prolonged">BUTCH</h1>
<div class="page-desc border-solid-thick red-border rice-text">
<h2 class="flow-text baffle">Brutalist Utility & Typography Class Helpers</h2><br />
<p>General-use classes for typography style, layouts, and page elements.</p>
</div>
</div>
</div>
</div></div></div>
</header>
<div class="monochrome-gradient">
<div class="container-1200 no-padding white">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-8 col-lg-9 no-padding">
<!-- MEGAMENU -->
<div class="menu-container glued stack-top">
<div class="menu lucida bold">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#core">CORE</a>
<ul>
<li><a href="flavors.html">Flavors</a></li>
<li><a href="butch.html">BUTCH</a></li>
<li><a href="buix.html">BUIX</a></li>
<li><a href="bfx.html">BFX</a></li>
<li><a href="grid.html">Grid</a></li>
<li><a href="rebar.html">ReBAR</a></li>
<li><a href="bicons.html">bIcons</a></li>
</ul>
</li>
<li><a href="bell.html">BELL</a>
<ul>
<li><a href="bell.html#me">Media Elements</a>
<ul>
<li><a href="bell.html#audio">Audio Player</a></li>
<li><a href="bell.html#gif">Gif Player</a></li>
<li><a href="bell.html#vp">Video Player</a></li>
</ul>
</li>
<li><a href="bell.html#ie">Interface Elements</a>
<ul>
<li><a href="bell.html#megamenu">Megamenu</a></li>
<li><a href="bell.html#printer">Printer</a></li>
<li><a href="bell.html#piss">PISS</a></li>
</ul>
</li>
<li><a href="bell.html#ce">Content Elements</a>
<ul>
<li><a href="bell.html#timeline">Timeline</a></li>
<li><a href="bell.html#presenter">Presenter</a></li>
<li><a href="bell.html#tex">Table Exporter</a></li>
</ul>
</li>
<li><a href="bell.html#biscuit">BISCUIT</a>
<ul>
<li><a href="bell.html#age">Age Verify</a></li>
<li><a href="bell.html#cc">Cookie Consent</a></li>
<li><a href="bell.html#pl">PageLock</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="boilerplates.html">Boilerplates</a></li>
<li><a href="https://github.com/pinecreativelabs/Brutalist-Framework/wiki" target="_blank">About</a>
<ul>
<li><a href="https://github.com/pinecreativelabs/Brutalist-Framework/wiki/Roadmap" target="_blank">Roadmap</a></li>
<li><a href="https://github.com/pinecreativelabs/Brutalist-Framework" target="_blank">Github Repository</a></li>
<li><a href="https://twitter.com/brutalistfwk" target="_blank">Twitter</a></li>
</ul>
</li>
</ul>
</div>
</div>
<!-- END MEGAMENU -->
<div class="padding">
<h3 class="tomato-text lucida" id="typog">Typography</h3>
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6 charcoal-text">
<!-- Font Families -->
<h4 class="white-text courier-new flow-text charcoal">Font Family Classes</h4>
<p class="arial">.arial</p>
<p class="arial-black">.arial-black</p>
<p class="comic-sans">.comic-sans</p>
<p class="tahoma">.tahoma</p>
<p class="helvetica">.helvetica</p>
<p class="impact">.impact</p>
<p class="verdana">.verdana</p>
<p class="courier-new">.courier-new</p>
<p class="lucida">.lucida</p>
<p class="georgia">.georgia</p>
<p class="times">.times</p>
<p class="palatino">.palatino</p>
<!-- Font Weight -->
<h4 class="white-t flow-text courier-new charcoal">Font Weight</h4>
<p class="bold arial">.bold</p>
<p class="heavy arial">.heavy</p>
<!-- Font Sizing -->
<h4 class="white-t courier-new-text flow-text charcoal">Font Sizing</h4>
<p class="arial">Normal size text</p>
<p class="smaller arial">.smaller</p>
<p class="bigger arial">.bigger</p>
<p class="huge arial">.huge</p>
<h4 class="white-t flow-text charcoal courier-new">.flow-text</h4>
<p class="flow-text">Flow-text makes your text responsive!</p>
<p>This is a paragraph without flow-text applied.</p>
</div>
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6 arial charcoal-text">
<p class="white-t flow-text charcoal courier-new">Text Alignment</p>
<p class="flow-text center">.center</p>
<p class="flow-text align-left">.left-t</p>
<p class="flow-text align-right">.right-t</p>
<p class="flow-text justify">.justify</p>
<p class="rtl flow-text"><strong>rtl</strong> (right-to-left).</p>
<p class="white-t flow-text charcoal courier-new">Text Formatting</p>
<p><strong>.spread</strong> - <span class="spread">Adds 3px between characters</span><br />
<strong>.oblique</strong> - <span class="oblique">Slants text</span><br />
<strong>.allcaps</strong> - <span class="allcaps">Capitalizes all characters</span><br />
<strong>.alllower</strong> - <span class="alllower">ALL LOWERCASE</span><br />
<strong>.capitals</strong> - <span class="capitals">All words uppercased</span><br />
<strong>.smallcaps</strong> - <span class="smallcaps">Small-caps font is displayed</span></p>
<p><strong>.dbl-spaced</strong> - Doubles the spacing of line heights within paragraphs.<br />
<strong>.tpl-spaced</strong> - Triples the spacing of line heights within paragraphs.</p>
<p><strong>.tal-l</strong> - Left-aligns last line of text<br /><strong>.tal-r</strong> - Right-aligns last line of text<br />
<strong>.tal-c</strong> - Centers last line of text<br /><strong>.tal-j</strong> - Justifies last line of text<br />
<strong>.indent</strong> - Indents text by 1cm</p>
<p class="nowrap"><strong>.nowrap</strong> - Text will never wrap to next line.</p>
<p class="ws-sm"><strong>.ws-sm</strong> - Small word spacing.</p>
<p class="ws-md"><strong>.ws-md</strong> - Medium word spacing.</p>
<p class="wordspace-large"><strong>.ws-lg</strong> - Large word spacing.</p>
<p class="wordbreak-keep"><strong>.wb-keep</strong> - Word breaks are prohibited between pairs of letters.</p>
<p class="wordbreak-all"><strong>.wb-all</strong> - Lines may break between any two letters.</p>
<p class="wordwrap-break"><strong>.ww-break</strong> - Word wrap allows unbreakable words to be broken.</p>
<p class="guard-text"><strong>.guard</strong> - Prevents text from being selectable.</p>
</div>
</div>
<p class="padding"></p>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-4 col-lg-4">
<p class="white-text flow-text charcoal courier-new">Address</p>
<address>
Address Line 1<br />Address Line 2<br />Address Line 3
</address>
<p> </p>
<p class="white-text flow-text charcoal courier-new">Blockquote</p>
<blockquote>
New brutalism, inevitably, in global dissemination, degenerated into a rough concrete style.
</blockquote>
</div>
<div class="col-xs-12 col-sm-12 col-md-8 col-lg-8">
<p class="white-text flow-text charcoal courier-new">Unordered Lists</p>
<div class="row charcoal-text">
<div class="col-xs-12 col-sm-4 col-md-4">
<p><strong>ul.disc</strong></p>
<ul class="disc">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<p><strong>ul.diamond</strong></p>
<ul class="diamond">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
</div>
<div class="col-xs-12 col-sm-4 col-md-4">
<p><strong>ul.circle</strong></p>
<ul class="circle">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<p><strong>ul.triangle</strong></p>
<ul class="triangle">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
</div>
<div class="col-xs-12 col-sm-4 col-md-4">
<p><strong>ul.square</strong></p>
<ul class="square">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<p><strong>ul.brutal</strong></p>
<ul class="brutal">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
</div>
</div>
<div class="row charcoal-text">
<div class="col-xs-12">
<p><strong>ul.tags</strong> - makes ul li items display inline</p>
<ul class="tags bold">
<li>Tag 1</li>
<li>Tag 2</li>
<li>Taggg</li>
<li>Tag IV</li>
</ul>
</div>
</div>
<p class="white-text flow-text charcoal courier-new" style="margin-top: 1em;">Ordered Lists</p>
<div class="row charcoal-text">
<div class="col-xs-12 col-sm-3 col-md-3">
<p><strong>Default</strong></p>
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
</div>
<div class="col-xs-12 col-sm-3 col-md-3">
<p><strong>ol.roman</strong></p>
<ol class="roman">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
</div>
<div class="col-xs-12 col-sm-3 col-md-3">
<p><strong>ol.alpha</strong></p>
<ol class="alpha">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
</div>
<div class="col-xs-12 col-sm-3 col-md-3">
<p><strong>ol.none</strong></p>
<ol class="none">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
</div>
</div>
</div>
</div>
<p class="white-text flow-text charcoal courier-new" style="margin-top: 1em;">Section Header Counter</p>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-6">
<p>The section header counter allows you to create auto-incremented section headers and sub-headers. </p>
<p class="padded info"><span class="bold bigger">Classes</span><br />
<strong>.count h(1-5)</strong> - auto-increments H tags (1-5)<br /><strong>.subcount h(2-6)</strong> - auto-increments H tags (2-6)<br />
<strong>.count-reset</strong> - resets count to 0<br /><strong>.subcount-reset</strong> - resets sub-count to 0<br />
</p>
<p>Counted heading tags need to be wrapped within a <em>count</em> class div. Sub-headings need to be wrapped within a <em>subcount</em> class div (that is also nested within a <em>count</em> element).</p>
<code class="black lime-text lucida-text padding">
<div class="count"><br />
<h2>Heading</h2><br />
<h2>Heading</h2><br />
<div class="subcount"><br />
<h3>Sub-heading</h3><br />
<h3>Sub-heading</h3><br />
<h3>Sub-heading</h3><br /> ...<br />
</div><br />
<h2>Heading</h2><br />...<br />
</div>
</code>
</div>
<div class="col-xs-12 col-sm-12 col-md-6">
<div class="count">
<h4>Regions</h4>
<div class="subcount">
<h5>North America</h5>
<h5>Europe</h5>
<h5>Asia</h5>
</div>
<h4>States</h4>
<div class="subcount">
<h5>Counties</h5>
<h5>Cities</h5>
<h5>Attractions</h5>
</div>
<h4>Planets</h4>
<div class="subcount">
<h5>Uranus</h5>
<h5>Saturn</h5>
<h5>Jupiter</h5>
</div>
</div>
</div>
</div>
<p class="padding"></p>
<h3 class="red-text lucida">Text Layout</h3>
<p class="arial bold">Apply these classes to paragraphs or divs to create a layout.<br /><br /></p>
<div class="row charcoal-text">
<div class="col-xs-12">
<p class="flow-text white-text courier-new charcoal"><strong>.col2</strong> - 2 column layout</p>
<p class="arial col2">
Lorem ipsum no facer prompta vim, movet ubique qui ei. Per no regione aliquid, ea mei nulla scribentur liberavisse. Vim cu tale ludus possit, discere suavitate nam ad. No verterem reprimique vix, phaedrum hendrerit an quo. Qui feugait apeirian ut, ne virtute numquam mandamus mea. Eos et enim dicant deterruisset. At nec ceteros mentitum, ex solum putent offendit per.
</p>
<p> </p>
<p class="flow-text white-text courier-new charcoal"><strong>.col3</strong> - 3 column layout</p>
<p class="arial col3">
Lorem ipsum no facer prompta vim, movet ubique qui ei. Per no regione aliquid, ea mei nulla scribentur liberavisse. Vim cu tale ludus possit, discere suavitate nam ad. No verterem reprimique vix, phaedrum hendrerit an quo. Qui feugait apeirian ut, ne virtute numquam mandamus mea. Eos et enim dicant deterruisset. At nec ceteros mentitum, ex solum putent offendit per.
</p>
<p> </p>
<p class="flow-text white-text courier-new charcoal"><strong>.col4</strong> - 4 column layout</p>
<p class="arial col4">
Lorem ipsum no facer prompta vim, movet ubique qui ei. Per no regione aliquid, ea mei nulla scribentur liberavisse. Vim cu tale ludus possit, discere suavitate nam ad. No verterem reprimique vix, phaedrum hendrerit an quo. Qui feugait apeirian ut, ne virtute numquam mandamus mea. Eos et enim dicant deterruisset. At nec ceteros mentitum, ex solum putent offendit per.
</p>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-4">
<div class="disabled padding">
<p><span class="bigger">More Column Classes</span><br />
<strong>.col5</strong> - 5 columns<br /><strong>.col6</strong> - 6 columns<br /><strong>.col7</strong> - 7 columns<br /><strong>.col8</strong> - 8 columns<br /><strong>.col9</strong> - 9 columns</p>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-4">
<div class="info padding">
<p><strong>Column Padding</strong> - Add 10, 20, 30, 40, 50, or 60px of padding between columns</p>
<p class="bold">.pad10<br />.pad20<br />.pad30<br />.pad40<br />.pad50<br />.pad60</p>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-4">
<div class="ready padding">
<p><strong>EXAMPLE:</strong> White justified arial text within a 3-column layout with 30px padding between columns, with double spacing and an indent.</p>
<p class="black-text"><strong><p class="white-text justify arial-text triple-col pad30 dbl-spaced indent">...</p></strong></p>
</div>
<p class="padding"></p>
</div>
</div>
</div>
<p class="padding"></p>
<hr class="thick tomato" />
<!-- BRUTALIST UTILITY CLASSES -->
<div class="padded">
<h3 class="tomato-text lucida" id="utils">Brutalist Utility Classes</h3>
<p class="charcoal-text arial bold">These classes are used for brutalizing your content. Apply them to any element.<br /><br /></p>
<div class="row arial charcoal-text">
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6">
<p class="white-text courier-new-text flow-text"><span class="charcoal allcaps"><strong>Scale Classes</strong></span></p>
<p><strong>.enlarge</strong> - Enlarges container size by 50%<br />
<strong>.double-size</strong> - Doubles size of container<br />
<strong>.triple-size</strong> - Triples size of container<br />
<strong>.shrink</strong> - Reduces container size by 25%<br />
<strong>.half-size</strong> - Reduces container to half it's original size<br />
<strong>.quarter-size</strong> - Reduces container to 25% of original size<br /><br />
</p>
<p class="white-text courier-new flow-text"><span class="charcoal allcaps"><strong>Skew Classes</strong></span></p>
<p><strong>.skew</strong> - Skews container to left<br />
<strong>.skew-right</strong> - Skews container to right<br />
<strong>.perspective</strong> - Angles container to the left<br />
<strong>.perspective-right</strong> - Angles container to the right<br /><br />
</p>
<p class="white-text courier-new flow-text"><span class="charcoal allcaps"><strong>Transformation Classes</strong></span></p>
<p><strong>.flip</strong> - Flips container horizontally<br />
<strong>.flip-h</strong> - Flip horizontally upon hover<br />
<strong>.flip-up</strong> - Flips container vertically<br />
<strong>.flip-up-h</strong> - Flips vertically upon hover<br /><br />
</p>
</div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6">
<p class="white-text courier-new flow-text"><span class="charcoal allcaps"><strong>Rotation Classes</strong></span></p>
<p><strong>.rr10</strong> - Rotate <em>right</em> 10 degrees<br />
<strong>.rl10</strong> - Rotate <em>left</em> 10 degrees<br />
<strong>.rr15</strong> - Rotate <em>right</em> 15 degrees<br />
<strong>.rl15</strong> - Rotate <em>left</em> 15 degrees<br />
<strong>.rr25</strong> - Rotate <em>right</em> 25 degrees<br />
<strong>.rl25</strong> - Rotate <em>left</em> 25 degrees<br />
<strong>.rr45</strong> - Rotate <em>right</em> 45 degrees<br />
<strong>.rl45</strong> - Rotate <em>left</em> 45 degrees<br />
<strong>.rr60</strong> - Rotate <em>right</em> 60 degrees<br />
<strong>.rl60</strong> - Rotate <em>left</em> 60 degrees<br />
<strong>.rr90</strong> - Rotate <em>right</em> 90 degrees<br />
<strong>.rl90</strong> - Rotate <em>left</em> 90 degrees<br /><br />
</p>
<p class="white-text courier-new flow-text"><span class="charcoal allcaps"><strong>Spacing Classes</strong></span></p>
<p><strong>.padded</strong> - 1em padding<br />
<strong>.no-pad</strong> - No padding on container<br />
<strong>.comfortable</strong> - 3.33em padding<br />
<strong>.uncomfortable</strong> - Negative 1.75em padding<br />
<strong>.solitary</strong> - 3.33em margins<br />
<strong>.sociable</strong> - Negative 2.25em margins<br />
<strong>.paranoid</strong> - 1.75em margins on left and right<br />
<strong>.isolated</strong> - 1.75em margins on top and bottom<br />
</p>
</div>
</div>
</div>
<p class="padding"></p>
<hr class="thick tomato" />
<!-- FILTERS -->
<div class="padding">
<h3 class="red-text lucida bold" id="filters">Filters</h3>
<p class="charcoal-text courier-new flow-text">Use these classes to apply filters to any element.</p>
<div class="row charcoal-text">
<div class="col-xs-12 col-sm-6 col-md-3">
<p class="lucida"><strong>Original Image</strong><br />
<img class="responsive" src="theme/default/files/images/brutal-building.jpg" /></p>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<p class="lucida"><strong>.invert</strong><br />
<img class="responsive invert" src="theme/default/files/images/brutal-building.jpg" /></p>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<p class="lucida"><strong>.sepia</strong><br />
<img class="responsive sepia" src="theme/default/files/images/brutal-building.jpg" /></p>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<p class="lucida"><strong>.grayscale</strong><br />
<img class="responsive grayscale" src="theme/default/files/images/brutal-building.jpg" /></p>
</div>
</div>
<div class="row charcoal-text">
<div class="col-xs-12 col-sm-6 col-md-3">
<p class="lucida"><strong>.darken</strong><br />
<img class="responsive darken" src="theme/default/files/images/brutal-building.jpg" /></p>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<p class="lucida"><strong>.lighten</strong><br />
<img class="responsive lighten" src="theme/default/files/images/brutal-building.jpg" /></p>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<p class="lucida"><strong>.blur</strong><br />
<img class="responsive blur" src="theme/default/files/images/brutal-building.jpg" /></p>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<p class="lucida"><strong>.hue</strong><br />
<img class="responsive hue" src="theme/default/files/images/brutal-building.jpg" /></p>
</div>
</div>
<div class="disabled arial-text padding">
<p class="flow-text courier-new allcaps"><strong>Hover Filter</strong></p>
<p>Apply a filter upon hover simply by adding <em>-hover</em> after the class. <br />
<strong>Examples:</strong> <em>.blur-hover</em>, <em>.grayscale-hover</em></p>
<div class="row charcoal-text">
<div class="col-xs-12 col-sm-6 col-md-3">
<p class="courier-new darken"><strong>.darken .lighten-hover</strong><br />
<img class="responsive lighten-hover" src="theme/default/files/images/brutal-building.jpg" /></p>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<p class="courier-new hue-hover"><strong>.hue-hover</strong><br />
<img class="responsive" src="theme/default/files/images/brutal-building.jpg" /></p>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<p class="courier-new grayscale"><strong>.grayscale .blur-hover</strong><br />
<img class="responsive blur-hover" src="theme/default/files/images/brutal-building.jpg" /></p>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<p class="courier-new"><strong>.invert-hover</strong><br />
<img class="responsive invert-hover" src="theme/default/files/images/brutal-building.jpg" /></p>
</div>
</div>
</div>
</div>
<p class="padding"></p>
<hr class="thick tomato" />
<!-- OPACITIES -->
<h3 class="red-text lucida" id="opacities">Opacities</h3>
<div class="padding">
<p class="charcoal-text courier-new flow-text">Make elements have opacity, or force a transparent background (ideal for PNG images).</p>
<div class="row charcoal-text">
<div class="col-xs-12 col-sm-6 col-md-3">
<h6 class="heavy lucida-text">.transparent</h6>
<p class="box-shadow-bottom grey lemon-t center">Applies a transparent background.<br />
<img src="theme/default/files/images/border.png" alt="Brutal Building" class="transparent large-thumb" />
</p>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<h6 class="heavy lucida">.semi-transparent</h6>
<p class="box-shadow-bottom grey lemon-t center">Makes element 50% opaque.<br />
<img src="theme/default/files/images/brutal-building.jpg" alt="Brutal Building" class="semi-transparent large-thumb" />
</p>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<h6 class="heavy lucida">.high-opacity</h6>
<p class="box-shadow-bottom grey lemon-t center">Makes element 75% opaque.<br />
<img src="theme/default/files/images/brutal-building.jpg" alt="Brutal Building" class="high-opacity large-thumb" />
</p>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<h6 class="heavy lucida">.low-opacity</h6>
<p class="box-shadow-bottom grey lemon-t center">Makes element 25% opaque.<br />
<img src="theme/default/files/images/brutal-building.jpg" alt="Brutal Building" class="low-opacity large-thumb" />
</p>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-3">
<h6 class="heavy lucida">.transparent-hover</h6>
<p class="box-shadow-bottom grey lemon-t center">Renders element invisible upon hover.<br />
<img src="theme/default/files/images/brutal-building.jpg" alt="Brutal Building" class="transparent-hover large-thumb" />
</p>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<h6 class="heavy lucida">.semi-transparent-hover</h6>
<p class="box-shadow-bottom grey lemon-t center">Makes element 50% opaque upon hover.<br />
<img src="theme/default/files/images/brutal-building.jpg" alt="Brutal Building" class="semi-transparent-hover large-thumb" />
</p>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<h6 class="heavy lucida">.high-opacity-hover</h6>
<p class="box-shadow-bottom grey lemon-t center">Makes element 75% opaque upon hover.<br />
<img src="theme/default/files/images/brutal-building.jpg" alt="Brutal Building" class="high-opacity-hover large-thumb" />
</p>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<h6 class="heavy lucida">.low-opacity-hover</h6>
<p class="box-shadow-bottom grey lemon-t center">Makes element 25% opaque upon hover.<br />
<img src="theme/default/files/images/brutal-building.jpg" alt="Brutal Building" class="low-opacity-hover large-thumb" />
</p>
</div>
</div>
</div>
<p class="padding"></p>
<hr class="thick tomato" />
<!-- BORDERS, SEPARATORS, SHAPES -->
<h3 class="tomato-text lucida" id="borders">Borders & Separators</h3>
<div class="padding">
<p class="charcoal-t courier-new flow-text">Use these classes for borders and horizontal rule separators.</p>
<p class="white-t courier-new flow-text"><span class="charcoal allcaps"><strong>Basic Borders</strong></span></p>
<p class="charcoal-text arial">Basic borders can have flavors applied! Check out <em>Flavors</em> to see how to change the border color.<br /><br /></p>
<div class="row charcoal-text arial">
<div class="col-xs-12 col-sm-12 col-md-4">
<p class="brdr-s-t black-b" style="margin-bottom: 1em; padding: 0.5em;"><strong>.brdr-s-t</strong><br /><small>Solid thin border</small></p>
<p class="brdr-s-k black-b" style="margin-bottom: 1em; padding: 0.5em;"><strong>.brdr-s-k</strong><br /><small>Solid thick border</small></p>
<p class="brdr-s-f black-b" style="margin-bottom: 1em; padding: 0.5em;"><strong>.brdr-s-f</strong><br /><small>Solid fat border</small></p>
</div>
<div class="col-xs-12 col-sm-12 col-md-4">
<p class="brdr-d-t black-b" style="margin-bottom: 1em; padding: 0.5em;"><strong>.brdr-d-t</strong><br /><small>Dotted thin border</small></p>
<p class="brdr-d-k black-b" style="margin-bottom: 1em; padding: 0.5em;"><strong>.brdr-d-k</strong><br /><small>Dotted thick border</small></p>
<p class="brdr-d-f black-b" style="margin-bottom: 1em; padding: 0.5em;"><strong>.brdr-d-f</strong><br /><small>Dotted fat border</small></p>
</div>
<div class="col-xs-12 col-sm-12 col-md-4">
<p class="brdr-a-t black-b" style="margin-bottom: 1em; padding: 0.5em;"><strong>.brdr-a-t</strong><br /><small>Dashed thin border</small></p>
<p class="brdr-a-k black-b" style="margin-bottom: 1em; padding: 0.5em;"><strong>.brdr-a-k</strong><br /><small>Dashed thick border</small></p>
<p class="brdr-a-f black-b" style="margin-bottom: 1em; padding: 0.5em;"><strong>.brdr-a-f</strong><br /><small>Dashed fat border</small></p>
</div>
</div>
<p class="white-text courier-new flow-text"><span class="charcoal allcaps"><strong>Outlines</strong></span></p>
<p class="charcoal-text arial" style="margin-bottom: 1em;">Add an outline border around any element. You can apply both borders and outlines to the same element. Similar to the border classes above, use <em>ol</em> in place of <em>brdr</em>. Below are some examples.</p>
<div class="row charcoal-text arial">
<div class="col-xs-12 col-sm-12 col-md-4">
<p class="brdr-s-t ol-a-k red-b blue-o" style="margin-bottom: 1.5em; padding: 0.5em;"><strong>.brdr-s-t .ol-a-k</strong><br /><small>Solid thin red border with thick dashed blue outline</small></p>
<p class="strawberry-banana ol-d-k chocolate-o os-5" style="margin-bottom: 1.75em; padding: 0.5em;"><strong>.ol-d-k .os-5</strong><br /><small>Strawberry banana box with chocolate outline, offset by 5px</small></p>
</div>
<div class="col-xs-12 col-sm-12 col-md-4">
<p class="ol-d-t red-outline blue-b brdr-s-t" style="margin-bottom: 1.5em; padding: 0.5em;"><strong>.ol-d-t .brdr-s-t</strong></p>
<p class="brdr-a-k purple-b red-o ol-s-t os-5 rounded" style="margin-bottom: 1.5em; padding: 0.5em;"><strong>.brdr-a-k .ol-s-t .os-5 .rounded</strong></p>
<p class="brdr-a-t black-b ol-a-t black-o os-2" style="margin-bottom: 1em; padding: 0.5em;"><strong>.brdr-a-t .ol-a-t .os-2</strong></p>
</div>
<div class="col-xs-12 col-sm-12 col-md-4">
<p class="info padded"><strong>Offset Outlines</strong><br />Offset outline borders by 2, 5, 10, 15, or 20px. Use these classes:<br />
<strong>.os-2<br />.os-5<br />.os-10<br />.os-15<br />.os-20</strong></p>
</div>
</div>
<p class="padding"></p>
<p class="white-text courier-new flow-text"><span class="charcoal allcaps"><strong>Horizontal Rules</strong></span></p>
<div class="row charcoal-text arial">
<div class="col-xs-12 col-sm-12 col-md-4">
<p class="flow-text"><strong>hr.jagged-rule-dark</strong></p>
<hr class="jagged-rule-dark" />
<p class="flow-text"><strong>hr.jagged-rule-light</strong></p>
<hr class="jagged-rule-light" />
</div>
<div class="col-xs-12 col-sm-12 col-md-4">
<p class="flow-text"><strong>hr.cut-light</strong></p>
<hr class="cut-light" />
<p class="flow-text"><strong>hr.cut-dark</strong></p>
<hr class="cut-dark" />
</div>
<div class="col-xs-12 col-sm-12 col-md-4">
<p class="flow-text"><strong>hr.thick.tomato</strong></p>
<hr class="thick tomato" />
<p class="flow-text"><strong>hr.thick.lush</strong></p>
<hr class="thick lush" />
</div>
</div>
<p class="padding"></p>
<p class="white-text courier-new flow-text"><span class="charcoal allcaps"><strong>Special Borders</strong></span></p>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-4">
<div class="love-b padded">
<p class="tahoma flow-text">.love-b</p>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-4">
<div class="lush-b padded">
<p class="tahoma flow-text">.lush-b</p>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-4">
<div class="virgin-b padded">
<p class="tahoma flow-text">.virgin-b</p>
</div>
</div>
</div>
<p class="padded"></p>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-4">
<div class="frost-b padded">
<p class="tahoma flow-text">.frost-b</p>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-4">
<div class="sunset-b padded">
<p class="tahoma flow-text">.sunset-b</p>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-4">
<div class="dusk-b padded">
<p class="tahoma flow-text">.dusk-b</p>
</div>
</div>
</div>
<p class="padded"></p>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-4">
<div class="shades-b padded">
<p class="tahoma flow-text">.shades-b</p>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-4">
<div class="river-b padded">
<p class="tahoma flow-text">.river-b</p>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-4">
<div class="hottie-b padded">
<p class="tahoma flow-text">.hottie-b</p>
</div>
</div>
</div>
<p class="padded"></p>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-6">
<div class="brutal-border-dark white">
<p class="flow-text tahoma">.brutal-border-dark</p>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-6">
<div class="brutal-border-light white">
<p class="flow-text tahoma">.brutal-border-light</p>
</div>
</div>
</div>
<p class="padded"></p>
<div class="row" style="margin-top: 1em;">
<div class="col-xs-12 col-sm-12 col-md-6">
<div class="bevel white">
<p class="flow-text tahoma">.bevel</p>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-6">
<div class="emboss white">
<p class="flow-text tahoma">.emboss</p>
</div>
</div>
</div>
<p class="padded"></p>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-6">
<div class="jagged white padding">
<p class="blue-text lucida fittext">.jagged</p>
<p class="grey-text arial">Creates a grey triangular border above and below an element.</p>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-6">
<div class="jagged2 white padding">
<p class="blue-text lucida fittext">.jagged2</p>
<p class="grey-text arial">Jagged alternative</p>
</div>
</div>
</div>
<p class="padding"></p>
<p class="white-text courier-new-text flow-text"><span class="charcoal allcaps"><strong>Shapes</strong></span></p>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-4">
<div class="paranoid circle padded border-solid-thin purple-border">
<p class="flow-text purple-text center"> <br />.circle<br /> </p>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-4">
<div class="paranoid sketchbox silver grey-border border-dashed-thin">
<p class="flow-text blue-text center comic-sans"> <br />.sketchbox<br /> </p>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-4">
<div class="paranoid rounded gray-border border-solid-thick">
<p class="flow-text blue-text center"> <br />.rounded<br /> </p>
</div>
</div>
</div>
</div>
<p class="padding"></p>
<hr class="thick tomato" />
<!-- BOX SHADOWS -->
<h3 class="red-text lucida" id="boxes">Box Shadows</h3>
<div class="padding">
<p class="charcoal-text arial" style="margin-bottom: 1.5em;">Apply these classes to add a box shadow. By default, box shadow colors are black, so to change the box shadow color, you will need to edit the colors in the core <strong><em>butch.css</em></strong> file.</p>
<div class="row" style="margin-bottom: 1.5em;">
<div class="col-sm-12 col-md-3">
<div class="white box-shadow padded">
<p class="black-text lucida center"><strong>.box-shadow</strong></p>
</div>
</div>
<div class="col-sm-12 col-md-3">
<div class="yellow box-shadow-thick padded">
<p class="black-text lucida center"><strong>.box-shadow-thick</strong></p>
</div>
</div>
<div class="col-sm-12 col-md-3">
<div class="lime box-shadow-fat padded">
<p class="black-text lucida center"><strong>.box-shadow-fat</strong></p>
</div>
</div>
<div class="col-sm-12 col-md-3">
<div class="blue box-shadow-double padded">
<p class="white-text lucida center"><strong>.box-shadow-double</strong></p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-3">
<div class="orange box-shadow-triple padded">
<p class="black-text lucida center"><strong>.box-shadow-triple</strong></p>
</div>
</div>
<div class="col-sm-12 col-md-3">
<div class="mint box-shadow-quad padded">
<p class="black-text lucida center"><strong>.box-shadow-quad</strong></p>
</div>
</div>
<div class="col-sm-12 col-md-3">
<div class="cotton-candy box-shadow-bottom padded">
<p class="black-text lucida center"><strong>.box-shadow-bottom</strong></p>
</div>
</div>
<div class="col-sm-12 col-md-3">
<div class="peanut box-shadow-right padded">
<p class="white-text lucida center"><strong>.box-shadow-right</strong></p>
</div>
</div>
</div>
</div>
<p class="padding"></p>
<hr class="thick tomato"/>
<!-- TABLES -->
<div class="padding">
<h3 class="red-text lucida" id="tables">Tables</h3>
<p class="charcoal-text arial">Tables can be made responsive simply by applying the class <span class="heavy"><em>.responsive</em></span> directly to the <em>table</em> tag. On devices under 600px wide, each table row is displayed as a record. Re-size your browser window to see it in action.</p>
<div class="row">
<div class="col s12">
<table class="responsive">
<caption>Table.responsive</caption>
<thead>
<tr class="water-blueberry-gradient">
<th scope="col">Client</th>
<th scope="col">Due Date</th>
<th scope="col">Amount</th>
<th scope="col">Status</th>
</tr>
</thead>
<tbody>
<tr class="kiwi-cucumber-gradient">
<td data-label="Account">Ma Pa Shop</td>
<td data-label="Due Date">08/20/2017</td>
<td data-label="Amount">$1,165</td>
<td data-label="Period">Paid</td>
</tr>
<tr class="kiwi-cucumber-gradient">
<td scope="row" data-label="Account">Creative Studio</td>
<td data-label="Due Date">02/01/2015</td>
<td data-label="Amount">$2,167</td>
<td data-label="Period">Collections</td>
</tr>
<tr class="kiwi-cucumber-gradient">
<td scope="row" data-label="Account">Food Bistro</td>
<td data-label="Due Date">04/30/2020</td>
<td data-label="Amount">$978</td>
<td data-label="Period">Good Standing</td>
</tr>
<tr class="kiwi-cucumber-gradient">
<td scope="row" data-label="Acount">Repair Shop</td>
<td data-label="Due Date">02/15/2019</td>
<td data-label="Amount">$15,500</td>
<td data-label="Period">Unpaid</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<p class="padding"></p>
<hr class="thick tomato" />
<!-- MEDIA -->
<h3 class="red-text lucida" id="media">Media</h3>
<div class="padding">
<div class="row">
<div class="col-sm-12 col-md-6">
<h4 class="black white-t courier-new flow-text">Responsive Images</h4>
<p class="charcoal-text arial">To make an image fluid width so that it fits within any area, simply apply the class: <em><strong>.responsive</strong></em></p>
<div class="adaptor center" style="min-height: 200px; display: block;">
<img src="theme/default/files/images/liminal-blood.jpg" class="responsive" alt="Liminal Brutalism" />
</div>
<!-- Copyright message for images -->
<div class="picprotect">
<p class="pp-msg">© Brutalist Framework</p>
</div>
</div>
<div class="col-sm-12 col-md-6">
<h4 class="black white-text courier-new flow-text">Responsive Videos</h4>
<p class="charcoal-text arial">Use the <em>video</em> tag, and the video will be fluid-width. If embedding a YouTube, Vimeo, or any other third-party video that uses an iframe, simply wrap the <em>iframe</em> embed code within a div with class <strong><em>.video</em></strong>.</p>
<div class="video box-shadow">
<iframe src="https://www.youtube.com/embed/8XWX5EIxBz8?showinfo=0" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</div>
</div><p class="padded"></p>
</div><!-- END Main Content -->
<!-- Sidebar -->
<div class="col-xs-12 col-sm-12 col-md-4 col-lg-3 no-padding black">
<img src="theme/default/files/images/gelora/brutal-mood-5.jpg" alt="BUTCH" class="responsive" style="margin-bottom: -6px;" />
<div class="glued">
<div class="row">
<div class="col-xs-12 no-padding">
<nav class="simple blue">
<ul class="courier-new flow-text lime-text">
<li class="invert-hover"><a href="#typog" class="lime-text">Typography</a></li>
<li class="invert-hover"><a href="#utils" class="lime-text">Utility Classes</a></li>
<li class="invert-hover"><a href="#filters" class="lime-text">Filters</a></li>
<li class="invert-hover"><a href="#opacities" class="lime-text">Opacities</a></li>
<li class="invert-hover"><a href="#borders" class="lime-text">Borders</a></li>
<li class="invert-hover"><a href="#boxes" class="lime-text">Box Shadows</a></li>
<li class="invert-hover"><a href="#tables" class="lime-text">Tables</a></li>
<li class="invert-hover"><a href="#media" class="lime-text">Media</a></li>
</ul>
</nav>
</div>
</div>
<a href="#scrolltop" class="lime invert-hover bold black-text scrolltop lucida">Back to Top ↑</a>
<footer class="jagged gray">
<a href="http://eepurl.com/cEW1RX" target="_blank">
<div class="sweden-gradient padded invert-hover">
<h5 class="lucida white-text"><i class="bi bi-amp"></i>Brutal Blast /<span class="blink-182">/</span>/<span class="blink">/</span>/</h5>
<p class="bold">Subscribe to our e-newsletter. <span class="bigger">»</span></p>
</div>
</a>
<div class="padding vanilla-bean-text arial">
<p>A <a href="http://www.pinecreativelabs.com" target="_blank" class="green yellow-text invert-hover">Pine Creative Labs</a> production</p>
<p>Developer: <a href="https://www.linkedin.com/in/bradfogelstrom" target="_blank"><span class="blue yellow-text invert-hover">Brad Fogelstrom</span></a></p>
<ul class="tags">
<li><a href="http://www.twitter.com/brutalistfwk" target="_blank" class="btn white-text blue-candy hue-hover"><strong>Twitter</strong></a></li>
<li><a href="https://github.com/pinecreativelabs/Brutalist-Framework" target="_blank" class="btn black white-text invert-hover"><strong>GitHub</strong></a></li>
</ul>
<p class="white-t tahoma"><small>Brutalist Framework © 2020</small></p>
</div>
</footer>
</div>
</div><!-- End Sidebar -->
</div>
</div>
</div>
<!-- Sticky Download Box -->
<div class="sticky-cta sticky-bottom-right stack-middle virgin jagged2 center" style="padding: 8px; max-width: 180px;">
<nav class="simple bold">
<ul class="lucida flow-text">
<li class="invert-hover"><a href="#core"><i class="bi bi-heart"></i> CORE</a></li>
<li class="invert-hover"><a href="#bell"><i class="bi bi-amp"></i> BELL</a></li>
<li class="invert-hover"><a href="#boilers"><i class="bi bi-heat"></i> BP</a></li>
<li class="invert-hover"><a href="#moar">+ MORE</a></li>
</ul>
</nav>
<a href="#download" data-modal-open>
<div class="skew sweden btn invert-hover">
<p class="skew-right"><span class="flow-text impact">Download</span><br /><span class="lucida"><small>version 2.1</small></span></p>
</div></a>
</div>
<!-- Download Modal -->
<div id="download" style="display:none;">
<div class="container monochrome infinitile" style="max-width: 468px;">
<div class="row">
<div class="col-sm-12 no-padding">
<div class="padded lucida">
<h4>Begin the <span class="blink red-t">Brutality</span></h5>
<p>Released <strong>10/13/2020</strong></p>
<p class="bigger bold"><a href="http://www.brutalistframework.com/versions/Brutalist_Framework_2.1.zip" target="_blank" class="btn full-btn sweden invert-hover">Download 2.1</a></p><hr class="jagged-rule-dark" />
<p style="font-size: 1.15em;"><strong><span style="font-size: 1.3em;">Legacy Versions</span></strong><br />
<a href="http://www.brutalistframework.com/versions/Brutalist_Framework_2.0.zip" target="_blank">2.0.2.0</a> (released 2/20/2020)<br />
<a href="http://www.brutalistframework.com/versions/Brutalist_Framework_1.9.zip" target="_blank">1.9</a> (legacy)<br /><br /></p>
</div>
</div>
</div>
</div>
</div>
<!-- Initiate and display modal itself -->
<div class="modal">
<div class="modal-inner draggable"><!-- Remove "draggable" class to prevent modals from being moveable -->
<span data-modal-close>×</span>
<div class="modal-content"></div>
</div>
</div>
<!-- Core Components Modal -->
<div id="core" class="modal-lite fullscreen">
<div class="modal-content aboutbf infinitile">
<div class="modal-head center"><h2 class="red-t courier-new black-t-s bold">CORE Components</h2></div>
<div class="modal-content-body center">
<p class="flow-text black-t red-t-s lucida" style="margin-bottom: 1em;"></p>
<div class="block-wrap stretch">
<a href="butch.html" class="block b25 padded circle monogradient invert-hover box-shadow-double white-t">
<img src="theme/default/files/images/gelora/brutal-mood-4.jpg" class="crop circle small-thumb brdr-s-k blue-b" alt="BUTCH" />
<span class="red circle black-t white-t-s flow-text">BUTCH</span><br />
<small>Brutalist Utility & Typography Class Helpers</small><br /><br />
</a>
<a href="bfx.html" class="block b25 padded circle monogradient invert-hover white-t box-shadow-double">
<img src="theme/default/files/images/kitty/bfx-kat.jpg" class="crop circle small-thumb brdr-s-k blue-b" alt="BFX" />
<span class="red circle white-t-s black-t flow-text">BFX</span><br />
<small>Brutal Effects</small><br /><br />
</a>
<a href="buix.html" class="block b25 padded circle monogradient invert-hover box-shadow-double white-t">
<img src="theme/default/files/images/gelora/backup-sq.jpg" class="crop circle small-thumb brdr-s-k blue-b" alt="BUIX" />
<span class="red circle white-t-s black-t flow-text">BUIX</span><br />
<small>Brutal User Interface & Experience</small><br /><br />
</a>
<a href="grid.html" class="block b25 padded circle monogradient invert-hover box-shadow-double white-t">
<img src="theme/default/files/images/gelora/fenced.jpg" class="crop circle small-thumb brdr-s-k blue-b" alt="Grids" />
<span class="red circle white-t-s black-t flow-text">Grid</span><br />
<small>B3Grid & Flexbox Grid</small><br /><br />
</a>
<a href="flavors.html" class="block b33 padded circle monogradient invert-hover box-shadow-double white-t">
<img src="theme/default/files/images/gelora/crazy-grin.jpg" class="crop circle small-thumb brdr-s-k blue-b" alt="Flavors" />
<span class="red circle white-t-s black-t flow-text">Flavors</span><br />
<small>Color Classes Library</small><br /><br />
</a>
<a href="rebar.html" class="block b33 padded circle monogradient invert-hover box-shadow-double white-t">
<img src="theme/default/files/images/gelora/rebar.jpg" class="crop circle small-thumb brdr-s-k blue-b" alt="Rebar" />
<span class="red circle white-t-s black-t flow-text">ReBAR</span><br />
<small>Responsive Breakpoint Assisstance Reference</small><br /><br />
</a>
<a href="bicons.html" class="block b33 padded circle monogradient invert-hover box-shadow-double white-t">
<img src="theme/default/files/images/kitty/anarchistkat-sq.jpg" class="crop circle small-thumb brdr-s-k blue-b" alt="bIcons" />