website design update
This commit is contained in:
parent
7877a565ea
commit
8c3b7b77cc
@ -20,8 +20,10 @@ h1 {
|
||||
}
|
||||
h2 {
|
||||
margin-top: 2.5em;
|
||||
padding: 0.3em 0.5em 0.2em;
|
||||
background: #eee;
|
||||
padding: 0.3em 20px 0.2em;
|
||||
margin-left: -20px;
|
||||
margin-right: -12px;
|
||||
background: #edeeef;
|
||||
border-right: 1px solid #ccc;
|
||||
border-bottom: 1px solid #ccc;
|
||||
|
||||
@ -46,8 +48,8 @@ h4 {
|
||||
margin-right: 160px;
|
||||
}*/
|
||||
.alt {
|
||||
color: #666;
|
||||
font-family: /*"Warnock Pro", "Goudy Old Style",*/"Palatino","Book Antiqua", Georgia, serif;
|
||||
color: #999;
|
||||
font-family: Georgia, serif;
|
||||
font-style: italic;
|
||||
font-weight: normal;
|
||||
}
|
||||
@ -61,18 +63,64 @@ h4 {
|
||||
}
|
||||
|
||||
.nav {
|
||||
margin-left: -5px;
|
||||
line-height: 1em;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
font-size: 1.2em;
|
||||
margin-left: -15px;
|
||||
margin-right: -15px;
|
||||
margin-top: 2em;
|
||||
margin-bottom: 2em;
|
||||
border: 1px solid #dcddde;
|
||||
overflow: hidden;
|
||||
|
||||
background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0.3, white),color-stop(1, #eff0f1));
|
||||
border-radius: 15px;
|
||||
box-shadow: 0 0 8px #eee;
|
||||
}
|
||||
.nav a, .nav span {
|
||||
margin: 0 5px;
|
||||
.nav a {
|
||||
text-decoration: none;
|
||||
color: #555657;
|
||||
}
|
||||
.nav li span {
|
||||
background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0.3, #f8f9fa),color-stop(1, #d4d5d6));
|
||||
color: #333;
|
||||
}
|
||||
.nav li a:hover {
|
||||
background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0.4, #f6f7f8),color-stop(1, #eff0f1));
|
||||
color: black;
|
||||
}
|
||||
.nav li a, .nav li span {
|
||||
float: left;
|
||||
display: inline;
|
||||
padding: 10px 15px;
|
||||
border-right: 1px solid #ddd;
|
||||
}
|
||||
.nav span a {
|
||||
.nav li a.github-link,
|
||||
.nav li a.twitter-link {
|
||||
padding-left: 35px;
|
||||
font-weight: normal;
|
||||
float: right;
|
||||
border-right: none;
|
||||
border-left: 1px solid #ddd;
|
||||
}
|
||||
.nav li a.cloudmade-link {
|
||||
padding: 4px 8px;
|
||||
opacity: 0.7;
|
||||
}
|
||||
.nav li a.cloudmade-link img {
|
||||
margin: 0;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.nav li a.github-link {
|
||||
background: url(https://github.com/favicon.png) 15px center no-repeat;
|
||||
}
|
||||
.nav li a.twitter-link {
|
||||
background: url(http://twitter.com/phoenix/favicon.ico) 15px center no-repeat;
|
||||
}
|
||||
|
||||
|
||||
table { border-collapse: collapse; }
|
||||
th { background:#e5ecf9; }
|
||||
th { background:/*#e5ecf9;*/ #f3f3f3; }
|
||||
|
||||
th, td {
|
||||
padding: 4px 5px;
|
||||
@ -83,15 +131,10 @@ th, td {
|
||||
top: 0;
|
||||
right: 0;
|
||||
border: 0;
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
a.github-link {
|
||||
background: url(https://github.com/favicon.png) left center no-repeat;
|
||||
padding-left: 20px;
|
||||
}
|
||||
a.twitter-link {
|
||||
background: url(http://twitter.com/phoenix/favicon.ico) left center no-repeat;
|
||||
padding-left: 20px;
|
||||
a:hover #forkme {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.javascript .keyword {
|
||||
|
@ -27,17 +27,15 @@
|
||||
<h1>Leaflet</h1>
|
||||
<h3 class="alt">A Modern, Lightweight Open-Source JavaScript Library for Interactive Maps by <a href="http://cloudmade.com">CloudMade</a></h3>
|
||||
|
||||
<hr />
|
||||
<p class="nav large quiet">
|
||||
<a href="index.html">Home</a> |
|
||||
<span>Features</span> |
|
||||
<a href="reference.html">Documentation</a> |
|
||||
<a href="#">Examples</a> |
|
||||
<a href="http://github.com/CloudMade/Leaflet/zipball/master">Download (zip)</a> |
|
||||
<a class="github-link" href="http://github.com/CloudMade/Leaflet">Source on GitHub</a> |
|
||||
<a class="twitter-link" href="http://twitter.com/LeafletJS">Follow on Twitter</a>
|
||||
</p>
|
||||
<hr />
|
||||
<ul class="nav clearfix">
|
||||
<li><a href="index.html">Home</a></li>
|
||||
<li><span>Features</span></li>
|
||||
<li><a href="reference.html">Documentation</a></li>
|
||||
<li><a href="#">Examples</a></li>
|
||||
<li><a href="http://github.com/CloudMade/Leaflet/zipball/master">Download (zip)</a></li>
|
||||
<li><a class="twitter-link" href="http://twitter.com/LeafletJS">@LeafletJS</a></li>
|
||||
<li><a class="github-link" href="http://github.com/CloudMade/Leaflet">GitHub Repo</a></li>
|
||||
</ul>
|
||||
|
||||
<h3>Leaflet features</h3>
|
||||
|
||||
|
24
index.html
24
index.html
@ -27,17 +27,16 @@
|
||||
<h1>Leaflet</h1>
|
||||
<h3 class="alt">A Modern, Lightweight Open-Source JavaScript Library for Interactive Maps by <a href="http://cloudmade.com">CloudMade</a></h3>
|
||||
|
||||
<hr />
|
||||
<p class="nav large quiet">
|
||||
<span>Home</span> |
|
||||
<a href="features.html">Features</a> |
|
||||
<a href="reference.html">Documentation</a> |
|
||||
<a href="#">Examples</a> |
|
||||
<a href="http://github.com/CloudMade/Leaflet/zipball/master">Download (zip)</a> |
|
||||
<a class="github-link" href="http://github.com/CloudMade/Leaflet">Source on GitHub</a> |
|
||||
<a class="twitter-link" href="http://twitter.com/LeafletJS">Follow on Twitter</a>
|
||||
</p>
|
||||
<hr />
|
||||
<ul class="nav clearfix">
|
||||
<!-- <li><a class="cloudmade-link" href="http://cloudmade.com"><img src="http://cloudmade.com/images/layout/cloudmade-logo.png" width="32" /></a></li> -->
|
||||
<li><span>Home</span></li>
|
||||
<li><a href="features.html">Features</a></li>
|
||||
<li><a href="reference.html">Documentation</a></li>
|
||||
<li><a href="#">Examples</a></li>
|
||||
<li><a href="http://github.com/CloudMade/Leaflet/zipball/master">Download (zip)</a></li>
|
||||
<li><a class="twitter-link" href="http://twitter.com/LeafletJS">@LeafletJS</a></li>
|
||||
<li><a class="github-link" href="http://github.com/CloudMade/Leaflet">GitHub Repo</a></li>
|
||||
</ul>
|
||||
|
||||
<h3>About the library</h3>
|
||||
<p>Leaflet is a modern, lightweight BSD-licensed JavaScript library for making tile-based interactive maps for <em>both desktop and mobile</em> web browsers, developed by <a href="http://cloudmade.com">CloudMade</a> to form the core of its next generation JavaScript API.</p>
|
||||
@ -50,8 +49,6 @@
|
||||
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fcloudmade.github.com%2FLeaflet%2F&layout=standard&show_faces=false&width=660&action=like&font=arial&colorscheme=light&height=35" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:660px; height:24px;" allowTransparency="true"></iframe>
|
||||
</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<h3>Basic usage example</h3>
|
||||
<div id="map"></div>
|
||||
<script>
|
||||
@ -85,7 +82,6 @@ map.addLayer(marker);
|
||||
marker.bindPopup("A pretty CSS3 popup.<br />Easily customizable.").openPopup();</code></pre>
|
||||
|
||||
<hr />
|
||||
|
||||
<p class="quiet">© 2011 <a href="http://cloudmade.com">CloudMade</a>. Map data © 2011 <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>.</p>
|
||||
</div>
|
||||
|
||||
|
@ -25,17 +25,15 @@
|
||||
<h1>Leaflet</h1>
|
||||
<h3 class="alt">A Modern, Lightweight Open-Source JavaScript Library for Interactive Maps by <a href="http://cloudmade.com">CloudMade</a></h3>
|
||||
|
||||
<hr />
|
||||
<p class="nav large quiet">
|
||||
<a href="index.html">Home</a> |
|
||||
<a href="features.html">Features</a> |
|
||||
<span>Documentation</span> |
|
||||
<a href="#">Examples</a> |
|
||||
<a href="http://github.com/CloudMade/Leaflet/zipball/master">Download (zip)</a> |
|
||||
<a class="github-link" href="http://github.com/CloudMade/Leaflet">Source on GitHub</a> |
|
||||
<a class="twitter-link" href="http://twitter.com/LeafletJS">Follow on Twitter</a>
|
||||
</p>
|
||||
<hr />
|
||||
<ul class="nav clearfix">
|
||||
<li><a href="index.html">Home</a></li>
|
||||
<li><a href="features.html">Features</a></li>
|
||||
<li><span>Documentation</span></li>
|
||||
<li><a href="#">Examples</a></li>
|
||||
<li><a href="http://github.com/CloudMade/Leaflet/zipball/master">Download (zip)</a></li>
|
||||
<li><a class="twitter-link" href="http://twitter.com/LeafletJS">@LeafletJS</a></li>
|
||||
<li><a class="github-link" href="http://github.com/CloudMade/Leaflet">GitHub Repo</a></li>
|
||||
</ul>
|
||||
|
||||
<div id="toc" class="clearfix">
|
||||
<div class="span-5 colborder">
|
||||
@ -118,7 +116,6 @@
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<hr />
|
||||
|
||||
<h2 id="map-class">L.Map</h2>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user