Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
CSS Format/Update for new JS
  • Loading branch information
Contra committed Sep 18, 2011
1 parent 285d277 commit 0d8308d
Showing 1 changed file with 79 additions and 48 deletions.
127 changes: 79 additions & 48 deletions src/style.css
@@ -1,48 +1,79 @@
html,body{
margin:0;padding:0;
}
body{background-color: #F4F4F4;}
a{
text-decoration: none; color:#333; line-height:1.6;
}
a:hover{
text-decoration: underline;
}
i{
font-size: 12px;
}
ul{
list-style-type: none;
}
pre{
font:14px/ 1.6 Monaco, Consolas, 'Lucida Console', monospace;
}
h3{

font-family: "lucida grande","lucida sans unicode", sans-serif;
display: inline; font-weight: normal;
}
/* sidebar is directly taken from backbone.js*/
#sidebar {
background: #fff;
position: fixed;
top: 0; left: 0; bottom: 0;
width: 180px;
overflow-y: auto;
overflow-x: hidden;
padding: 15px 0 15px 15px;
border-right: 1px solid #ddd;
box-shadow: 0 0 20px #ccc; -webkit-box-shadow: 0 0 20px #ccc; -moz-box-shadow: 0 0 20px #ccc;
}
#links{
list-style-position: inside; padding:15px 0 0 0; margin:0;

}
#a{
margin-left:190px;
}
.l{
border-bottom: 1px dotted #ccc;
padding:15px 0;

}
html,body
{
margin:0;
padding:0;
}

body
{
background-color:#F4F4F4;
}

a
{
text-decoration:none;
color:#333;
line-height:1.6;
}

a:hover
{
text-decoration:underline;
}

i
{
font-size:12px;
}

ul
{
list-style-type:none;
}

pre
{
font:14px/ 1.6 Monaco, Consolas, 'Lucida Console', monospace;
}

h3
{
font-family:"lucida grande","lucida sans unicode", sans-serif;
display:inline;
font-weight:400;
}

#sidenav
{
background:#fff;
position:fixed;
top:0;
left:0;
bottom:0;
width:180px;
overflow-y:auto;
overflow-x:hidden;
border-right:1px solid #ddd;
box-shadow:0 0 20px #ccc;
-webkit-box-shadow:0 0 20px #ccc;
-moz-box-shadow:0 0 20px #ccc;
padding:15px 0 15px 15px;
}

#links
{
list-style-position:inside;
margin:0;
padding:15px 0 0;
}

#content
{
margin-left:190px;
}

.name
{
border-bottom:1px dotted #ccc;
padding:15px 0;
}

0 comments on commit 0d8308d

Please sign in to comment.