Skip to content

Commit

Permalink
Add base css
Browse files Browse the repository at this point in the history
  • Loading branch information
davelester committed Feb 21, 2012
1 parent 40539ac commit 5f30dde
Showing 1 changed file with 91 additions and 0 deletions.
91 changes: 91 additions & 0 deletions css/base.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
/* Let's reset some default values */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}

/* Some site-specific magic */

body {
background: #FFCC00;
font-family: Helvetica Neue, Helvetica, Arial, sans-serif; }

h1 {
font-size: 30px;
line-height: 36px;
margin-bottom: 18px;
font-weight: normal;
text-align: center; }

h2 {
font-size: 1.5em;
line-height: 1.5em;
margin-bottom: 18px;
font-weight: bold;
margin: 0; }

h3 {
font-size: 1.5em;
line-height: 1.5em;
margin-bottom: 18px;
padding-left: 25px;
font-weight: bold;
margin: 0; }

h4 {
font-size: 20px;
line-height: 18px;
margin-bottom: 18px;
font-weight: bold;
color: #cccccc; }

#container {
background: #FFF;
width: 700px;
margin:0px auto;
padding: 20px 0 20px 0;
margin: 10px auto;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-moz-box-shadow: 0 0 1px #cccccc;
-webkit-box-shadow: 0 0 1px #cccccc;
box-shadow: 0 0 1px #cccccc; }

0 comments on commit 5f30dde

Please sign in to comment.