woozle.org/style.css

71 lines
823 B
CSS
Raw Normal View History

2010-11-17 13:23:04 -07:00
html {
font-family: sans-serif;
2012-01-18 08:47:33 -07:00
background: #eee;
2010-11-17 13:23:04 -07:00
}
body {
2012-08-01 09:04:46 -06:00
max-width: 40em;
2010-11-17 13:23:04 -07:00
margin: auto;
2012-08-01 09:04:46 -06:00
color: #825;
2012-01-18 08:47:33 -07:00
background: #fff;
2010-11-17 13:23:04 -07:00
padding: 1em;
}
h1#title {
2012-08-01 18:50:29 -06:00
color: #ccc;
2010-11-17 13:23:04 -07:00
font-size: 1.5em;
font-weight: bold;
margin: 0;
}
h1#title:before {
2010-11-17 13:23:04 -07:00
content: "Woozle";
2012-08-01 09:04:46 -06:00
font-size: 3em;
font-weight: normal;
2010-11-17 13:23:04 -07:00
padding-right: 1em;
}
nav {
font-size: 80%;
2012-08-01 09:04:46 -06:00
text-align: center;
2010-11-17 13:23:04 -07:00
}
nav ul {
2012-01-18 08:47:33 -07:00
background-color: #eee;
2010-11-17 13:23:04 -07:00
margin: 0;
padding: 0 1em;
}
nav li {
font-weight: bold;
display: inline;
padding: 0 1em;
}
a {
text-decoration: none;
2012-08-01 09:04:46 -06:00
color: #793;
2010-11-17 13:23:04 -07:00
}
a:hover {
text-decoration: underline;
}
h1 {
font-size: 150%;
border-bottom: 1px solid #ddd;
}
2012-02-22 12:43:35 -07:00
h2 {
font-size: 115%;
}
2010-11-17 13:23:04 -07:00
a img
{
border: 1px #e8b solid;
}
img.left {
float: left;
margin-right: 10px;
}
pre {
2012-01-18 08:47:33 -07:00
background-color: #eee;
2010-11-17 13:23:04 -07:00
}