Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include old commits #123

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ <h2>Select a design</h2>
<a href="http://oodavid.com">David King</a></li>
<li><a href="#solarized">Solarized</a>
<a href="http://twitter.com/heirenton">heirenton</a></li>
<li><a href="#boxes">Boxes</a>
<a href="http://twitter.com/bueltge">bueltge</a></li>
<li><a href="#openwater">Open Water</a>
<a href="https://github.com/gilmoreorless">Gilmore Davidson</a></li>
<li><a href="#html5colors">HTML5 Colors</a>
Expand Down
1 change: 1 addition & 0 deletions styles/boxes-min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

108 changes: 108 additions & 0 deletions styles/boxes.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
/* CSS1K entry
* "Boxes" by Frank Bültge (http://bueltge.de)
* This file is unminified for legibility, for size proof add '-min' to the end of the filename */
body {
background:#eee;
color:#333;
font:16px/24px Helvetica,Arial,sans-serif;
margin:0 auto;
padding:90px
}
a {
color:#fa5232
}
a:hover {
color:#999
}
header {
background:rgba(0,0,0,.7);
position:fixed;
top:0;
left:0;
right:0;
height:55px;
z-index:2
}
h1, h2 {
font:bold 30px/25px Georgia,times,serif
}
p {
margin:1em 0 1.5em
}
ol {
list-style:none;
margin:1.5em 0
}
li {
list-style:decimal;
margin:0 0 8px
}
article section h2, nav h2, nav {
position:absolute
}
article section, nav ul {
background:#fff;
position:relative;
margin:0 0 60px;
padding:5em 2em 1em
}
article section h2, article header {
background:rgba(250,82,50,.8);
color:#fff;
text-align:center;
top:-10px;
left:10px;
right:auto;
padding:15px 20px
}
article header {
position:relative;
display:inline-table;
text-align:left;
left:0;
z-index:1
}
nav {
right:0;
top:0;
width:250px;
z-index:9
}
nav ul {
opacity:0;
padding:20px 5px 10px 30px;
overflow-y:scroll;
}
nav ul:hover {
height:500px;
opacity:1
}
nav h2 {
width:50px;
height:50px;
padding:15px;
background:rgba(249,101,73,.8);
color:#fff;
text-align:center;
right:7px;
-webkit-border-radius:60px;
-moz-border-radius:60px;
border-radius:60px
}
nav h2, nav ul {
font-size:11px
}
nav ul li {
margin:0
}
header, ul a + a {
color:#ccc
}
article section, nav ul, article header, nav ul, article section h2 {
-webkit-border-radius:6px;
-moz-border-radius:6px;
border-radius:6px;
-webkit-box-shadow:-1px 1px 3px rgba(0,0,0,.2);
-moz-box-shadow:-1px 1px 3px rgba(0,0,0,.2);
box-shadow:-1px 1px 3px rgba(0,0,0,.2)
}