diff options
Diffstat (limited to '_includes')
| -rw-r--r-- | _includes/footer.html | 77 | ||||
| -rw-r--r-- | _includes/header.html | 11 | ||||
| -rw-r--r-- | _includes/highlight.css | 131 | ||||
| -rw-r--r-- | _includes/highlight.min.css | 1 | ||||
| -rw-r--r-- | _includes/site.css | 270 | ||||
| -rw-r--r-- | _includes/site.min.css | 1 |
6 files changed, 0 insertions, 491 deletions
diff --git a/_includes/footer.html b/_includes/footer.html deleted file mode 100644 index a23fda5..0000000 --- a/_includes/footer.html +++ /dev/null | |||
| @@ -1,77 +0,0 @@ | |||
| 1 | <!-- Global site tag (gtag.js) - Google Analytics --> | ||
| 2 | <script async src="https://www.googletagmanager.com/gtag/js?id=UA-12769079-10"></script> | ||
| 3 | <script> | ||
| 4 | window.dataLayer = window.dataLayer || []; | ||
| 5 | function gtag() { | ||
| 6 | dataLayer.push(arguments); | ||
| 7 | } | ||
| 8 | gtag('js', new Date()); | ||
| 9 | gtag('config', 'UA-12769079-10'); | ||
| 10 | </script> | ||
| 11 | |||
| 12 | <!-- Responsive tables --> | ||
| 13 | <script> | ||
| 14 | document.querySelectorAll('table').forEach(function (element) { | ||
| 15 | if (!element.classList.contains('rouge-table')) { | ||
| 16 | let parent = element.parentNode; | ||
| 17 | let wrapper = document.createElement('div'); | ||
| 18 | wrapper.classList.add('responsive-table'); | ||
| 19 | parent.replaceChild(wrapper, element); | ||
| 20 | wrapper.appendChild(element); | ||
| 21 | } | ||
| 22 | }); | ||
| 23 | </script> | ||
| 24 | |||
| 25 | <!-- Open external links in new tab --> | ||
| 26 | <script> | ||
| 27 | let links = document.links; | ||
| 28 | for (let i = 0, linksLength = links.length; i < linksLength; i++) { | ||
| 29 | if (links[i].hostname != window.location.hostname) { | ||
| 30 | links[i].target = '_blank'; | ||
| 31 | links[i].setAttribute('rel', 'noopener'); | ||
| 32 | } | ||
| 33 | } | ||
| 34 | </script> | ||
| 35 | |||
| 36 | <!-- Linked data - Social profile --> | ||
| 37 | <script type="application/ld+json"> | ||
| 38 | { | ||
| 39 | "@context": "http://schema.org", | ||
| 40 | "@type": "Person", | ||
| 41 | "name": "Mitja Felicijan", | ||
| 42 | "jobTitle": "Embedded systems developer", | ||
| 43 | "url": "https://mitjafelicijan.com", | ||
| 44 | "sameAs": [ | ||
| 45 | "https://github.com/mitjafelicijan", | ||
| 46 | "https://twitter.com/mitjafelicijan", | ||
| 47 | "https://plus.google.com/+MitjaFelicijan" | ||
| 48 | ] | ||
| 49 | } | ||
| 50 | </script> | ||
| 51 | |||
| 52 | <!-- Service worker --> | ||
| 53 | <script> | ||
| 54 | if ('serviceWorker' in navigator) { | ||
| 55 | navigator.serviceWorker.register('/sw.js').then(function () { | ||
| 56 | console.log('Service Worker Registered'); | ||
| 57 | }); | ||
| 58 | } | ||
| 59 | </script> | ||
| 60 | |||
| 61 | <!-- MathJax --> | ||
| 62 | <script type="text/x-mathjax-config"> | ||
| 63 | MathJax.Hub.Config({ | ||
| 64 | TeX: { | ||
| 65 | equationNumbers: { | ||
| 66 | autoNumber: "AMS" | ||
| 67 | } | ||
| 68 | }, | ||
| 69 | tex2jax: { | ||
| 70 | inlineMath: [ ['$','$'], ['\\(', '\\)'] ], | ||
| 71 | displayMath: [ ['$$','$$'] ], | ||
| 72 | processEscapes: true, | ||
| 73 | } | ||
| 74 | }); | ||
| 75 | </script> | ||
| 76 | <script src="//cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS-MML_HTMLorMML" async></script> | ||
| 77 | |||
diff --git a/_includes/header.html b/_includes/header.html deleted file mode 100644 index 4a26b0e..0000000 --- a/_includes/header.html +++ /dev/null | |||
| @@ -1,11 +0,0 @@ | |||
| 1 | <header><a href="/">@mitjafelicijan</a></header> | ||
| 2 | |||
| 3 | <nav> | ||
| 4 | <ul> | ||
| 5 | <li><a href="//github.com/mitjafelicijan" target="_blank" rel="noopener">github</a></li> | ||
| 6 | <li><a href="//twitter.com/mitjafelicijan" target="_blank" rel="noopener">twitter</a></li> | ||
| 7 | <li><a href="//plus.google.com/+MitjaFelicijan?rel=author" target="_blank" rel="noopener">google+</a></li> | ||
| 8 | <li><a href="/curriculum-vitae">curriculum vitae</a></li> | ||
| 9 | <li><a href="/developers-mantra">developer's mantra</a></li> | ||
| 10 | </ul> | ||
| 11 | </nav> \ No newline at end of file | ||
diff --git a/_includes/highlight.css b/_includes/highlight.css deleted file mode 100644 index 5919006..0000000 --- a/_includes/highlight.css +++ /dev/null | |||
| @@ -1,131 +0,0 @@ | |||
| 1 | .highlight table td { | ||
| 2 | padding: 5px; | ||
| 3 | } | ||
| 4 | |||
| 5 | .highlight table pre { | ||
| 6 | margin: 0; | ||
| 7 | } | ||
| 8 | |||
| 9 | .highlight, | ||
| 10 | .highlight .w { | ||
| 11 | color: #586e75; | ||
| 12 | } | ||
| 13 | |||
| 14 | .highlight .err { | ||
| 15 | color: #002b36; | ||
| 16 | background-color: #dc322f; | ||
| 17 | } | ||
| 18 | |||
| 19 | .highlight .c, | ||
| 20 | .highlight .cd, | ||
| 21 | .highlight .cm, | ||
| 22 | .highlight .c1, | ||
| 23 | .highlight .cs { | ||
| 24 | color: #657b83; | ||
| 25 | } | ||
| 26 | |||
| 27 | .highlight .cp { | ||
| 28 | color: #b58900; | ||
| 29 | } | ||
| 30 | |||
| 31 | .highlight .nt { | ||
| 32 | color: #b58900; | ||
| 33 | } | ||
| 34 | |||
| 35 | .highlight .o, | ||
| 36 | .highlight .ow { | ||
| 37 | color: #93a1a1; | ||
| 38 | } | ||
| 39 | |||
| 40 | .highlight .p, | ||
| 41 | .highlight .pi { | ||
| 42 | color: #93a1a1; | ||
| 43 | } | ||
| 44 | |||
| 45 | .highlight .gi { | ||
| 46 | color: #859900; | ||
| 47 | } | ||
| 48 | |||
| 49 | .highlight .gd { | ||
| 50 | color: #dc322f; | ||
| 51 | } | ||
| 52 | |||
| 53 | .highlight .gh { | ||
| 54 | color: #268bd2; | ||
| 55 | background-color: #002b36; | ||
| 56 | font-weight: bold; | ||
| 57 | } | ||
| 58 | |||
| 59 | .highlight .k, | ||
| 60 | .highlight .kn, | ||
| 61 | .highlight .kp, | ||
| 62 | .highlight .kr, | ||
| 63 | .highlight .kv { | ||
| 64 | color: #6c71c4; | ||
| 65 | } | ||
| 66 | |||
| 67 | .highlight .kc { | ||
| 68 | color: #cb4b16; | ||
| 69 | } | ||
| 70 | |||
| 71 | .highlight .kt { | ||
| 72 | color: #cb4b16; | ||
| 73 | } | ||
| 74 | |||
| 75 | .highlight .kd { | ||
| 76 | color: #cb4b16; | ||
| 77 | } | ||
| 78 | |||
| 79 | .highlight .s, | ||
| 80 | .highlight .sb, | ||
| 81 | .highlight .sc, | ||
| 82 | .highlight .sd, | ||
| 83 | .highlight .s2, | ||
| 84 | .highlight .sh, | ||
| 85 | .highlight .sx, | ||
| 86 | .highlight .s1 { | ||
| 87 | color: #859900; | ||
| 88 | } | ||
| 89 | |||
| 90 | .highlight .sr { | ||
| 91 | color: #2aa198; | ||
| 92 | } | ||
| 93 | |||
| 94 | .highlight .si { | ||
| 95 | color: #d33682; | ||
| 96 | } | ||
| 97 | |||
| 98 | .highlight .se { | ||
| 99 | color: #d33682; | ||
| 100 | } | ||
| 101 | |||
| 102 | .highlight .nn { | ||
| 103 | color: #b58900; | ||
| 104 | } | ||
| 105 | |||
| 106 | .highlight .nc { | ||
| 107 | color: #b58900; | ||
| 108 | } | ||
| 109 | |||
| 110 | .highlight .no { | ||
| 111 | color: #b58900; | ||
| 112 | } | ||
| 113 | |||
| 114 | .highlight .na { | ||
| 115 | color: #268bd2; | ||
| 116 | } | ||
| 117 | |||
| 118 | .highlight .m, | ||
| 119 | .highlight .mf, | ||
| 120 | .highlight .mh, | ||
| 121 | .highlight .mi, | ||
| 122 | .highlight .il, | ||
| 123 | .highlight .mo, | ||
| 124 | .highlight .mb, | ||
| 125 | .highlight .mx { | ||
| 126 | color: #859900; | ||
| 127 | } | ||
| 128 | |||
| 129 | .highlight .ss { | ||
| 130 | color: #859900; | ||
| 131 | } | ||
diff --git a/_includes/highlight.min.css b/_includes/highlight.min.css deleted file mode 100644 index 4bc3e68..0000000 --- a/_includes/highlight.min.css +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | .highlight table td{padding:5px}.highlight table pre{margin:0}.highlight,.highlight .w{color:#586e75}.highlight .err{color:#002b36;background-color:#dc322f}.highlight .c,.highlight .c1,.highlight .cd,.highlight .cm,.highlight .cs{color:#657b83}.highlight .cp,.highlight .nt{color:#b58900}.highlight .o,.highlight .ow,.highlight .p,.highlight .pi{color:#93a1a1}.highlight .gi{color:#859900}.highlight .gd{color:#dc322f}.highlight .gh{color:#268bd2;background-color:#002b36;font-weight:700}.highlight .k,.highlight .kn,.highlight .kp,.highlight .kr,.highlight .kv{color:#6c71c4}.highlight .kc,.highlight .kd,.highlight .kt{color:#cb4b16}.highlight .s,.highlight .s1,.highlight .s2,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .sh,.highlight .sx{color:#859900}.highlight .sr{color:#2aa198}.highlight .se,.highlight .si{color:#d33682}.highlight .nc,.highlight .nn,.highlight .no{color:#b58900}.highlight .na{color:#268bd2}.highlight .il,.highlight .m,.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo,.highlight .mx,.highlight .ss{color:#859900} \ No newline at end of file | ||
diff --git a/_includes/site.css b/_includes/site.css deleted file mode 100644 index 117ad5f..0000000 --- a/_includes/site.css +++ /dev/null | |||
| @@ -1,270 +0,0 @@ | |||
| 1 | @import url("https://fonts.googleapis.com/css?family=Yrsa:300,400,500,600,700&subset=latin-ext"); | ||
| 2 | |||
| 3 | * { | ||
| 4 | box-sizing: border-box; | ||
| 5 | } | ||
| 6 | |||
| 7 | body { | ||
| 8 | font-family: 'Yrsa', 'Roboto', 'Times New Roman', Times, serif; | ||
| 9 | font-size: 22px; | ||
| 10 | line-height: 1.6; | ||
| 11 | color: #000; | ||
| 12 | margin: 0; | ||
| 13 | padding: 0 0 50px 0; | ||
| 14 | } | ||
| 15 | |||
| 16 | a { | ||
| 17 | color: #000; | ||
| 18 | } | ||
| 19 | |||
| 20 | a:hover { | ||
| 21 | background: yellow; | ||
| 22 | } | ||
| 23 | |||
| 24 | article, | ||
| 25 | main, | ||
| 26 | footer, | ||
| 27 | nav, | ||
| 28 | header { | ||
| 29 | max-width: 800px; | ||
| 30 | margin: 0 auto; | ||
| 31 | } | ||
| 32 | |||
| 33 | header { | ||
| 34 | margin-top: 30px; | ||
| 35 | } | ||
| 36 | |||
| 37 | header a, | ||
| 38 | nav ul li a { | ||
| 39 | text-decoration: none; | ||
| 40 | } | ||
| 41 | |||
| 42 | header a { | ||
| 43 | font-size: 150%; | ||
| 44 | font-weight: 700; | ||
| 45 | color: #000; | ||
| 46 | } | ||
| 47 | |||
| 48 | nav ul { | ||
| 49 | margin-top: 10px; | ||
| 50 | padding: 0; | ||
| 51 | } | ||
| 52 | |||
| 53 | nav ul li { | ||
| 54 | display: inline-block; | ||
| 55 | } | ||
| 56 | |||
| 57 | nav ul li a { | ||
| 58 | color: #444; | ||
| 59 | font-size: 85%; | ||
| 60 | margin-right: 20px; | ||
| 61 | } | ||
| 62 | |||
| 63 | h1 { | ||
| 64 | font-size: 200%; | ||
| 65 | line-height: 120%; | ||
| 66 | } | ||
| 67 | |||
| 68 | h2 { | ||
| 69 | font-size: 160%; | ||
| 70 | } | ||
| 71 | |||
| 72 | h3 { | ||
| 73 | font-size: 140%; | ||
| 74 | } | ||
| 75 | |||
| 76 | h4 { | ||
| 77 | font-size: 120%; | ||
| 78 | } | ||
| 79 | |||
| 80 | article img { | ||
| 81 | max-width: 100%; | ||
| 82 | display: block; | ||
| 83 | } | ||
| 84 | |||
| 85 | article img[src*='#center'] { | ||
| 86 | display: block; | ||
| 87 | margin: auto; | ||
| 88 | } | ||
| 89 | |||
| 90 | time { | ||
| 91 | display: block; | ||
| 92 | font-size: 85%; | ||
| 93 | color: #444; | ||
| 94 | } | ||
| 95 | |||
| 96 | ul { | ||
| 97 | list-style-type: square; | ||
| 98 | } | ||
| 99 | |||
| 100 | main ul { | ||
| 101 | margin-top: 40px; | ||
| 102 | padding: 0 20px; | ||
| 103 | } | ||
| 104 | |||
| 105 | main ul li { | ||
| 106 | margin-bottom: 25px; | ||
| 107 | margin-left: -20px; | ||
| 108 | list-style-type: none; | ||
| 109 | } | ||
| 110 | |||
| 111 | main ul li a { | ||
| 112 | font-size: 100%; | ||
| 113 | font-weight: 600; | ||
| 114 | text-decoration: none; | ||
| 115 | } | ||
| 116 | |||
| 117 | main ul div { | ||
| 118 | font-size: 116%; | ||
| 119 | } | ||
| 120 | |||
| 121 | blockquote { | ||
| 122 | margin: 40px 0 40px 20px; | ||
| 123 | border-left: 5px solid #eee; | ||
| 124 | padding: 5px 0 10px 20px; | ||
| 125 | } | ||
| 126 | |||
| 127 | table { | ||
| 128 | border: 2px solid #f1f1f1; | ||
| 129 | width: 100%; | ||
| 130 | border-collapse: collapse; | ||
| 131 | border-spacing: 0; | ||
| 132 | } | ||
| 133 | |||
| 134 | table th, | ||
| 135 | table td { | ||
| 136 | border: 2px solid #f1f1f1; | ||
| 137 | text-align: left; | ||
| 138 | padding: 5px 10px; | ||
| 139 | } | ||
| 140 | |||
| 141 | summary { | ||
| 142 | outline: none; | ||
| 143 | cursor: pointer; | ||
| 144 | font-weight: 600; | ||
| 145 | user-select: none; | ||
| 146 | } | ||
| 147 | |||
| 148 | details .highlighter-rouge { | ||
| 149 | margin-top: 10px !important; | ||
| 150 | } | ||
| 151 | |||
| 152 | .highlighter-rouge { | ||
| 153 | padding: 0 15px; | ||
| 154 | font-size: 60%; | ||
| 155 | border: 2px solid #f1f1f1; | ||
| 156 | overflow: auto; | ||
| 157 | } | ||
| 158 | |||
| 159 | .highlighter-rouge table, | ||
| 160 | .highlighter-rouge table td { | ||
| 161 | border: 0 !important; | ||
| 162 | } | ||
| 163 | |||
| 164 | ::selection { | ||
| 165 | background: #ff0; | ||
| 166 | color: #000; | ||
| 167 | } | ||
| 168 | |||
| 169 | ::-moz-selection { | ||
| 170 | background: #ff0; | ||
| 171 | color: #000; | ||
| 172 | } | ||
| 173 | |||
| 174 | ol { | ||
| 175 | list-style: none; | ||
| 176 | counter-reset: li; | ||
| 177 | } | ||
| 178 | |||
| 179 | ol li { | ||
| 180 | counter-increment: li; | ||
| 181 | } | ||
| 182 | |||
| 183 | ol li::before { | ||
| 184 | content: counter(li) "."; | ||
| 185 | color: #ccc; | ||
| 186 | font-weight: 500; | ||
| 187 | display: inline-block; | ||
| 188 | width: 1em; | ||
| 189 | margin-left: -1.5em; | ||
| 190 | margin-right: 0.9em; | ||
| 191 | text-align: right; | ||
| 192 | } | ||
| 193 | |||
| 194 | ol li a { | ||
| 195 | text-decoration: none; | ||
| 196 | } | ||
| 197 | |||
| 198 | /* footnotes */ | ||
| 199 | .footnotes p { | ||
| 200 | padding: 0; | ||
| 201 | display: inline-block; | ||
| 202 | margin: 0; | ||
| 203 | } | ||
| 204 | |||
| 205 | /* commenting */ | ||
| 206 | #hcb_form_name, | ||
| 207 | #hcb_form_content { | ||
| 208 | border: 2px solid #eee; | ||
| 209 | padding: 10px; | ||
| 210 | width: 300px; | ||
| 211 | margin-bottom: 10px; | ||
| 212 | } | ||
| 213 | |||
| 214 | #hcb_submit { | ||
| 215 | -webkit-appearance: none; | ||
| 216 | -moz-appearance: none; | ||
| 217 | -o-appearance: none; | ||
| 218 | -ms-appearance: none; | ||
| 219 | appearance: none; | ||
| 220 | font-weight: 600; | ||
| 221 | padding: 7px 15px; | ||
| 222 | font-size: 85%; | ||
| 223 | display: inline-block; | ||
| 224 | cursor: pointer; | ||
| 225 | border-radius: 3px; | ||
| 226 | background: #ccc; | ||
| 227 | border: 2px solid transparent; | ||
| 228 | width: auto; | ||
| 229 | user-select: none; | ||
| 230 | text-align: center; | ||
| 231 | height: auto; | ||
| 232 | margin-right: 20px; | ||
| 233 | } | ||
| 234 | |||
| 235 | @media only screen and (max-width: 768px) { | ||
| 236 | body { | ||
| 237 | padding: 0 20px; | ||
| 238 | } | ||
| 239 | |||
| 240 | footer, | ||
| 241 | header, | ||
| 242 | nav { | ||
| 243 | text-align: center; | ||
| 244 | } | ||
| 245 | |||
| 246 | .responsive-table { | ||
| 247 | width: 100%; | ||
| 248 | overflow: scroll; | ||
| 249 | } | ||
| 250 | |||
| 251 | h1 { | ||
| 252 | font-size: 200%; | ||
| 253 | } | ||
| 254 | |||
| 255 | .footnotes { | ||
| 256 | overflow: auto; | ||
| 257 | } | ||
| 258 | } | ||
| 259 | |||
| 260 | @media print { | ||
| 261 | @page { | ||
| 262 | margin: 2cm; | ||
| 263 | } | ||
| 264 | |||
| 265 | header, | ||
| 266 | nav, | ||
| 267 | .comments { | ||
| 268 | display: none; | ||
| 269 | } | ||
| 270 | } | ||
diff --git a/_includes/site.min.css b/_includes/site.min.css deleted file mode 100644 index 57c5c7c..0000000 --- a/_includes/site.min.css +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | a,body,header a{color:#000}header a,main ul li a,nav ul li a,ol li a{text-decoration:none}#hcb_submit,.footnotes p,nav ul li,ol li::before{display:inline-block}#hcb_submit,summary{cursor:pointer;user-select:none}@font-face{font-family:Yrsa;font-style:normal;font-weight:300;src:local('Yrsa Light'),local('Yrsa-Light'),url(https://fonts.gstatic.com/s/yrsa/v3/wlpxgwnQFlxs3af97I0x2Q.ttf) format('truetype')}@font-face{font-family:Yrsa;font-style:normal;font-weight:400;src:local('Yrsa Regular'),local('Yrsa-Regular'),url(https://fonts.gstatic.com/s/yrsa/v3/wlp-gwnQFlxs1QLf_A.ttf) format('truetype')}@font-face{font-family:Yrsa;font-style:normal;font-weight:500;src:local('Yrsa Medium'),local('Yrsa-Medium'),url(https://fonts.gstatic.com/s/yrsa/v3/wlpxgwnQFlxs3f_87I0x2Q.ttf) format('truetype')}@font-face{font-family:Yrsa;font-style:normal;font-weight:600;src:local('Yrsa SemiBold'),local('Yrsa-SemiBold'),url(https://fonts.gstatic.com/s/yrsa/v3/wlpxgwnQFlxs3dP77I0x2Q.ttf) format('truetype')}@font-face{font-family:Yrsa;font-style:normal;font-weight:700;src:local('Yrsa Bold'),local('Yrsa-Bold'),url(https://fonts.gstatic.com/s/yrsa/v3/wlpxgwnQFlxs3bf67I0x2Q.ttf) format('truetype')}*{box-sizing:border-box}body{font-family:Yrsa,Roboto,'Times New Roman',Times,serif;font-size:22px;line-height:1.6;margin:0;padding:0 0 50px}a:hover{background:#ff0}article,footer,header,main,nav{max-width:800px;margin:0 auto}header{margin-top:30px}header a{font-size:150%;font-weight:700}nav ul{margin-top:10px;padding:0}nav ul li a{color:#444;font-size:85%;margin-right:20px}h1{font-size:200%;line-height:120%}h2{font-size:160%}h3{font-size:140%}h4{font-size:120%}article img{max-width:100%;display:block}article img[src*='#center']{display:block;margin:auto}time{display:block;font-size:85%;color:#444}ul{list-style-type:square}main ul{margin-top:40px;padding:0 20px}main ul li{margin-bottom:25px;margin-left:-20px;list-style-type:none}main ul li a{font-size:100%;font-weight:600}main ul div{font-size:116%}blockquote{margin:40px 0 40px 20px;border-left:5px solid #eee;padding:5px 0 10px 20px}.highlighter-rouge,table,table td,table th{border:2px solid #f1f1f1}table{width:100%;border-collapse:collapse;border-spacing:0}table td,table th{text-align:left;padding:5px 10px}summary{outline:0;font-weight:600}details .highlighter-rouge{margin-top:10px!important}.highlighter-rouge{padding:0 15px;font-size:60%;overflow:auto}.highlighter-rouge table,.highlighter-rouge table td{border:0!important}::selection{background:#ff0;color:#000}::-moz-selection{background:#ff0;color:#000}ol{list-style:none;counter-reset:li}ol li{counter-increment:li}ol li::before{content:counter(li) ".";color:#ccc;font-weight:500;width:1em;margin-left:-1.5em;margin-right:.9em;text-align:right}.footnotes p{padding:0;margin:0}#hcb_form_content,#hcb_form_name{border:2px solid #eee;padding:10px;width:300px;margin-bottom:10px}#hcb_submit{-webkit-appearance:none;-moz-appearance:none;-o-appearance:none;-ms-appearance:none;appearance:none;font-weight:600;padding:7px 15px;font-size:85%;border-radius:3px;background:#ccc;border:2px solid transparent;width:auto;text-align:center;height:auto;margin-right:20px}@media only screen and (max-width:768px){body{padding:0 20px}footer,header,nav{text-align:center}.responsive-table{width:100%;overflow:scroll}h1{font-size:200%}.footnotes{overflow:auto}}@media print{@page{margin:2cm}.comments,header,nav{display:none}} \ No newline at end of file | ||
