website

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

noscript.scss (738B)


      1 @import 'libs/vars';
      2 @import 'libs/functions';
      3 @import 'libs/mixins';
      4 @import 'libs/vendor';
      5 @import 'libs/breakpoints';
      6 
      7 /*
      8 	Dimension by HTML5 UP
      9 	html5up.net | @ajlkn
     10 	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
     11 */
     12 
     13 /* BG */
     14 
     15 	#bg {
     16 		body.is-preload & {
     17 			&:before {
     18 				background-color: transparent;
     19 			}
     20 		}
     21 	}
     22 
     23 /* Header */
     24 
     25 	#header {
     26 		body.is-preload & {
     27 			> * {
     28 				opacity: 1;
     29 			}
     30 
     31 			@include vendor('filter', 'none');
     32 
     33 			.content {
     34 				.inner {
     35 					max-height: none;
     36 					padding: 3rem 2rem;
     37 					opacity: 1;
     38 				}
     39 			}
     40 		}
     41 	}
     42 
     43 /* Main */
     44 
     45 	#main {
     46 		article {
     47 			opacity: 1;
     48 			margin: (_size(element-margin) * 2) 0 0 0;
     49 		}
     50 	}