website

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

main.scss (1183B)


      1 @import 'libs/vars';
      2 @import 'libs/functions';
      3 @import 'libs/mixins';
      4 @import 'libs/vendor';
      5 @import 'libs/breakpoints';
      6 @import 'fontawesome-all.min.css';
      7 @import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300italic,600italic,300,600');
      8 
      9 /*
     10 	Dimension by HTML5 UP
     11 	html5up.net | @ajlkn
     12 	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
     13 */
     14 
     15 // Breakpoints.
     16 
     17 	@include breakpoints((
     18 		xlarge:   ( 1281px,  1680px ),
     19 		large:    ( 981px,   1280px ),
     20 		medium:   ( 737px,   980px  ),
     21 		small:    ( 481px,   736px  ),
     22 		xsmall:   ( 361px,   480px  ),
     23 		xxsmall:  ( null,    360px  )
     24 	));
     25 
     26 // Base.
     27 
     28 	@import 'base/reset';
     29 	@import 'base/page';
     30 	@import 'base/typography';
     31 
     32 // Component.
     33 
     34 	@import 'components/form';
     35 	@import 'components/box';
     36 	@import 'components/icon';
     37 	@import 'components/image';
     38 	@import 'components/list';
     39 	@import 'components/actions';
     40 	@import 'components/icons';
     41 	@import 'components/table';
     42 	@import 'components/button';
     43 
     44 // Layout.
     45 
     46 	@import 'layout/bg';
     47 	@import 'layout/wrapper';
     48 	@import 'layout/header';
     49 	@import 'layout/main';
     50 	@import 'layout/footer';