1
0
Fork 0

Added subtle up arrow to About page to return to top

website
Mike Gerwitz 2012-05-05 22:42:21 -04:00
parent 0eab617135
commit 1e5afc98cd
No known key found for this signature in database
GPG Key ID: F22BB8158EE30EAB
2 changed files with 10 additions and 0 deletions

View File

@ -56,6 +56,7 @@
// temporary class
Foo( "John Doe" ).sayHello();
</pre>
<a href="#" class="top">&uarr;</a>
<h3 id="inheritance" class="bigemph">
@ -86,6 +87,7 @@
<pre class="js">
<!--%inc scripts/ex/class-final.js-->
</pre>
<a href="#" class="top">&uarr;</a>
<h3 id="abstract" class="bigemph">
@ -100,6 +102,7 @@
<pre class="js">
<!--%inc scripts/ex/class-abstract.js-->
</pre>
<a href="#" class="top">&uarr;</a>
<h3 id="interfaces" class="bigemph">
@ -132,6 +135,7 @@
<pre class="js">
<!--%inc scripts/ex/interface-3.js -->
</pre>
<a href="#" class="top">&uarr;</a>
<h3 id="access-modifiers" class="bigemph">
@ -154,6 +158,7 @@
Attempting to access a private member from within a subtype will result in an
error.
</p>
<a href="#" class="top">&uarr;</a>
<h3 id="static" class="bigemph">
@ -170,6 +175,7 @@
<pre class="js">
<!--%inc scripts/ex/static-members.js -->
</pre>
<a href="#" class="top">&uarr;</a>
<script type="text/javascript" src="scripts/highlight.pack.js"></script>

View File

@ -359,6 +359,10 @@ pre.js {
padding: 1em;
}
a.top {
float: right;
}
/*
github.com style (c) Vasily Polovnyov <vast@whiteants.net>