Skip to content

Commit

Permalink
Added Gulp support
Browse files Browse the repository at this point in the history
  • Loading branch information
Vergil Penkov committed Feb 23, 2016
1 parent 1459892 commit f2a0aab
Show file tree
Hide file tree
Showing 18 changed files with 637 additions and 80 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,4 @@ Network Trash Folder
Temporary Items
.apdisk
*.cfg
node_modules
24 changes: 24 additions & 0 deletions app/css/basic-styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
* { box-sizing:border-box }
*:before, *:after { box-sizing:inherit }

html {
font-size: 62.5%;
-webkit-tap-highlight-color: rgba(0,0,0,0);
font-family: @font-family-base;
}

body {
font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 1.4rem;
line-height: 1.42857143;
color: #555;
background-color: #f7f7f7;
}

a { text-decoration: none }

ul {
margin: 0;
padding: 0;
list-style: none;
}
28 changes: 28 additions & 0 deletions app/css/header.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
header {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
background-color: #fff;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
height: 7rem;
padding: 0 15px;
position: fixed;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
top: 0;
width: 100%
}

.site-logo {
transition: color 200ms cubic-bezier(.55, 0, .1, 1);
color: #30acff;
font-size: 3rem;
}

.ok-header__logo:hover {color: #546edb}
Loading

0 comments on commit f2a0aab

Please sign in to comment.