Skip to content

Commit

Permalink
1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mblode committed May 2, 2015
1 parent 8f8c545 commit 9e98db3
Show file tree
Hide file tree
Showing 12 changed files with 34 additions and 26 deletions.
12 changes: 6 additions & 6 deletions app/css/burger.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/css/burger.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@

<title>Burger</title>
<link rel="stylesheet" href="css/burger.min.css">
<style>
body {
font-family: Helvetica Neue, Helvetica, Sans-Serif;
}
</style>
</head>

<body>
Expand Down
4 changes: 1 addition & 3 deletions app/scss/_burger.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
.burger-nav {
font-family: $b-font-stack;
position: absolute;
z-index: 11;

Expand Down Expand Up @@ -29,9 +28,9 @@
}

.burger-link {
background: transparent;
border-left: $b-complement-color solid 0;
color: $b-complement-color;
font-family: $b-font-stack;
font-size: $b-font-size;
font-weight: $b-font-weight;
margin-left: $b-margin;
Expand Down Expand Up @@ -88,7 +87,6 @@

.burger-brand {
color: $b-primary-color;
font-family: $b-font-stack;
font-size: $b-font-size;
font-weight: 300;
left: 0;
Expand Down
5 changes: 3 additions & 2 deletions app/scss/_config.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ $b-bun-height: 2px; //Height of the 'buns'
$b-transition: all .4s ease; //Transition settings
$b-font-size: 24px; //Font size of brand and links
$b-font-weight: 300; //Font weight of brand and links
$b-font-stack: Helvetica Neue, Helvetica, Sans-Serif; //Font family of brand and links
$b-line-height: ($b-height / 2 - ($b-font-size / 2.8)); //Vertically centers brand to menu
$b-txt-pad: 30px; //Left padding on both brand and links
$b-txt-pad-top: ($b-margin + $b-height + $b-txt-pad); //Top margin for first link element
Expand Down Expand Up @@ -42,14 +41,16 @@ $b-pad-top: ($b-height / 2 - $b-bun-width-half); //Vertically centers bun in men
}

html,
body {
body.open {
height: 100%;
margin: 0;
min-height: 100%;
}

body {
margin: 0;
position: relative;
width: 100%;

&:after {
background: $b-primary-color;
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "burger",
"version": "1.3.1",
"version": "1.3.2",
"homepage": "https://github.com/mblode/burger",
"authors": [
"mblode <m.blode@gmail.com>"
Expand Down

0 comments on commit 9e98db3

Please sign in to comment.