From f8c9eb5220afaf2f9a62f9a176a45913240f4081 Mon Sep 17 00:00:00 2001 From: raylu Date: Thu, 7 Apr 2011 00:27:27 -0400 Subject: Initial import from Dropbox --- css/pagestyle.css | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 css/pagestyle.css (limited to 'css/pagestyle.css') diff --git a/css/pagestyle.css b/css/pagestyle.css new file mode 100644 index 0000000..8a834bb --- /dev/null +++ b/css/pagestyle.css @@ -0,0 +1,61 @@ +body { + font-size: 12pt; + font-family: helvetica, sans-serif; + background-color: #121212; + color: #ffffff; + + min-width: 800px; + margin: 0; + padding: 6px; +} + +form { + display: inline; +} + +a:link, a:visited, a:active { + text-decoration: underline; + color: #FFFFCC; + transition:color .4s ease-out; + -webkit-transition:color .4s ease-out; + -o-transition:color .4s ease-out; + -moz-transition:color .4s ease-out; +} +a:hover { + color: #EEDDBB; + text-decoration: none; + transition:color 0s ease-out; + -webkit-transition:color 0s ease-out; + -o-transition:color 0s ease-out; + -moz-transition:color 0s ease-out; +} + +.col1 { + float: left; + width: 25%; + min-width: 300px; + padding: 0 25px; +} +.col2 { + float: left; + width: 50%; + margin: 0 auto; +} + +.float { + float:left; +} +.lfloat { + float:right; +} + +.topbar { + background: #002266; + /* + background: #000044 url(../images/OverlayStart50i.png); + height:35px; + */ + width: 95%; + padding: 5px 15px; + margin: 0 auto; +} -- cgit v1.2.3