style.css (1838B)
1 body { 2 background-color: #ffffd0; 3 font-family: serif; 4 } 5 6 /* Headings */ 7 h1, h2, h3, h4, h5, h6, h7 { 8 text-align: left; 9 width: 100%; 10 } 11 12 h1 { 13 font-size: 1.7em; 14 color: #191970; 15 } 16 17 h2 { 18 font-size: 1.5em; 19 color: blue; 20 } 21 22 h3 { 23 font-size: 1.3em; 24 color: sienna; 25 } 26 27 h4 { 28 font-size: 1.2em; 29 color: purple; 30 } 31 32 h5 { 33 font-size: 1.1em; 34 color: firebrick; 35 } 36 37 h6 { 38 font-size: 1em; 39 color: forestgreen; 40 } 41 42 /* Show asterisks depending on level, but not in org-webring or TOC */ 43 44 h2::before { 45 content: "* "; 46 } 47 h3::before { 48 content: "** "; 49 } 50 h4::before { 51 content: "*** "; 52 } 53 h5::before { 54 content: "**** "; 55 } 56 h6::before { 57 content: "***** "; 58 } 59 60 #table-of-contents h2::before{ 61 content: ""; 62 } 63 64 .org-webring h4::before { 65 content: ""; 66 } 67 68 /* Fit images */ 69 img { 70 max-width:100%; 71 max-height:100%; 72 } 73 74 p.small, #postamble { 75 margin: 0; 76 font-size: 0.8333333333333334em; 77 margin-bottom: 1.8em; 78 } 79 80 table, col { 81 border-collapse: collapse; 82 border: 2px solid blue; 83 margin-bottom: 1.5em; 84 } 85 86 th, tr { 87 color: blue; 88 } 89 90 #content { 91 max-width: 50em; 92 margin-left: auto; 93 margin-right: auto; 94 } 95 96 #table-of-contents a, #table-of-contents h2 { 97 color: #483d8b; 98 text-decoration: none; 99 margin-bottom: -0.5em; 100 } 101 102 #table-of-contents { 103 background-color: #fafad2; 104 /* margin-top: -1em; */ 105 } 106 107 #text-table-of-contents { 108 line-height: 1; 109 margin: 0px; 110 } 111 112 #postamble { 113 border-top: solid 1em; 114 border-color: skyblue; 115 } 116 117 /* source blocks: get rid of org-mode's boxes, use different 118 background instead */ 119 120 pre { 121 border: none; 122 box-shadow: none; 123 background-color: white; 124 } 125 126 code { 127 color: #595959; 128 } 129 130 pre.src { 131 overflow: auto; 132 } 133 134 pre.src:before { 135 top: 10px; 136 right: 10px; 137 } 138 139 .timestamp { 140 color: purple; 141 }