diff --git a/assets/images/blinker-fluid.jpg b/assets/images/blinker-fluid.jpg new file mode 100644 index 0000000..f9388b6 Binary files /dev/null and b/assets/images/blinker-fluid.jpg differ diff --git a/bfx.html b/bfx.html index 6787b78..a848ba1 100644 --- a/bfx.html +++ b/bfx.html @@ -142,22 +142,13 @@

Equal Heights


- + +

Pride Filter

-

Got pride? Add a rainbow color filter to any image! Apply the class .pride to the img tag. To apply to multiple images, simply wrap them within a div with the pride class.

-

NOTE: Pride filter requires a live server to work.

-
-
-

Original Image

- Original -
-
-

.pride

- Prideified -
-
+

DEPRECATED: Due to compatibility issues, Pride filter is no longer supported as of 1.4.


+

Glitch

Add a glitch effect to any element! Works on images and text, or even entire areas! It is entirely CSS-based. Apply .glitch class to any element.

@@ -174,6 +165,35 @@

Glitch


+ + +

Blink

+

Blink is back! Apply theses classes to blink any element, even entire areas! Requires brutalist.js and start.brutalizing.js.

+
+
+

.blink

+ +
+
+

.blink-slow

+ +
+
+

.blink-fast

+

Here is a fast-blinking span and image:
+ Fast-blinking Image +

+
+
+

.blink-182

+

Get Your Blinker Fluid NOW!
+ Blinker Fluid +

+
+
+

+
+

Throb

Apply a throbbing, pulsing effect. It's CSS-based, so no javascript is needed. Simply apply the class .throb to an element.

@@ -256,12 +276,12 @@

Clip-Box

- +

Download

-

Version 1.3

+

Version 1.4

diff --git a/buix.html b/buix.html index c69ab00..1c9082e 100644 --- a/buix.html +++ b/buix.html @@ -149,24 +149,33 @@

Tags


+ +

Revelations

Revelations is a hover effect, for revealing hidden content!

-
+

The revelation container starts at a maximum width of 50% of the container it is wrapped within, and enlarges to 100% width upon hover while also revealing a caption.

.revelation (wrap content within this class)
   .secret (hidden content to be revealed upon hover)

-
+
+
+

Hover Over Me!

+

I'm a SECRET!

+
+
+
- -

SECRET - only visible upon hover!

+ +

SECRET - only visible upon hover!


+

Simple Menu

Simple Menu is a pure CSS menu that displays a description upon hover over each item.

@@ -280,6 +289,11 @@

Markup

   <li><img src="URL" />   </li>
</ul> +

 

+
+

Single Image Thumbnails

+

Apply these classes directly to the img tag for single images. Their sizes correspond to the above examples.

+

.tiny-thumb
.small-thumb
.medium-thumb
.large-thumb
.xlarge-thumb

@@ -423,12 +437,12 @@

Modal Header

- +

Download

-

Version 1.3

+

Version 1.4

diff --git a/butch.html b/butch.html index 3708990..cb0308c 100644 --- a/butch.html +++ b/butch.html @@ -323,6 +323,39 @@

Filters


+ + +

Opacities

+

Make elements have opacity, or force a transparent background (ideal for PNG images).

+
+
+
.transparent
+

Applies a transparent background.
+ Brutal Building +

+
+
+
.semi-transparent
+

Makes element 50% opaque.
+ Brutal Building +

+
+
+
.high-opacity
+

Makes element 75% opaque.
+ Brutal Building +

+
+
+
.low-opacity
+

Makes element 25% opaque.
+ Brutal Building +

+
+
+

+
+

Borders & Separators

Use these classes for borders and horizontal rule separators.

@@ -377,6 +410,18 @@

Borders & Separators +
+
+
+

.bevel

+
+
+
+
+

.emboss

+
+
+

.jagged

@@ -491,12 +536,12 @@

Responsive Videos

- +

Download

-

Version 1.3

+

Version 1.4

diff --git a/css/core/buix.css b/css/core/buix.css index 9b1a952..57c23ef 100644 --- a/css/core/buix.css +++ b/css/core/buix.css @@ -105,9 +105,14 @@ ul.tags li { display: inline-block; list-style-type: none; padding: 0; margin: 0 /* REVELATIONS **********************************/ -.revelation { display: inline-block; max-width: 50%; height: auto; transition: max-width 2s; -webkit-transition: max-width 2s; } +.revelation { display: inline-block; transition: transform 2s; -webkit-transition: transform 2s; } .revelation .secret { display: none; } -.revelation:hover, .revelation:active, .revelation:focus { max-width: 100%; height: auto; cursor: pointer; } +.revelation:hover, .revelation:active, .revelation:focus { + cursor: pointer; + -ms-transform: scale(1.5,1.5); /* IE 9 */ + -webkit-transform: scale(1.5,1.5); /* Safari */ + transform: scale(1.5,1.5); /* Standard syntax */ +} .revelation:hover .secret, .revelation:active .secret, .revelation:focus .secret { display: block; } /* THUMBNAILS @@ -118,11 +123,11 @@ ul.thumbs-tiny, ul.thumbs-small, ul.thumbs-medium, ul.thumbs-large, ul.thumbs-xl ul.thumbs-tiny li, ul.thumbs-small li, ul.thumbs-medium li, ul.thumbs-large li, ul.thumbs-xlarge li { display: inline-block; float: left; } -ul.thumbs-tiny img { height: 60px; width: auto; } -ul.thumbs-small img { height: 90px; width: auto; } -ul.thumbs-medium img { height: 120px; width: auto; } -ul.thumbs-large img { height: 150px; width: auto; } -ul.thumbs-xlarge img { height: 180px; width: auto; } +ul.thumbs-tiny img, img.tiny-thumb { height: 60px; width: auto; } +ul.thumbs-small img, img.small-thumb { height: 90px; width: auto; } +ul.thumbs-medium img, img.medium-thumb { height: 120px; width: auto; } +ul.thumbs-large img, img.large-thumb { height: 150px; width: auto; } +ul.thumbs-xlarge img, img.xlarge-thumb { height: 180px; width: auto; } /* MODALS **********************************/ diff --git a/css/core/butch.css b/css/core/butch.css index 0b2bc43..23f5600 100644 --- a/css/core/butch.css +++ b/css/core/butch.css @@ -173,6 +173,22 @@ input[type=range] + .thumb { cursor: pointer; cursor: hand; } +/* OPACITIES +*******************/ +.transparent { background: transparent !important; } +.semi-transparent { filter:alpha(opacity=50); /* IE */ + -moz-opacity:0.5; /* Mozilla */ + opacity: 0.5; +} +.high-opacity { filter:alpha(opacity=75); /* IE */ + -moz-opacity:0.75; /* Mozilla */ + opacity: 0.75; +} +.low-opacity { filter:alpha(opacity=25); /* IE */ + -moz-opacity:0.25; /* Mozilla */ + opacity: 0.25; +} + /* SHAPES *******************/ .circle { border-radius: 50%; -moz-border-radius: 50%; -webkit-border-radius: 50%; } @@ -265,6 +281,19 @@ hr.cut-dark:after { border-image: repeating-linear-gradient( 45deg, #424242, #424242 1%, #d8d8d8 1%, #d8d8d8 8%) 10; } +.bevel { + border-style: outset; + -moz-box-shadow: inset 4px 4px 4px rgba(255, 255, 255, .5), inset -4px -4px 4px rgba(0, 0, 0, .5); + -webkit-box-shadow: inset 4px 4px 4px rgba(255, 255, 255, .5), inset -4px -4px 4px rgba(0, 0, 0, .5); + box-shadow: inset 4px 4px 4px rgba(255, 255, 255, .5), inset -4px -4px 4px rgba(0, 0, 0, .5); +} +.emboss { + border-style: inset; + box-shadow: 0 1px 2px #fff, 0 -1px 1px #666, inset 0 -1px 1px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.8); + -moz-box-shadow: 0 1px 2px #fff, 0 -1px 1px #666, inset 0 -1px 1px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.8); + -webkit-box-shadow: 0 1px 2px #fff, 0 -1px 1px #666, inset 0 -1px 1px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.8); +} + /* BOX SHADOWS *********************/ .box-shadow { box-shadow: 5px 5px 0 #000; } diff --git a/css/core/flavors.css b/css/core/flavors.css index 4a97970..c9053f0 100644 --- a/css/core/flavors.css +++ b/css/core/flavors.css @@ -4,183 +4,237 @@ /* Whites */ .vanilla, .white, .cream { background-color: #fff !important; } .vanilla-text, .white-text, .cream-text { color: #fff !important; } +.vanilla-text-shadow, .white-text-shadow, .cream-text-shadow { text-shadow: 2px 2px #fff !important; } .vanilla-border, .white-border, .cream-border { border-color: #fff !important; } .vanilla-bean { background-color: #FBFBEF !important; } .vanilla-bean-text { color: #FBFBEF !important; } +.vanilla-bean-text-shadow { text-shadow: 2px 2px #FBFBEF !important; } .vanilla-bean-border { border-color: #FBFBEF !important; } /* Shades of Grey */ .silver { background-color: #C0C0C0 !important; } .silver-text { color: #C0C0C0 !important; } +.silver-text-shadow { text-shadow: 2px 2px #C0C0C0 !important; } .silver-border { border-color: #c0c0c0 !important; } .grey, .gray { background-color: #808080 !important; } .grey-text, .gray-text { color: #808080 !important; } +.grey-text-shadow, .gray-text-shadow { text-shadow: 2px 2px #808080 !important; } .gray-border, .grey-border { border-color: #808080 !important; } .black { background-color: #000 !important; } .black-text { color: #000 !important; } +.black-text-shadow { text-shadow: 2px 2px #000 !important; } .black-border { border-color: #000 !important; } .charcoal { background-color: #2e2e2e !important; } .charcoal-text { color: #2e2e2e !important; } +.charcoal-text-shadow { text-shadow: 2px 2px #2e2e2e !important; } .charcoal-border { border-color: #2e2e2e !important; } .mushroom { background-color: #cfd8dc !important; } .mushroom-text { color: #cfd8dc !important; } +.mushroom-text-shadow { text-shadow: 2px 2px #cfd8dc !important; } .mushroom-border { border-color: #cfd8dc !important; } .platinum { background-color: #e6e6e6 !important; } .platinum-text { color: #e6e6e6 !important; } +.platinum-text-shadow { text-shadow: 2px 2px #e6e6e6 !important; } .platinum-border { border-color: #e6e6e6 !important; } /* Reds */ .red, .tomato { background-color: #ff0000 !important; } .red-text, .tomato-text { color: #ff0000 !important; } +.red-text-shadow, .tomato-text-shadow { text-shadow: 2px 2px #ff0000 !important; } .red-border, .tomato-border { border-color: #ff0000 !important; } .strawberry { background-color: #FE2E2E !important; } .strawberry-text { color: #FE2E2E !important; } +.strawberry-text-shadow { text-shadow: 2px 2px #fe2e2e !important; } .strawberry-border { border-color: #FE2E2E !important; } .blood, .maroon, .pomegranate{ background-color: #800000 !important; } -.blood-text, .maroon-text, .pomegranate-text { color: #800000 !important; } +.blood-text, .maroon-text, .pomegranate-text { color: #800000 !important; } +.blood-text-shadow, .maroon-text-shadow, .pomegranate-text-shadow { text-shadow: 2px 2px #800000 !important; } .blood-border, .maroon-border, .pomegranate-border { border-color: #800000 !important; } .blood-orange { background-color: #dd2c00 !important; } .blood-orange-text { color: #dd2c00 !important; } +.blood-orange-text-shadow { text-shadow: 2px 2px #dd2c00 !important; } .blood-orange-border { border-color: #dd2c00 !important; } .cherry { background-color: #b52026 !important; } .cherry-text { color: #b52026 !important; } +.cherry-text-shadow { text-shadow: 2px 2px #b52026 !important; } .cherry-border { border-color: #b52026 !important; } .black-cherry { background-color: #5a1a18 !important; } .black-cherry-text { color: #5a1a18 !important; } +.black-cherry-text-shadow { text-shadow: 2px 2px #5a1a18 !important; } .black-cherry-border { border-color: #5a1a18 !important; } /* Oranges */ .orange { background-color: #ff9800 !important; } .orange-text { color: #ff9800 !important; } +.orange-text-shadow { text-shadow: 2px 2px #ff9800 !important; } .orange-border { border-color: #ff9800 !important; } .pumpkin-spice { background-color: #e65100 !important; } .pumpkin-spice-text { color: #e65100 !important; } +.pumpkin-spice-text-shadow { text-shadow: 2px 2px #e65100 !important; } .pumpkin-spice-border { border-color: #e65100 !important; } .mango { background-color: #ffab40 !important; } .mango-text { color: #ffab40 !important; } +.mango-text-shadow { text-shadow: 2px 2px #ffab40 !important; } .mango-border { border-color: #ffab40 !important; } .tangerine { background-color: #ff6d00 !important; } -.tangerine-text { color: #ff6d00 !important; } +.tangerine-text { color: #ff6d00 !important; } +.tangerine-text-shadow { text-shadow: 2px 2px #ff6d00 !important; } .tangerine-border { border-color: #ff6d00 !important; } .peach { background-color: #ffab91 !important; } .peach-text { color: #ffab91 !important; } +.peach-text-shadow { text-shadow: 2px 2px #ffab91 !important; } .peach-border { border-color: #ffab91 !important; } .carrot { background-color: #ef6c00 !important; } .carrot-text { color: #ef6c00 !important; } +.carrot-text-shadow { text-shadow: 2px 2px #ef6c00 !important; } .carrot-border { border-color: #ef6c00 !important; } /* Pinks */ .pink { background-color: #e91e63 !important; } .pink-text { color: #e91e63 !important; } +.pink-text-shadow { text-shadow: 2px 2px #e91e63 !important; } .pink-border { border-color: #e91e63 !important; } .cotton-candy { background-color: #ff80ab !important; } .cotton-candy-text { color: #ff80ab !important; } +.cotton-candy-text-shadow { text-shadow: 2px 2px #ff80ab !important; } .cotton-candy-border { border-color: #ff80ab !important; } .bubble-gum { background-color: #f8bbd0 !important; } .bubble-gum-text { color: #f8bbd0 !important; } +.bubble-gum-text-shadow { text-shadow: 2px 2px #f8bbd0 !important; } .bubble-gum-border { border-color: #f8bbd0 !important; } .raspberry { background-color: #ad1457 !important; } .raspberry-text { color: #ad1457 !important; } +.raspberry-text-shadow { text-shadow: 2px 2px #ad1457 !important; } .raspberry-border { border-color: #ad1457 !important; } /* Purples */ .purple, .plum { background-color: #800080 !important; } .purple-text, .plum-text { color: #800080 !important; } +.purple-text-shadow, .plum-text-shadow { text-shadow: 2px 2px #800080 !important; } .purple-border, .plum-border { border-color: #800080 !important; } .grape { background-color: #4a148c !important; } .grape-text { color: #4a148c !important; } +.grape-text-shadow { text-shadow: 2px 2px #4a148c !important; } .grape-border { border-color: #4a148c !important; } .eggplant { background-color: #7b1fa2 !important; } .eggplant-text { color: #7b1fa2 !important; } +.eggplant-text-shadow { text-shadow: 2px 2px #7b1fa2 !important; } .eggplant-border { border-color: #7b1fa2 !important; } .light-purple { background-color: #ce93d8 !important; } .light-purple-text { color: #ce93d8 !important; } +.light-purple-text-shadow { text-shadow: 2px 2px #ce93d8 !important; } .light-purple-border { border-color: #ce93d8 !important; } /* Blues */ .blue { background-color: #0000FF !important; } .blue-text { color: #0000FF !important; } +.blue-text-shadow { text-shadow: 2px 2px #0000ff !important; } .blue-border { border-color: #0000FF !important; } .blue-candy { background-color: #2196f3 !important; } .blue-candy-text { color: #2196f3 !important; } +.blue-candy-text-shadow { text-shadow: 2px 2px #2196f3 !important; } .blue-candy-border { border-color: #2196f3 !important; } .blueberry { background-color: #485B88 !important; } .blueberry-text { color: #485B88 !important; } +.blueberry-text-shadow { text-shadow: 2px 2px #485B88 !important; } .blueberry-border { border-color: #485b88 !important; } .light-blue, .water { background-color: #ADD8E6 !important; } .light-blue-text, .water-text { color: #ADD8E6 !important; } +.light-blue-text-shadow, .water-text-shadow { text-shadow: 2px 2px #ADD8E6 !important; } .light-blue-border, .water-border { border-color: #ADD8E6 !important; } .pool-water { background-color: #81d4fa !important; } .pool-water-text { color: #81d4fa !important; } +.pool-water-text-shadow { text-shadow: 2px 2px #81d4fa !important; } .pool-water-border { border-color: #81d4fa !important; } .navy-blue { background-color: #283593 !important; } .navy-blue-text { color: #283593 !important; } +.navy-blue-text-shadow { text-shadow: 2px 2px #283593 !important; } .navy-blue-border { border-color: #283593 !important; } /* Browns */ .brown { background-color: #795548 !important; } .brown-text { color: #795548 !important; } +.brown-text-shadow { text-shadow: 2px 2px #795548 !important; } .brown-border { border-color: #795548 !important; } .chocolate { background-color: #4c3428 !important; } .chocolate-text { color: #4c3428 !important; } +.chocolate-text-shadow { text-shadow: 2px 2px #4c3428 !important; } .chocoloate-border { border-color: #4c3428 !important; } .dark-chocolate { background-color: #3e2723 !important; } .dark-chocolate-text { color: #3e2723 !important; } +.dark-chocolate-text-shadow { text-shadow: 2px 2px #3e2723 !important; } .dark-chocolate-border { border-color: #3e2723 !important; } .light-brown, .cappuccino { background-color: #be9b7b !important; } .light-brown-text, .cappuccino-text { color: #be9b7b !important; } +.light-brown-text-shadow, .cappuccino-text-shadow { text-shadow: 2px 2px #be9b7b !important; } .light-brown-border { border-color: #be9b7b !important; } .wheat { background-color: #dac3a1 !important; } .wheat-text { color: #dac3a1 !important; } +.wheat-text-shadow { text-shadow: 2px 2px #dac3a1 !important; } .wheat-border { border-color: #dac3a1 !important; } .peanut, .peanut-butter { background-color: #c29963 !important; } .peanut-text, .peanut-butter-text { color: #c29963 !important; } +.peanut-text-shadow, .peanut-butter-text-shadow { text-shadow: 2px 2px #c29963 !important; } .peanut-border, .peanut-butter-border { border-color: #c29963 !important; } /* Greens */ .green, .cucumber { background-color: #008000 !important; } .green-text, .cucumber-text { color: #008000 !important; } +.green-text-shadow, .cucumber-text-shadow { text-shadow: 2px 2px #008000 !important; } .green-border, .cucumber-border { border-color: #008000 !important; } .green-apple { background-color: #5BC236 !important; } .green-apple-text { color: #5BC236 !important; } +.green-apple-text-shadow { text-shadow: 2px 2px #5BC236 !important; } .green-apple-border { border-color: #5BC236 !important; } .lime { background-color: #00ff00 !important; } .lime-text { color: #00ff00 !important; } +.lime-text-shadow { text-shadow: 2px 2px #00ff00 !important; } .lime-border { border-color: #00ff00 !important; } .kiwi { background-color: #58FA82 !important; } .kiwi-text { color: #58FA82 !important; } +.kiwi-text-shadow { text-shadow: 2px 2px #f8fa82 !important; } .kiwi-border { border-color: #f8FA82 !important; } .olive { background-color: #808000 !important; } .olive-text { color: #808000 !important; } +.olive-text-shadow { text-shadow: 2px 2px #808000 !important; } .olive-border { border-color: #808000 !important; } .pistachio { background-color: #81c784 !important; } .pistachio-text { color: #81c784 !important; } +.pistachio-text-shadow { text-shadow: 2px 2px #81c784 !important; } .pistachio-border { border-color: #81c784 !important; } .mint { background-color: #a5d6a7 !important; } .mint-text { color: #a5d6a7 !important; } +.mint-text-shadow { text-shadow: 2px 2px #a5d6a7 !important; } .mint-border { border-color: #a5d6a7 !important; } .spinach { background-color: #1b5e20 !important; } .spinach-text { color: #1b5e20 !important; } +.spinach-text-shadow { text-shadow: 2px 2px #1b5e20 !important; } .spinach-border { border-color: #1b5e20 !important; } /* Yellows */ .yellow, .lemon { background-color: #ffff00 !important; } .yellow-text, .lemon-text { color: #ffff00 !important; } +.yellow-text-shadow, .lemon-text-shadow { text-shadow: 2px 2px #ffff00 !important; } .yellow-border, .lemon-border { border-color: #ffff00 !important; } .banana { background-color: #F4FA58 !important; } .banana-text { color: #F4FA58 !important; } +.banana-text-shadow { text-shadow: 2px 2px #F4FA58 !important; } .banana-border { border-color: #F4FA58 !important; } .butter { background-color: #F2F5A9 !important; } .butter-text { color: #F2F5A9 !important; } +.butter-text-shadow { text-shadow: 2px 2px #F2F5A9 !important; } .butter-border { border-color: #F2F5A9 !important; } .cheddar { background-color: #F7B92A !important; } .cheddar-text { color: #F7B92A !important; } +.cheddar-text-shadow { text-shadow: 2px 2px #F7B92A !important; } .cheddar-border { border-color: #F7B92A !important; } .honey, .amber { background-color: #ffc107 !important; } .honey-text, .amber-text { color: #ffc107 !important; } +.honey-text-shadow, .amber-text-shadow { text-shadow: 2px 2px #ffc107 !important; } .honey-border, .amber-border { border-color: #ffc107 !important; } .pineapple { background-color: #FFE874 !important; } .pineapple-text { color: #FFE874 !important; } +.pineabble-text-shadow { text-shadow: 2px 2px #FFE874 !important; } .pineapple-border { border-color: #FFE874 !important; } /* MIXED FLAVORS diff --git a/flavors.html b/flavors.html index 565ae18..c4182c6 100644 --- a/flavors.html +++ b/flavors.html @@ -395,6 +395,12 @@

Text Color

.lime-text .banana-text .blue-text .bubble-gum-text


+

Text Shadow

+

Simply apply -text-shadow after a core color class to change the text shadow color.

+

EXAMPLES:

+

.lime-text-shadow .yellow-text-shadow .blue-text-shadow .vanilla-bean-text-shadow

+

+

Border Color

Simply apply -border after a core color class to change the border color. See "Basic Borders" under BUTCH on how to apply borders.

EXAMPLES:

@@ -655,12 +661,12 @@

Gradients

- +

Download

-

Version 1.3

+

Version 1.4

diff --git a/grid.html b/grid.html index fd8be01..204cebd 100644 --- a/grid.html +++ b/grid.html @@ -196,12 +196,12 @@

Flexbox Fusion Example

- +

Download

-

Version 1.3

+

Version 1.4

diff --git a/index.html b/index.html index e1eca69..73edf80 100644 --- a/index.html +++ b/index.html @@ -38,11 +38,11 @@ Brutalist Framework
-

An open source framework for the brutalist web design trend.

-

Version 1.3

-

DOWNLOAD ||  +

An open source framework for the brutalist web design trend.

+

Version 1.4

+

DOWNLOAD ||  GITHUB PROJECT

@@ -50,111 +50,94 @@
-
- +
+
+

Flavors

+

Color classes library with combos and gradients

+ Start Tasting

+
-
-
-
-
-
-

Flavors

-

Color classes library with combos and gradients

- Start Tasting

-
-
-
-
-

BUTCH

-

Brutalist Utility & Typography Class Helpers

- Get Butchering

-
-
-
-
-

BUIX

-

Brutalist User Interface Experience

- Experience

-
-
-
-
-
-
-

BFX

-

Brutal Effects

- Start.Brutalizing

-
-
-
-
-

Grid

-

Multiple responsive grids

- Make Layouts

-
-
-
-
-

Templates

-

Free & premium starting points

- Learn More

-
-
-
-

Built with
HTML5 / CSS3 / jQuery

+
+
+

BUTCH

+

Brutalist Utility & Typography Class Helpers

+ Get Butchering

+
+
+
+
+

BUIX

+

Brutalist User Interface Experience

+ Experience

+
+
+
+
+
+
+

BFX

+

Brutal Effects

+ Start.Brutalizing

+
+
+
+
+

Grid

+

Multiple responsive grids

+ Make Layouts

+
+
+
+
+

Templates

+

Free & premium starting points

+ Learn More

+
+
+
+
+
+

Built with
HTML5 / CSS3 / jQuery

+

+
+
+
+
+
+
+

About BF

+

Brutalism is a hot trend in web design, and this framework is a free, open source framework for building brutal websites!

+

Brutalism = CRUDE

+

When thinking of brutalism, think CRUDE:

+

+ Cynically confrontational
+ Roughly raw and rugged
+ Uncomfortably ugly and unpolished
+ Deliberately daring and damaging
+ Extremely exasperated and embittered +

+

 

+

Brutalist web design is the anti-conventional approach to proper, modern web design principles. In essence, it harkens back to the days of a more primitive web.

+

Useful Articles:
+ It's Tough Out There: A Look at Brutalism in Web Design
+ The Curious Case of Web Brutalism
+ The Rise and Rise of the Brutalist Design Trend +

-
-
-
-

About BF

-

- Brutalism is a hot trend in web design, and this framework is a free, open source framework for building brutal websites! -

-

Brutalism = CRUDE

-

When thinking of brutalism, think CRUDE:

- -

- Cynically confrontational
- Roughly raw and rugged
- Uncomfortably ugly and unpolished
- Deliberately daring and damaging
- Extremely exasperated and embittered -

- -

 

-

Brutalist web design is the anti-conventional approach to proper, modern web design principles. In essence, it harkens back to the days of a more primitive web.

-

Useful Articles:
- It's Tough Out There: A Look at Brutalism in Web Design
- The Curious Case of Web Brutalism
- The Rise and Rise of the Brutalist Design Trend -

-

-
-
-

What's New in 1.3?

-
    -
  • FLAVORS: 2 new flavors (Wheat and Peanut Butter), 2 new color combos, and 4 new gradients
  • -
  • BUTCH: New box-shadows
  • -
  • BUIX: New thumbnail classes, new modals
  • -
  • BFX: Baffle bug fix
  • -
  • TEMPLATES: 3 new templates!
  • -
-

 

- - +
+
+
+
+

What's New in 1.4?

+
    +
  • BFX: Deprecated Pride filter; new "Blink" effect
  • +
  • FLAVORS: New text-shadows
  • +
  • BUTCH: Added opacities; added bevel and emboss border styles
  • +
  • BUIX: Added support for single image thumbnails; improvement to Revelations
  • +
  • TEMPLATES: New Email template!
  • +
+

 

+