website

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

_vars.scss (867B)


      1 // Misc.
      2 	$misc: (
      3 		z-index-base:				10000
      4 	);
      5 
      6 // Duration.
      7 	$duration: (
      8 		transition:					0.2s,
      9 		bg:							2.5s,
     10 		intro:						0.75s,
     11 		article:					0.325s
     12 	);
     13 
     14 // Size.
     15 	$size: (
     16 		border-radius:				4px,
     17 		border-width:				1px,
     18 		element-height:				2.75rem,
     19 		element-margin:				2rem
     20 	);
     21 
     22 // Font.
     23 	$font: (
     24 		family:						('Source Sans Pro', sans-serif),
     25 		family-fixed:				('Courier New', monospace),
     26 		weight:						300,
     27 		weight-bold:				600,
     28 		letter-spacing:				0.2rem,
     29 		letter-spacing-heading:		0.5rem
     30 	);
     31 
     32 // Palette.
     33 	$palette: (
     34 		bg:							#1b1f22,
     35 		bg-alt:						#000000,
     36 		bg-overlay:					rgba(19,21,25,0.5),
     37 		fg:							#ffffff,
     38 		fg-bold:					#ffffff,
     39 		fg-light:					rgba(255,255,255,0.5),
     40 		border:						#ffffff,
     41 		border-bg:					rgba(255,255,255,0.075),
     42 		border-bg-alt:				rgba(255,255,255,0.175)
     43 	);