1. Download the normalize.css, put it in your /css folder and reference in your html:
<link rel="stylesheet" type="text/css" href="css/normalize.css">
2. Download the all-in-one css version, put it in your /css folder and reference in your html:
<link rel="stylesheet" type="text/css" href="css/style.css">
1. Go to the github repository and download the source code;
2. In the /sass/main.scss file, comment out the style you do not need (you have to keep variables and helpers);
3. In the /sass/variables.scss file, change the variables to your own design such as color, font size, border radius, etc.
4. Install SASS and compile /sass/main.scss into style.css
5. Enjoy your style!
p : Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quae culpa eaque adipisci in nam necessitatibus voluptates repellendus asperiores quas dolores blanditiis vitae laudantium, nesciunt saepe nobis architecto distinctio harum molestiae!
* Note1: add .clear-float if you want to start with a new line.
* Note2: you can nest the grid system and get more column types.
<input type="text" value="input">
<input class="square" type="text" value="input .square">
<textarea cols="45" rows="5"></textarea>
<textarea class="square" cols="45" rows="5"></textarea>
<div class="full-width height-20 bg-img margin-t1">
<div class="txt-center cover">
<div class="center-v">
<h1 class="white-txt">Hello Hackers!</h1>
</div>
</div>
</div>
<div class="full-width height-40 bg-video">
<video autoplay loop muted poster="images/bg.jpg" id="bgvid">
<source src="videos/bg.webm" type="video/webm">
<source src="videos/bg.mp4" type="video/mp4">
</video>
<div class="txt-center cover">
<div class="center-v">
<h1 class="white-txt">Hello Hackers!</h1>
</div>
</div>
</div>
Item 1
Item 2
Item 3
Created by Yan Hong, 2015