├── README.md ├── banner.html ├── mdcss └── mirror.html /README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /banner.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Document 6 | 89 | 90 | 91 |
92 | 99 |
100 |
101 |
102 |

1

103 |

2

104 |

3

105 |

4

106 |

5

107 |
108 | 109 | 110 |
111 | 194 | 195 | 196 | -------------------------------------------------------------------------------- /mdcss: -------------------------------------------------------------------------------- 1 | .markdown-here-wrapper { 2 | font-size: 16px; 3 | line-height: 1.8em; 4 | letter-spacing: 0.1em; 5 | } 6 | 7 | 8 | pre, code { 9 | font-size: 14px; 10 | font-family: Roboto, 'Courier New', Consolas, Inconsolata, Courier, monospace; 11 | margin: auto 5px; 12 | } 13 | 14 | code { 15 | white-space: pre-wrap; 16 | border-radius: 2px; 17 | display: inline; 18 | } 19 | 20 | pre { 21 | font-size: 15px; 22 | line-height: 1.4em; 23 | display: block; !important; 24 | } 25 | 26 | pre code { 27 | white-space: pre; 28 | overflow: auto; 29 | border-radius: 3px; 30 | padding: 1px 1px; 31 | display: block !important; 32 | } 33 | 34 | strong, b{ 35 | color: #BF360C; 36 | } 37 | 38 | em, i { 39 | color: #009688; 40 | } 41 | 42 | hr { 43 | border: 1px solid #BF360C; 44 | margin: 1.5em auto; 45 | } 46 | 47 | p { 48 | margin: 1.5em 5px !important; 49 | } 50 | 51 | table, pre, dl, blockquote, q, ul, ol { 52 | margin: 10px 5px; 53 | } 54 | 55 | ul, ol { 56 | padding-left: 15px; 57 | } 58 | 59 | li { 60 | margin: 10px; 61 | } 62 | 63 | li p { 64 | margin: 10px 0 !important; 65 | } 66 | 67 | ul ul, ul ol, ol ul, ol ol { 68 | margin: 0; 69 | padding-left: 10px; 70 | } 71 | 72 | ul { 73 | list-style-type: circle; 74 | } 75 | 76 | dl { 77 | padding: 0; 78 | } 79 | 80 | dl dt { 81 | font-size: 1em; 82 | font-weight: bold; 83 | font-style: italic; 84 | } 85 | 86 | dl dd { 87 | margin: 0 0 10px; 88 | padding: 0 10px; 89 | } 90 | 91 | blockquote, q { 92 | border-left: 2px solid #009688; 93 | padding: 0 10px; 94 | color: #777; 95 | quotes: none; 96 | margin-left: 1em; 97 | } 98 | 99 | blockquote::before, blockquote::after, q::before, q::after { 100 | content: none; 101 | } 102 | 103 | h1, h2, h3, h4, h5, h6 { 104 | margin: 20px 0 10px; 105 | padding: 0; 106 | font-style: bold !important; 107 | color: #009688 !important; 108 | text-align: center !important; 109 | margin: 1.5em 5px !important; 110 | padding: 0.5em 1em !important; 111 | } 112 | 113 | h1 { 114 | font-size: 24px !important; 115 | border-bottom: 1px solid #ddd !important; 116 | } 117 | 118 | h2 { 119 | font-size: 20px !important; 120 | border-bottom: 1px solid #eee !important; 121 | } 122 | 123 | h3 { 124 | font-size: 18px; 125 | } 126 | 127 | h4 { 128 | font-size: 16px; 129 | } 130 | 131 | 132 | table { 133 | padding: 0; 134 | border-collapse: collapse; 135 | border-spacing: 0; 136 | font-size: 1em; 137 | font: inherit; 138 | border: 0; 139 | margin: 0 auto; 140 | } 141 | 142 | tbody { 143 | margin: 0; 144 | padding: 0; 145 | border: 0; 146 | } 147 | 148 | table tr { 149 | border: 0; 150 | border-top: 1px solid #CCC; 151 | background-color: white; 152 | margin: 0; 153 | padding: 0; 154 | } 155 | 156 | table tr:nth-child(2n) { 157 | background-color: #F8F8F8; 158 | } 159 | 160 | table tr th, table tr td { 161 | font-size: 16px; 162 | border: 1px solid #CCC; 163 | margin: 0; 164 | padding: 5px 10px; 165 | } 166 | 167 | table tr th { 168 | font-weight: bold; 169 | color: #eee; 170 | border: 1px solid #009688; 171 | background-color: #009688; 172 | } 173 | -------------------------------------------------------------------------------- /mirror.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Document 6 | 99 | 100 | 101 |
102 |
103 | small 104 |
105 |
106 | 137 | 138 | 139 |
140 | 141 |
142 |
143 | 238 | 239 | 240 | --------------------------------------------------------------------------------