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="jumbotron">
|
||||||
<div class="container mascot">
|
<div class="container mascot">
|
||||||
<div class="row">
|
<h1>Go Ethereum</h1>
|
||||||
<div class="col-lg-2">
|
<h2>Official Go implementation of the Ethereum protocol</h2>
|
||||||
</div>
|
<br/>
|
||||||
<div class="col-lg-8">
|
<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>
|
||||||
<h1>Go Ethereum</h1>
|
<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>
|
||||||
<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>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -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…
Reference in New Issue