website

The files for mattfehrenbach.xyz, a fork of a template.
git clone git://git.mattfehrenbach.xyz/website.git
Log | Files | Refs | LICENSE

_box.scss (531B)


      1 ///
      2 /// Dimension by HTML5 UP
      3 /// html5up.net | @ajlkn
      4 /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
      5 ///
      6 
      7 /* Box */
      8 
      9 	.box {
     10 		border-radius: _size(border-radius);
     11 		border: solid _size(border-width) _palette(border);
     12 		margin-bottom: _size(element-margin);
     13 		padding: 1.5em;
     14 
     15 		> :last-child,
     16 		> :last-child > :last-child,
     17 		> :last-child > :last-child > :last-child {
     18 			margin-bottom: 0;
     19 		}
     20 
     21 		&.alt {
     22 			border: 0;
     23 			border-radius: 0;
     24 			padding: 0;
     25 		}
     26 	}