saait

Simple static page generator
git clone https://git.sinitax.com/codemadness/saait
Log | Files | Refs | README | LICENSE | Upstream | sfeed.txt

print.css (483B)


      1a,
      2a:visited {
      3	color: inherit;
      4	text-decoration: none;
      5}
      6/* HTML5 semantic tags: some (older) browsers display this inline by default */
      7article, figcaption, figure, header, main {
      8	display: block;
      9}
     10/* hide navigation menus when printing */
     11nav,
     12#menuwrap,
     13.hidden {
     14	display: none;
     15}
     16table, img {
     17	border: 0;
     18}
     19table tr td {
     20	padding: 2px 10px 2px 0px;
     21}
     22pre {
     23	margin: 0;
     24}
     25code {
     26	border: 3px solid #aaa;
     27	display: block;
     28	overflow-x: auto;
     29	padding: 5px;
     30	word-wrap: normal;
     31}