fix switch between mobile/desktop design
This commit is contained in:
parent
3058a06c03
commit
c474c4082b
16
index.html
16
index.html
|
@ -46,17 +46,11 @@
|
|||
|
||||
<div class="jumbotron">
|
||||
<div class="container mascot">
|
||||
<div class="row">
|
||||
<div class="col-lg-2">
|
||||
</div>
|
||||
<div class="col-lg-8">
|
||||
<h1>Go Ethereum</h1>
|
||||
<h2>Official Go implementation of the Ethereum protocol</h2>
|
||||
<br/>
|
||||
<a href="https://github.com/ethereum/go-ethereum" target="_blank" class="btn btn-success" style="margin: 4px;"><i class="fa fa-github" aria-hidden="true"></i> View on GitHub</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>
|
||||
<h1>Go Ethereum</h1>
|
||||
<h2>Official Go implementation of the Ethereum protocol</h2>
|
||||
<br/>
|
||||
<a href="https://github.com/ethereum/go-ethereum" target="_blank" class="btn btn-success" style="margin: 4px;"><i class="fa fa-github" aria-hidden="true"></i> View on GitHub</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>
|
||||
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
.mascot-mobile {
|
||||
display: none;
|
||||
}
|
||||
.hide-on-small-screen {
|
||||
display: block;
|
||||
}
|
||||
.featurette-heading {
|
||||
font-size: 50px;
|
||||
}
|
||||
|
@ -38,7 +41,4 @@
|
|||
.featurette-image {
|
||||
margin-top: 30px;
|
||||
}
|
||||
.hide-on-small-screen {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue