Added Navbar, Header and App

This commit is contained in:
2018-02-23 21:49:53 +11:00
parent 878bab91ac
commit 02d926aa37
12 changed files with 190 additions and 0 deletions

View File

@ -0,0 +1,15 @@
/*
* App
* Styles for the App itself
*
* Dependencies:
*
* Version:
* 1.0.0 - 2018/02/23
*/
.c-app {
width: 100%;
min-height: 100%;
overflow-x: hidden;
position: relative;
}

View File

@ -0,0 +1,12 @@
/*
* Header
* Styles for header element
*
* Dependencies:
*
* Version:
* 1.0.0 - 2018/02/23
*/
.c-header {
border: 1px solid red;
}

View File

@ -0,0 +1,14 @@
/*
* Navbar
* Styles for Navbar
*
* Dependencies:
*
* Version:
* 1.0.0 - 2018/02/23
*/
.c-navbar {
width: 100%;
position: fixed;
}