First major stab at the integration of Courtland's CSS into
[selectricity] / public / stylesheets / common.css
diff --git a/public/stylesheets/common.css b/public/stylesheets/common.css
new file mode 100644 (file)
index 0000000..4b53f59
--- /dev/null
@@ -0,0 +1,77 @@
+@charset "UTF-8";
+/* CSS Document */
+
+/****************************************************************
+   Selectricity || selectricity.org
+   Design by Courtland Allen
+  
+   "Reset Reloaded"
+   Thanks to Eric Meyer
+   http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/
+*****************************************************************/
+
+/* common css files */
+
+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, font, img, ins, kbd, q, s, samp,
+small, strike, strong, sub, sup, tt, var,
+dl, dt, dd,
+fieldset, form, label, legend,
+table, caption, tbody, tfoot, thead, tr, th, td {
+       margin: 0;
+       padding: 0;
+       border: 0;
+       font-size: 100%; 
+       font-family: inherit;
+       vertical-align: baseline;
+}
+
+
+#body {
+       font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
+       color: white;
+       font-size: 12px;
+       text-align: left;
+       line-height: 1.5em;
+}
+
+#body a {
+       text-decoration: underline;
+       color: inherit;
+       display: inline;
+       opacity: 0.8;
+}
+
+#body a:hover {
+       opacity: .5;
+}
+
+strong, h2, h3 {
+    font-weight: bold;
+}
+
+h2, h3 {
+       text-transform: uppercase;
+    margin-bottom: 0.5em;
+}
+
+
+/* footer */
+
+#footer {
+       font-size: 11px;
+       font-family: "Trebuchet MS", Trebuchet, Verdana, Arial, Helvetica, sans-serif;
+       margin-top: 40px;
+       text-align: center;
+}
+
+#footer a {
+       text-decoration: none;
+       color: #dc0d13;
+}
+
+#footer a:hover {
+       text-decoration: underline;
+}

Benjamin Mako Hill || Want to submit a patch?