Created
September 15, 2009 12:58
-
-
Save inky/187274 to your computer and use it in GitHub Desktop.
Theme for http://start.io/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>start.io/{Username}</title> | |
<style type="text/css"> | |
body { | |
background: #fff; | |
color: #000; | |
font: 300 1em/1.5 'Helvetica Neue', 'Helvetica', sans-serif; | |
margin: 3em 0 3em 2em; | |
} | |
h1, h2 { | |
font-family: 'Gill Sans', 'Helvetica Neue', 'Helvetica', sans-serif; | |
text-transform: uppercase; | |
} | |
h1 { | |
font-size: 1.2em; | |
line-height: 1.25; | |
margin: 0 0 2.5em; | |
} | |
h2 { | |
color: #444; | |
font-size: 1em; | |
font-weight: 300; | |
line-height: 1.5; | |
margin: 0 0 1.5em; | |
} | |
.group { | |
float: left; | |
margin: 0 2em 3em 0; | |
width: 18em; | |
} | |
ol { | |
color: #bbb; | |
list-style-type: katakana; | |
margin: 0 0 0 2em; | |
padding: 0; | |
} | |
ol li { | |
padding-left: 1em; | |
text-indent: -1em; | |
} | |
a { | |
-webkit-transition: | |
color 0.25s ease-out, | |
border 0.25s ease-out; | |
} | |
#body a:link, #body a:visited { | |
color: #000; | |
font-weight: 600; | |
text-decoration: none; | |
border-bottom: 1px solid #bbb; | |
border-left: 0 solid #fff; | |
border-right: 1em solid #fff; | |
} | |
#body a:hover, #body a:active { | |
color: #444; | |
border-right-width: 0; | |
border-left-width: 1em; | |
border-bottom-color: #444; | |
} | |
#body .updated a:link, #body .updated a:visited { | |
color: #d00; | |
} | |
#body .updated a:hover, #body .updated a:active { | |
color: #444; | |
} | |
h1 a { | |
font-weight: 400 !important; | |
border-bottom-width: 0 !important; | |
} | |
.meta { | |
color: #888; | |
font-size: 0.9em; | |
line-height: 1; | |
margin-left: 0.5em; | |
} | |
.clear { | |
clear: both; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="body"> | |
<h1><a href="{Permalink}">{Name}</a></h1> | |
{Groups} | |
<div class="group"> | |
<h2> | |
{Name} | |
{if:Private}<span class="meta">(private)</span>{/if} | |
</h2> | |
<ol> | |
{Links} | |
<li{if:Updated} class="updated"{/if}> | |
<a href="{Permalink}" title="{Clicks} click{if:Clicks != 1}s{/if}">{Title}</a> | |
</li> | |
{/Links} | |
</ol> | |
</div> | |
{/Groups} | |
<br class="clear"> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment