parent
d2a6af8eda
commit
3229f1f791
@ -0,0 +1,50 @@ |
||||
<!DOCTYPE html> |
||||
<head> |
||||
<meta charset="utf-8"> |
||||
<title>wasm-pack</title> |
||||
<link href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css" rel="stylesheet"> |
||||
<link rel="stylesheet" href="./public/custom.css" /> |
||||
</head> |
||||
<body> |
||||
<nav class="navbar"> |
||||
<div class="container"> |
||||
<ul class="navbar-list"> |
||||
<li class="navbar-logo"> |
||||
<a href="/"> |
||||
<img src="./public/img/rustwasm.png"> |
||||
</a> |
||||
</a> |
||||
<li class="navbar-item"> |
||||
<a href="https://github.com/rustwasm/wasm-pack/issues/new/choose">File an Issue</a> |
||||
</li> |
||||
<li class="navbar-item"> |
||||
<a href="/book">Documentation</a> |
||||
</li> |
||||
<li class="navbar-item"> |
||||
<a href="/installer">Install</a> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</nav> |
||||
<header> |
||||
<div class="container"> |
||||
<div class="row"> |
||||
<div class="seven columns" id="logo"> |
||||
<img src="./public/img/wasm-ferris.png"alt="wasm ferris logo" /> |
||||
<h1><code>wasm-pack</code></h1> |
||||
<h2>📦✨ your favorite rust -> wasm workflow tool!</h2> |
||||
</div> |
||||
<div class="five columns" id="installer"> |
||||
<a class="button button-primary" href="/installer">✨ Install wasm-pack 0.4.2 ✨</a> |
||||
<p>24 July 2018 | |
||||
<a href="https://github.com/rustwasm/wasm-pack/releases/tag/v0.4.2"> |
||||
Release Notes |
||||
</a> |
||||
</p> |
||||
</div> |
||||
</div> |
||||
</header> |
||||
</div> |
||||
</div> |
||||
<script type="text/javascript" src="installer/wasm-pack.js"></script> |
||||
</body> |
@ -0,0 +1,98 @@ |
||||
@import url('https://fonts.googleapis.com/css?family=Raleway'); |
||||
|
||||
.navbar { |
||||
display: block; |
||||
width: 100%; |
||||
height: 6.5rem; |
||||
background: #fff; |
||||
z-index: 99; |
||||
border-bottom: 1px solid #eee; |
||||
} |
||||
|
||||
.navbar-list { |
||||
list-style: none; |
||||
margin-bottom: 0; |
||||
} |
||||
|
||||
.navbar-item { |
||||
position: relative; |
||||
float: right; |
||||
margin-bottom: 0; |
||||
} |
||||
|
||||
.navbar-logo { |
||||
position: relative; |
||||
float: left; |
||||
margin-bottom: 0; |
||||
} |
||||
|
||||
.navbar-logo a img { |
||||
width: 50px; |
||||
} |
||||
|
||||
.navbar-item a { |
||||
text-transform: uppercase; |
||||
font-size: 11px; |
||||
font-weight: 600; |
||||
letter-spacing: .2rem; |
||||
margin-right: 35px; |
||||
text-decoration: none; |
||||
line-height: 6.5rem; |
||||
color: #222; |
||||
} |
||||
|
||||
#logo, #installer { |
||||
text-align: center; |
||||
} |
||||
|
||||
#logo { |
||||
padding: 50px; |
||||
} |
||||
|
||||
#logo img { |
||||
width: 80%; |
||||
} |
||||
|
||||
#logo h1, h2 { |
||||
text-align: center; |
||||
} |
||||
|
||||
#logo h2 { |
||||
font-size: 1.8rem; |
||||
letter-spacing: 0.01rem; |
||||
color: #222; |
||||
} |
||||
|
||||
#installer a.button { |
||||
width: 100%; |
||||
height: 20%; |
||||
font-size: 1.8rem; |
||||
padding: 1.8rem; |
||||
margin: 10rem 0 1.8rem 0; |
||||
background-color: #6556EC; |
||||
border-color: #6556EC; |
||||
} |
||||
|
||||
#installer img { |
||||
padding: 50px; |
||||
width: 20%; |
||||
} |
||||
|
||||
.curl { |
||||
padding: 50px; |
||||
} |
||||
|
||||
.curl p { |
||||
margin-top: 50px; |
||||
} |
||||
|
||||
.curl code { |
||||
padding: 20px; |
||||
font-size: 2rem; |
||||
background-color: #000; |
||||
color: #fff; |
||||
} |
||||
|
||||
a { |
||||
color: #6556EC; |
||||
} |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 117 KiB |
Loading…
Reference in new issue