/ Published in: CSS
Expand |
Embed | Plain Text
@charset "utf-8"; /* * Author: Aaron Alexander (nerdfiles.net) */ /* Kill defaults */ /*-----------------------------------------------------------------------------------*/ * { margin: 0; padding: 0; border: none; outline: 0; list-style: none; vertical-align: baseline; } /* Definitions */ /*-----------------------------------------------------------------------------------*/ body { font: 12px Helvetica; line-height: 1.5em; } /* Common elements (block) */ /*-----------------------------------------------------------------------------------*/ h1 { } h2 { } h3 { } h4 { } h5 { } h6 { } form { } input { } ul { } ul li { } ol { } ol li { } dl { } dt { } dd { } table { border: 0px; border-collapse: collapse; border-spacing: 0px; } caption { } table td, table th { margin: 0px; padding: 0.1em; empty-cells: show; vertical-align: top; } table tr { } p { margin: 0.5em 0; } blockquote { } blockquote p { } address { font-style: normal; } acronym, abbr { border-bottom: 1px #000 dashed; cursor: help; } /* Common elements (inline) */ /*-----------------------------------------------------------------------------------*/ img { border: none; } input { } label { } span { } /* Hyperlinks */ /*-----------------------------------------------------------------------------------*/ a { text-decoration: none; } a:hover { } a img { border: none; } /* Classes for those who like to overcompensate (General global classes) */ /*-----------------------------------------------------------------------------------*/ .clear { clear: both; } .clear-left { clear: left; } .clear-right { clear: right; } .clear-hack:after { content: "clear"; clear: both; display: block; visibility: hidden; height: 0; } .float-left { float: left; } .float-right { float: right; } .text-left { text-align: left; } .text-right { text-align: right; } .text-center { text-align: center; } .text-justify { text-align: justify; } .bold { font-weight: bold; } .italic { font-style: italic; } .underline { border-bottom: 1px solid; } .highlight { background: #ffc; } .img-left { float: left; margin: 0.2em 1em 0.2em 0; } .img-right { float: right; margin: 0.2em 0 0.2em 1em; } .nopadding { padding: 0; } .noindent { margin-left: 0; padding-left: 0; } .nobullet { list-style: none; list-style-image: none; } .alignright { float: right; } .alignright { float: left; } /* Local classes */ /*-----------------------------------------------------------------------------------*/ /* #jacket (wrapper) */ /*-----------------------------------------------------------------------------------*/ #jacket { width: 960px; margin: 0 auto; } /* #header */ /*-----------------------------------------------------------------------------------*/ #header { } /* #nav */ /*-----------------------------------------------------------------------------------*/ #nav { } /* #container */ /*-----------------------------------------------------------------------------------*/ #container { } /* #content */ /*-----------------------------------------------------------------------------------*/ #content { } /* #sidebar */ /*-----------------------------------------------------------------------------------*/ #sidebar { } /* #feets */ /*-----------------------------------------------------------------------------------*/ #feets { }
You need to login to post a comment.
