fix switch between mobile/desktop design

ChrisChinchilla-patch-1
Felix Lange 8 years ago
parent 3058a06c03
commit c474c4082b
  1. 6
      index.html
  2. 6
      static/styles/custom/home.css

@ -46,10 +46,6 @@
<div class="jumbotron"> <div class="jumbotron">
<div class="container mascot"> <div class="container mascot">
<div class="row">
<div class="col-lg-2">
</div>
<div class="col-lg-8">
<h1>Go Ethereum</h1> <h1>Go Ethereum</h1>
<h2>Official Go implementation of the Ethereum protocol</h2> <h2>Official Go implementation of the Ethereum protocol</h2>
<br/> <br/>
@ -57,8 +53,6 @@
<a href="https://gitter.im/ethereum/go-ethereum" target="_blank" class="btn btn-success" style="margin: 4px;"><i class="fa fa-user-circle" aria-hidden="true"></i> Chat on Gitter</a> <a href="https://gitter.im/ethereum/go-ethereum" target="_blank" class="btn btn-success" style="margin: 4px;"><i class="fa fa-user-circle" aria-hidden="true"></i> Chat on Gitter</a>
</div> </div>
</div> </div>
</div>
</div>
<div class="container mascot-mobile"> <div class="container mascot-mobile">
<img src="./static/images/mascot.png" height="200px" /> <img src="./static/images/mascot.png" height="200px" />

@ -29,6 +29,9 @@
.mascot-mobile { .mascot-mobile {
display: none; display: none;
} }
.hide-on-small-screen {
display: block;
}
.featurette-heading { .featurette-heading {
font-size: 50px; font-size: 50px;
} }
@ -38,7 +41,4 @@
.featurette-image { .featurette-image {
margin-top: 30px; margin-top: 30px;
} }
.hide-on-small-screen {
display: block;
}
} }

Loading…
Cancel
Save