Last active
January 3, 2016 02:09
-
-
Save mtvee/8393542 to your computer and use it in GitHub Desktop.
fossil css
This file contains hidden or 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
/* General settings for the entire page */ | |
body { | |
margin: 0ex 1ex; | |
padding: 0px; | |
background-color: white; | |
font-family: verdana, ariel, sans-serif; | |
font-size: 13px; | |
} | |
a { | |
text-decoration: none; | |
color: #cb4b16; | |
} | |
/* The project logo in the upper left-hand corner of each page */ | |
div.logo { | |
display: table-cell; | |
text-align: center; | |
vertical-align: bottom; | |
font-weight: bold; | |
color: #222; | |
min-width: 200px; | |
white-space: nowrap; | |
} | |
/* The page title centered at the top of each page */ | |
div.title { | |
display: table-cell; | |
font-size: 2em; | |
font-weight: bold; | |
text-align: center; | |
padding: 0 0 0 1em; | |
color: #222; | |
vertical-align: bottom; | |
width: 100%; | |
} | |
div.title small { | |
float: left; | |
margin-top: -40px; | |
margin-left: -40px; | |
} | |
/* The login status message in the top right-hand corner */ | |
div.status { | |
display: table-cell; | |
text-align: right; | |
vertical-align: bottom; | |
color: #444; | |
font-size: 0.8em; | |
font-weight: bold; | |
min-width: 200px; | |
white-space: nowrap; | |
} | |
/* The header across the top of the page */ | |
div.header { | |
display: table; | |
width: 100%; | |
} | |
/* The main menu bar that appears at the top of the page beneath | |
** the header */ | |
div.mainmenu { | |
padding: 5px 10px 5px 10px; | |
font-size: 0.9em; | |
font-weight: bold; | |
text-align: center; | |
letter-spacing: 1px; | |
background-color: #222; | |
border-top-left-radius: 8px; | |
border-top-right-radius: 8px; | |
color: white; | |
} | |
/* The submenu bar that *sometimes* appears below the main menu */ | |
div.submenu, div.sectionmenu { | |
padding: 3px 10px 3px 0px; | |
font-size: 0.9em; | |
text-align: center; | |
background-color: #444; | |
color: white; | |
} | |
div.mainmenu a, div.mainmenu a:visited, div.submenu a, div.submenu a:visited, | |
div.sectionmenu>a.button:link, div.sectionmenu>a.button:visited { | |
padding: 3px 10px 3px 10px; | |
color: white; | |
text-decoration: none; | |
} | |
div.mainmenu a:hover, div.submenu a:hover, div.sectionmenu>a.button:hover { | |
color: #222; | |
background-color: white; | |
} | |
/* All page content from the bottom of the menu or submenu down to | |
** the footer */ | |
div.content { | |
padding: 0ex 1ex 1ex 1ex; | |
border: solid #aaa; | |
border-width: 1px; | |
} | |
/* Some pages have section dividers */ | |
div.section { | |
margin-bottom: 0px; | |
margin-top: 1em; | |
padding: 1px 1px 1px 1px; | |
font-size: 1.2em; | |
font-weight: bold; | |
background-color: #222; | |
color: white; | |
white-space: nowrap; | |
} | |
/* The "Date" that occurs on the left hand side of timelines */ | |
div.divider { | |
background: #ddd; | |
border: 2px #444 solid; | |
border-radius: 3px; | |
font-size: 1em; font-weight: normal; | |
padding: .25em; | |
margin: .2em 0 .2em 0; | |
float: left; | |
clear: left; | |
white-space: nowrap; | |
} | |
/* The footer at the very bottom of the page */ | |
div.footer { | |
clear: both; | |
font-size: 0.8em; | |
padding: 5px 10px 5px 10px; | |
text-align: right; | |
background-color: #222; | |
border-bottom-left-radius: 8px; | |
border-bottom-right-radius: 8px; | |
color: white; | |
} | |
/* Hyperlink colors in the footer */ | |
div.footer a { color: white; } | |
div.footer a:link { color: white; } | |
div.footer a:visited { color: white; } | |
div.footer a:hover { background-color: white; color: #558195; } | |
/* verbatim blocks */ | |
pre.verbatim { | |
background-color: #f5f5f5; | |
padding: 0.5em; | |
white-space: pre-wrap; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment