Skip to content

Commit

Permalink
Attempt blind fix to safari line bug
Browse files Browse the repository at this point in the history
  • Loading branch information
nlhkabu committed Sep 13, 2018
1 parent 3b11680 commit d8e60eb
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions pycon/static/css/slight.css
Original file line number Diff line number Diff line change
Expand Up @@ -1365,10 +1365,10 @@ body.home-page h2 {
}
/* home page top banner */
.home-banner {
background: #009abf;
background: #9bcddf;
background: -webkit-linear-gradient(top, #9bcddf 0%, #009abf 100%);
background: -linear-gradient(top, #9bcddf 0%, #009abf 100%);
background: -moz-linear-gradient(top, #9bcddf 0%, #009abf 100%);
background: linear-gradient(to bottom, #9bcddf 0%, #009abf 100%);
font-size: 22px;
position: relative;
text-align: center;
Expand Down Expand Up @@ -1416,11 +1416,15 @@ body.home-page h2 {
.home-banner {
height: 400px !important;
padding: 0 !important;
position: relative;
overflow: hidden;
}
.home-banner-stripe {
display: block;
width: 100%;
height: 100%;
height: 401px;
position: absolute;
bottom: 0;
background: url('../img/header-skyline-wide.svg') bottom center no-repeat;
}
.home-banner h1 {
Expand All @@ -1437,7 +1441,7 @@ body.home-page h2 {
height: 250px;
}
.home-banner h1 {
background: url('../img/header-skyline.svg') left no-repeat;
background: url('../img/header-skyline.svg') bottom left no-repeat;
background-size: cover;
height: 250px;
width: 100%;
Expand Down

0 comments on commit d8e60eb

Please sign in to comment.