123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257 |
- /*
- * Color Combination
- * #000000 - Text
- * #FF9900 - Link, Hover Link, Dashes
- * #FFFFFF - Background
- * #666666 - Visited Link, Footer
- * #EEEEEC - <pre>
- */
-
- body {
- font-family: 'Droid Sans', sans-serif;
- margin: 0;
- padding: 0;
- border: 0; /* This removes the border around the viewport in old versions of IE */
- width: 100%;
- min-width: 600px; /* Minimum width of layout - remove line if not required */
- color: #000000;
- }
-
- a {
- color: #FF9900;
- font-weight: bold;
- text-decoration: none;
- }
-
- a:visited {
- color: #848484;
- text-decoration: none;
- }
-
- a:hover {
- color: #FF9900;
- text-decoration: underline;
- }
-
- #header {
- clear: both;
- float: left;
- width: 95%;
- padding-left: 1em;
- padding-top: 0.5em;
- padding-bottom: 0.5em;
- border-bottom: dashed #FF9900 2px;
- }
-
- #header h1 {
- display: inline;
- padding-right: 0.5em;
- font-size: 3.5em;
- }
-
- #header h2 {
- display: inline;
- font-size: 2em;
- }
-
- #flattr {
- padding-right: 1.5em;
- padding-bottom: 1em;
- padding-left: 1em;
- float: right;
- clear: both;
- }
-
- #twitter {
- padding-right: 1.5em;
- padding-bottom: 1em;
- padding-left: 1em;
- float: right;
- clear: both;
- }
-
- #reddit {
- padding-right: 1.5em;
- padding-bottom: 1em;
- padding-left: 1em;
- float: right;
- clear: both;
- }
-
- #github {
- padding-right: 3em;
- padding-bottom: 1em;
- padding-left: 1em;
- float: right;
- clear: both;
- }
-
- div#lang {
- text-align: right;
- padding-right: 10em;
- }
-
- span#lang2 {
- line-height: 2em;
- }
-
- .colmask {
- position: relative; /* This fixes the IE7 overflow hidden bug */
- clear: both;
- float: left;
- width: 100%; /* width of whole page */
- overflow: hidden; /* This chops off any overhanging divs */
- }
-
- .colleft {
- float: left;
- width: 100%;
- position: relative;
- }
-
- .content {
- float: left;
- position: relative;
- padding-left: 0.5em;
- padding-right: 0.5em;
- overflow: hidden;
- z-index: 1;
- background-color: #FFFFFF;
- }
-
- .nav {
- float: left;
- position: relative;
- padding: 0 0 0 0;
- padding-right: 1em;
- overflow: hidden;
- background-color: #FFFFFF;
- border-right: solid #FF9900 1px;
- border-bottom: solid #FF9900 1px;
- z-index: 1;
- }
-
- div#logo {
- width: 180px;
- height: 180px;
- box-shadow: 0px 0px 10px #666666;
- border-radius: 8px;
- border: solid #FF9900 3px;
- background-color: #FF9900;
- overflow: hidden;
- padding: 10px;
- margin: 10px;
- }
-
- img#logoImg {
- padding: 0;
- border-radius: 8px;
- width: 180px;
- height: 180px;
- overflow: hidden;
- }
-
- ul#menuList {
- list-style-type: none;
- padding: 0.5em;
- padding-top: 0;
- margin-top: 0;
- }
-
- #recent {
- padding-top: 1.5em;
- padding-bottom: 0.5em;
- }
-
- ul#recentList {
- list-style: none;
- padding:0;
- margin:0;
- }
-
- li.recentDate {
- padding-left: 1em;
- padding-bottom: 0.7em;
- }
-
- li.recentList {
- padding-left: 1em;
- text-indent: -1em;
- }
-
- li.recentList:before {
- content: "→ ";
- }
-
- .leftmenu {
- background: #FFFFFF; /* right column background colour */
- }
-
- .leftmenu .colleft {
- right: 75%; /* right column width */
- background: #FFFFFF; /* left column background colour */
- }
-
- .leftmenu .content {
- width: 70%; /* right column content width */
- left: 102%; /* 100% plus left column left padding */
- }
-
- .leftmenu .nav {
- width: 21%; /* left column content width (column width minus left and right padding) */
- left: 6%; /* (right column left and right padding) plus (left column left padding) */
- }
-
- #dude {
- position: fixed;
- bottom: 0px;
- left: 30px;
- max-width: 20%;
- }
-
- #walter {
- position: fixed;
- bottom: 0px;
- right: 30px;
- max-width: 20%;
- }
-
- #dude:hover {
- z-index: 2;
- }
-
- #walter:hover {
- z-index: 2;
- }
-
- #footer {
- clear: both;
- float: left;
- width: 95%;
- text-align: center;
- font-size: small;
- color: gray;
- margin: 1em;
- }
-
- #footer a {
- color: #666666;
- text-decoration: none;
- }
-
- #footer a:hover {
- color: #666666;
- text-decoration: underline;
- }
-
- #footer a:visited {
- color: #666666;
- text-decoration: none;
- }
-
- pre {
- border: dotted black 2px;
- background: #EEEEEC;
- padding: 1em;
- overflow: scroll;
- }
|