Created
May 28, 2010 22:56
-
-
Save ejhayes/417859 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Copyright (c) 2007, Yahoo! Inc. All rights reserved. | |
Code licensed under the BSD License: | |
http://developer.yahoo.net/yui/license.txt | |
version: 2.2.0 | |
*/ | |
body {font:13px 'Helvetica',arial,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}select, input, textarea {font:99% arial,helvetica,clean,sans-serif;}pre, code {font:115% monospace;*font-size:100%;}body * {line-height:1.22em;} | |
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}/*ol,ul {list-style:none;}*/caption,th {text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym {border:0;} | |
/* end of yahoo reset and fonts */ | |
body {color:#333; background: #232f2e; line-height:1.3;} | |
p {margin:0 0 20px;} | |
a {color:#636363;} | |
a:hover {text-decoration:none;} | |
strong {font-weight:bold;} | |
em {font-style: italic;} | |
h1,h2,h3,h4,h5,h6 {font-weight:bold;} | |
h1 {font-size:197%; margin:30px 0; color: #4f6f6c;} | |
h2 {font-size:174%; margin:20px 0; color:#4f6f6c;} | |
h3 {font-size:152%; margin:10px 0;} | |
h4 {font-size:129%; margin:10px 0;} | |
pre {background:#eee; margin:0 0 20px; padding:20px; border:1px solid #ccc; font-size:100%; overflow:auto;} | |
code {font-size:100%; margin:0; padding:0;} | |
ul, ol {margin:10px 0 10px 25px;} | |
ol li {margin:0 0 10px;} | |
div#wrapper {background:#fff; width:960px; margin:0 auto; padding:20px; border:10px solid #0f1616; border-width:0 10px 10px 10px;} | |
div#header {position:relative; border-bottom:1px dotted; margin:0 0 10px; padding:0 0 10px;} | |
div#header p {margin:0; padding:0;} | |
div#header h1 {margin:0; padding:0;} | |
ul#nav {position:absolute; top:0; right:0; list-style:none; margin:0; padding:0;} | |
ul#nav li {display:inline; padding:0 0 0 5px;} | |
ul#nav li a {} | |
div#content {} | |
div#footer {margin:40px 0 0; border-top:1px dotted; padding:10px 0 0;} | |
.left {float:left;} | |
.right {float:right;} | |
.clear {clear:both;} | |
/* multiselect styles */ | |
.multiselect { | |
width: 560px; | |
height: 200px; | |
} | |
#switcher { | |
margin-top: 20px; | |
} | |
form {margin: 0; padding: 0;} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Message Boxes */ | |
.error, | |
.notice, | |
.success { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; } | |
.error { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; } | |
.notice { background: #FFF6BF; color: #514721; border-color: #FFD324; } | |
.success { background: #E6EFC2; color: #264409; border-color: #C6D880; } | |
.error a { color: #8a1f11; } | |
.notice a { color: #514721; } | |
.success a { color: #264409; } | |
/* Interface Elements */ | |
input.text { width:125px; } | |
select.field { width:135px; } | |
select.condition { width:120px; } | |
div.clear { padding-bottom:5px; } | |
h3,h4 {margin:0} | |
table thead th { font-weight:700; border-bottom:1px solid #ccc; } | |
table thead th.field { width:150px; } | |
div#footer { text-align:center; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment