Skip to content

Commit

Permalink
Fix Gradients
Browse files Browse the repository at this point in the history
  • Loading branch information
zaher committed Sep 8, 2013
1 parent 33a3fe3 commit 6e7c27d
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ html {
body {
height: 100%;
width: auto;
padding: 0px;
margin: 0px;
padding: 0em;
margin: 0em;
font: $get(font_size)/1.3 Tahoma, Verdana, Arial, sans-serif;
background: $color(back);
color: $get(fore);
Expand Down Expand Up @@ -151,7 +151,7 @@ embed, iframe, object {
position: relative;
background: $color(base);
$if(gradients)<
background: linear-gradient(to bottom, $color(base, -10) 0%,$color(base, 40) 5%, $color(base, 20) 10%, $color(base, -20) 100%);
background: linear-gradient(to bottom, $color(base, 10) 1%, $color(base, 25) 10%, $color(base) 40%);
>
z-index: 999;
text-decoration: none;
Expand All @@ -163,7 +163,7 @@ $if(gradients)<
#logo-header{
overflow: auto;
height: auto;
padding: 0.5em 0 0;
padding: 0.5em 1em;
display: table;
}

Expand Down Expand Up @@ -213,8 +213,10 @@ $if(gradients)<

/** main content */

#main { /*do not put padding or margin*/
#main { /*do not put padding or margin or border width */
background: $color(canvas_back);
margin: 0em;
padding: 0em;
}

#inside {
Expand Down

0 comments on commit 6e7c27d

Please sign in to comment.