From b202c38d06fe80d9c86f8feccde7b7d672289fe2 Mon Sep 17 00:00:00 2001 From: Dan Frumin Date: Fri, 28 Aug 2020 18:19:13 +0200 Subject: [PATCH] add static dir --- static/created0.jpg | Bin 0 -> 1823 bytes static/style.css | 285 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 285 insertions(+) create mode 100644 static/created0.jpg create mode 100644 static/style.css diff --git a/static/created0.jpg b/static/created0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aa9863ac1d68d07f38b83d1843a99f22551c0632 GIT binary patch literal 1823 zcmb7^doKDM6 zLL!p@5C{bLsUM(v2KWLHu%@Oa7@{5!2t-R;AF8dEk)EE8KFkOXhZ(_OCT4rgO%O;^ z7|a4?f!w>-+S=O0+!k$Xh2CRjZS^|@q>gH9X&XYJhE@m|!s`E)st15U0Tgfy46+3@ zU?4CIq#6MB0Dy)DSl#x&($<24H6b7kwd-mOfWTm|21G;M{9hL!4Yj8Q1K=oaXA^`^ z2*=jN?(3*bQ?sPfo6y7j+Fo@E2?D?X_k88FJ(M-vV) z35m*d3FVabs^$TGH9&2^0B@l6PsjUqZ4-n9Pv=vzc3cE4d)X+|bF7a1mbX9Bel>&Y z0g9 zu#som#W&lLTHy-!TcLh706wU9C^nuj+(GHQ@NBn0P=D^CF)A zePn)cpjTk8X(ffmGT0|K?HW9HWNm?%;rW=Y^q)R=m)6kJ-F)9As-OSWxJAl!-=mjN zqXJNn&eoUv$Va<70g&4ZF85{KHVcy9^oi}b}&ryLtGKDZIG&Pf}qg)M_6-I zGvtHml1S3Tt95?grOB5}a?-i{h zD}K1b7D=rH7vsQoSqL05#mv6-aTXJ^Y@!D=F|kKt9I!Tq!)2~SW?am%&bF2_+2z1*qdzEo*Z>fiMFCaPt@Ezpm)V=(22#!o7Pbj zSCiVEFH%Z&3Z27aXP9oBj?^=uhMX&a!mo3^o9LWHB!;?8Vy{d-ppW{zf;R{z9=6?Ilr= zA&h+l2I~%$T?d;x^ldpkCI=(K7dl*u9~*E&ov|bYlReu!wv>OD`Zf}QmY9Z{_qS4u zvhkC-#%1wYjD zj{8)a7XRtSCs~y1X-vDv=s>|cZcu8DU(|#wo4)B&G?D*z5*dZ)+f*a z>Fl(oE*lkn>+$&^RZ(hhdZNxW0ZYWTJK_;QuXZ)5cJmpnVRNMEyP!(AlP+O@d+0o$ zm#X_&1t4FyR}6ia`=;^7$~E{YuL-GhQmC>lrPIGPmKjVzWE!_+aJB=*x1GGY%PCV? zv!D$|`MYpY1B30bQQO7Jw2;Vj64(*#8`@uF(X2@;@zXica~*^{dwGrj1D-D}7SCq6#z$=8utIY*yCbEbahLqTsOk&W|K(1hKzs2&380Tg8stPUl*Flew zUDB`LGfAur8|R0ZNdGvkz+A)?uEaeI@4t(+q%a@fGovp06m!J$VO~V9f{6)>+~aiF zsK}V?7qRgNbXH-C_1#}5GQ&>>O!;3f?`oYfn8Nx9=^%>EI_)uX?a9)yj!Ws=`dGT4 z$8ok{3ZwhnJ2c4sLfX-epR1dd4qVZycSm03uatjE=H<;N>x1KkDT1oPwSSD3OzS;5 zy?(%H1DsLKDI4Z-4mt;vG7%#I(4@w^_Yoft#va6vC?gjNF=_hxqUGq)he@UESwu&9 z?WBTxY9-IEr4}*E*c3)H84&z%a{xP`N}%;hzIgR|RYkVb`Lsmt(2pE$R$**ih&bQ| z@#Kf~N)thayvcYqOn0@crZFrv#4<>9#F4^R|A3(+5QEL*ai2Eu;%=})5|npbvBB4I z5zjbN`B=`1@TCJ<#OJAidqv4z7aqa`71)uAkUn~ */ +/* Box sizing rules */ +*, +*::before, +*::after { + box-sizing: border-box; +} + +/* Remove default margin */ +body, +h1, +h2, +h3, +h4, +p, +ul[class], +ol[class], +li, +figure, +figcaption, +dl, +dd { + margin: 0; +} + +html { + font-size: 1rem; + scroll-behavior: smooth; +} + +body { + line-height: 1.8; + + max-width: 100ch; + min-height: 100vh; + overflow-x: hidden; + margin: 0 auto; + padding: 2rem 1.25rem; + + color: hsl(0, 5%, 10%); + background-color: hsl(210, 20%, 98%); + + text-rendering: optimizeLegibility; +} + +/* Justify and hyphenate all paragraphs */ +p { + text-align: justify; + hyphens: auto; + -webkit-hyphens: auto; + -moz-hyphens: auto; + margin-top: 1rem; +} + +/* A elements that don't have a class get default styles */ +a:not([class]) { + text-decoration-skip-ink: auto; +} + +/* Make links red */ +a, +a:visited { + color: #a00; +} + +a:focus { + outline-offset: 2px; + outline: 2px solid hsl(220, 90%, 52%); +} + +/* Make images easier to work with */ +img { + max-width: 100%; + height: auto; + display: block; +} + +/* Inherit fonts for inputs and buttons */ +input, +button, +textarea, +select { + font: inherit; +} + +/* Prevent textarea from overflowing */ +textarea { + width: 100%; +} + +/* Natural flow and rhythm in articles by default */ +article > * + * { + margin-top: 1em; +} + +/* Styles for inline code or code snippets */ +code, +pre, +kbd { + font-family:monospace; + font-size: 85%; +} + +pre { + padding: 1rem 1.4rem; + max-width: 100%; + overflow: auto; + border-radius: 4px; + background: hsl(210, 28%, 93%); +} +pre code { + font-size: 95%; + position: relative; +} +kbd { + background: hsl(210, 5%, 100%); + border: 1px solid hsl(210, 5%, 70%); + border-radius: 2px; + padding: 2px 4px; + font-size: 75%; +} + +/* Center align the title */ +h1:first-child { + text-align: center; +} + +/* Nested ordered list for ToC */ +nav ol { + counter-reset: item; + padding-left: 2rem; +} +nav li { + display: block; +} +nav li:before { + content: counters(item, '.') ' '; + counter-increment: item; + padding-right: 0.85rem; +} + +/* Center definitions (most useful for display equations) */ +dl dd { + text-align: center; +} + +/* Center align author name, use small caps and add vertical spacing */ +.author { + margin: 0.85rem 0; + font-variant-caps: small-caps; + text-align: center; +} + +/* Make footnote text smaller and left align it (looks bad with long URLs) */ +.footnotes p { + text-align: left; + line-height: 1.5; + font-size: 85%; + margin-bottom: 0.4rem; +} +.footnotes { + border-top: 1px solid hsl(0, 0%, 39%); +} + +/* Center title and paragraph */ +.abstract, +.abstract p { + text-align: center; + margin-top: 0; +} +.abstract { + margin: 2.25rem 0; +} +.abstract > h2 { + font-size: 1rem; + margin-bottom: -0.2rem; +} + +/* Heading typography */ +h1 { + font-size: 2.5rem; + line-height: 3.25rem; + margin-bottom: 1.625rem; +} + +h2 { + font-size: 1.7rem; + line-height: 2rem; + margin-top: 3rem; +} + +h3 { + font-size: 1.4rem; + margin-top: 2.5rem; +} + +h4 { + font-size: 1.2rem; + margin-top: 2rem; +} + +h5 { + font-size: 1rem; + margin-top: 1.8rem; +} + +h6 { + font-size: 1rem; + font-style: italic; + font-weight: normal; + margin-top: 2.5rem; +} + +h3, +h4, +h5, +h6 { + line-height: 1.625rem; +} + +h1 + h2 { + margin-top: 1.625rem; +} + +h2 + h3, +h3 + h4, +h4 + h5 { + margin-top: 0.8rem; +} + +h5 + h6 { + margin-top: -0.8rem; +} + +h2, +h3, +h4, +h5, +h6 { + margin-bottom: 0.8rem; +} + +div#wrapper > * + * { + margin-top: 1em; +} +.flex-container { + display: flex; + flex-direction: row; + flex-wrap: nowrap; + justify-content: flex-start; + align-items: flex-end; + align-content: stretch; +} +.flex-container > div { + margin-left: 20px; + margin-right: 20px; + margin-bottom: 10px; +} + +span.menu-item { + font-variant: small-caps; + padding: 10px; +} + + +.syntax-special, .syntax-element { + color: #00aa7b; + font-weight: bold; +} + +.syntax-string { + color: #d7288e; +} + +.syntax-keyword, .syntax-attribute { + color: #d7288e; +} + +.syntax-comment { + color: #666; +} + +.syntax-open, .syntax-close { + color: #666; +}