forked from mirror/go-ethereum
- avoid overlapping in the header bar - scale down the gopher image to save a bunch of kilobytes - hide the ethereum logo on smaller screens - fix indentationChrisChinchilla-patch-1
parent
abe2f98763
commit
70f11da755
Before Width: | Height: | Size: 478 KiB After Width: | Height: | Size: 171 KiB |
@ -1,48 +1,52 @@ |
|||||||
.jumbotron .mascot { |
.jumbotron .mascot { |
||||||
background-image: url('../../images/mascot.png'); |
|
||||||
background-size: auto 300px; |
background-size: auto 300px; |
||||||
background-repeat: no-repeat; |
background-repeat: no-repeat; |
||||||
background-position: 2.5% -30px; |
background-position: 0 -30px; |
||||||
height: 256px; |
height: 280px; |
||||||
} |
|
||||||
|
|
||||||
.jumbotron h1, .jumbotron h2 { |
|
||||||
text-shadow: -1px 0 #ecf0f1, 0 1px #ecf0f1, 1px 0 #ecf0f1, 0 -1px #ecf0f1; |
|
||||||
} |
} |
||||||
|
|
||||||
.jumbotron h1 { |
.jumbotron h1 { |
||||||
font-size: 56px; |
font-size: 56px; |
||||||
font-weight: bold; |
font-weight: bold; |
||||||
margin-top: 16px; |
margin-top: 0; |
||||||
margin-bottom: 12px; |
margin-bottom: 12px; |
||||||
} |
} |
||||||
|
|
||||||
.jumbotron h2 { |
.jumbotron h2 { |
||||||
margin-top: 12px; |
|
||||||
font-size: 28px; |
font-size: 28px; |
||||||
|
max-width: 500px; |
||||||
|
margin: auto; |
||||||
} |
} |
||||||
|
|
||||||
.featurette-divider { |
.mascot-mobile { |
||||||
margin: 80px 0; |
text-align: center; |
||||||
} |
} |
||||||
|
|
||||||
.featurette-heading { |
.hide-on-small-screen { |
||||||
font-weight: 300; |
display: none; |
||||||
line-height: 1; |
} |
||||||
letter-spacing: -1px; |
|
||||||
|
.featurette-divider { |
||||||
|
margin: 80px 0; |
||||||
} |
} |
||||||
|
|
||||||
@media (min-width: 768px) { |
@media (min-width: 768px) { |
||||||
|
.jumbotron .mascot { |
||||||
|
background-image: url('../../images/mascot.png'); |
||||||
|
} |
||||||
|
.mascot-mobile { |
||||||
|
display: none; |
||||||
|
} |
||||||
.featurette-heading { |
.featurette-heading { |
||||||
font-size: 50px; |
font-size: 50px; |
||||||
} |
} |
||||||
} |
} |
||||||
|
|
||||||
@media (min-width: 992px) { |
@media (min-width: 992px) { |
||||||
.featurette-heading { |
|
||||||
margin-top: 80px; |
|
||||||
} |
|
||||||
.featurette-image { |
.featurette-image { |
||||||
margin-top: 30px; |
margin-top: 30px; |
||||||
} |
} |
||||||
|
.hide-on-small-screen { |
||||||
|
display: block; |
||||||
|
} |
||||||
} |
} |
||||||
|
Loading…
Reference in new issue