From 904ca07f0951f1f80fef834486d06d0f105d2d7b Mon Sep 17 00:00:00 2001 From: Henrik Jess Nielsen Date: Sat, 21 Dec 2024 23:34:02 +0100 Subject: [PATCH] Lets see what lighthouse says --- static/css/open_sans.css | 96 ++++++++++++++++++++++++ static/css/roboto-slab.css | 72 ++++++++++++++++++ static/images/resized_200x150_pic11.jpg | Bin 0 -> 2715 bytes 3 files changed, 168 insertions(+) create mode 100644 static/css/open_sans.css create mode 100644 static/css/roboto-slab.css create mode 100644 static/images/resized_200x150_pic11.jpg diff --git a/static/css/open_sans.css b/static/css/open_sans.css new file mode 100644 index 0000000..83c9212 --- /dev/null +++ b/static/css/open_sans.css @@ -0,0 +1,96 @@ +/* open-sans-300 - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: 'Open Sans'; + font-style: normal; + font-weight: 300; + src: url('/static/webfonts/open-sans-v40-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* open-sans-300italic - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: 'Open Sans'; + font-style: italic; + font-weight: 300; + src: url('/static/webfonts/open-sans-v40-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* open-sans-regular - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: 'Open Sans'; + font-style: normal; + font-weight: 400; + src: url('/static/webfonts/open-sans-v40-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* open-sans-italic - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: 'Open Sans'; + font-style: italic; + font-weight: 400; + src: url('/static/webfonts/open-sans-v40-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* open-sans-500 - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: 'Open Sans'; + font-style: normal; + font-weight: 500; + src: url('/static/webfonts/open-sans-v40-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* open-sans-500italic - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: 'Open Sans'; + font-style: italic; + font-weight: 500; + src: url('/static/webfonts/open-sans-v40-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* open-sans-600 - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: 'Open Sans'; + font-style: normal; + font-weight: 600; + src: url('/static/webfonts/open-sans-v40-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* open-sans-600italic - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: 'Open Sans'; + font-style: italic; + font-weight: 600; + src: url('/static/webfonts/open-sans-v40-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* open-sans-700 - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: 'Open Sans'; + font-style: normal; + font-weight: 700; + src: url('/static/webfonts/open-sans-v40-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* open-sans-700italic - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: 'Open Sans'; + font-style: italic; + font-weight: 700; + src: url('/static/webfonts/open-sans-v40-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* open-sans-800 - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: 'Open Sans'; + font-style: normal; + font-weight: 800; + src: url('/static/webfonts/open-sans-v40-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* open-sans-800italic - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: 'Open Sans'; + font-style: italic; + font-weight: 800; + src: url('/static/webfonts/open-sans-v40-latin-800italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} diff --git a/static/css/roboto-slab.css b/static/css/roboto-slab.css new file mode 100644 index 0000000..222aa0d --- /dev/null +++ b/static/css/roboto-slab.css @@ -0,0 +1,72 @@ +/* roboto-slab-100 - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: 'Roboto Slab'; + font-style: normal; + font-weight: 100; + src: url('/static/webfonts/roboto-slab-v34-latin-100.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* roboto-slab-200 - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: 'Roboto Slab'; + font-style: normal; + font-weight: 200; + src: url('/static/webfonts/roboto-slab-v34-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* roboto-slab-300 - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: 'Roboto Slab'; + font-style: normal; + font-weight: 300; + src: url('/static/webfonts/roboto-slab-v34-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* roboto-slab-regular - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: 'Roboto Slab'; + font-style: normal; + font-weight: 400; + src: url('/static/webfonts/roboto-slab-v34-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* roboto-slab-500 - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: 'Roboto Slab'; + font-style: normal; + font-weight: 500; + src: url('/static/webfonts/roboto-slab-v34-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* roboto-slab-600 - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: 'Roboto Slab'; + font-style: normal; + font-weight: 600; + src: url('/static/webfonts/roboto-slab-v34-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* roboto-slab-700 - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: 'Roboto Slab'; + font-style: normal; + font-weight: 700; + src: url('/static/webfonts/roboto-slab-v34-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* roboto-slab-800 - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: 'Roboto Slab'; + font-style: normal; + font-weight: 800; + src: url('/static/webfonts/roboto-slab-v34-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* roboto-slab-900 - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: 'Roboto Slab'; + font-style: normal; + font-weight: 900; + src: url('/static/webfonts/roboto-slab-v34-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} \ No newline at end of file diff --git a/static/images/resized_200x150_pic11.jpg b/static/images/resized_200x150_pic11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2651f5feb101b59289c994523af875e61b5ec37b GIT binary patch literal 2715 zcmbW13s6&M7RPViL6WiIrADhEC@M~u8NPYyG#X>T_43)yRBwA)pl|1+MQv)8^rGHIGx>oH|NfG z?>*=Izu)=Jmzirbcc7OxXtWxLK!6|uxS*N4BxjY!Q?1C!akzPw3THXWvpVfLHJ0ie zn8(k7a@W;VTdX@!52qa6Zgb>uAAa};F2`1p$K4_><`-A1&?;MDoeMSAZ8BNwc39;V z+;uP7g zwv`XV9EpSni^LKMyp|*2!-5<>_(`&1kwPp{2&9~6gA3GL6_pBuTJuZ`JmqnpLHT?> zo=?bgy0+)Qa=9GOArNE(k8F3X!(*w*cDOUV8L9D7sd)D zQh^*s(0iie=t^|a-kNF(`9lx zcg}TyuFC0gx~rVk9F@1AL3ApWMy1ecG+IIeeI6r)$w*9OEJ{kApYk$$+0vKUOO|k!^Hy@WYcrNC zStVV)mJf?WqGc=Pc``vRPbd=LNeBrE35-O>LMC&eAbm-?;Qt;oXCM|G>ViHZ5x5YM zMIf;VGv}dY;E#bqh!5!5AP`Ap3YA7rn3o6~!Y@HY0*OQ&=9DX$uxEVz0WJ~GRGHV4|xxLDUxjo)Dd^NRoP0hb(d8>7I+y2g99_TuF=&--1x37O-Fc1tK zd;f#*?~b21IeKpF{Dq5`KKkS3$*Ym*U;cXS`i;ByKK<-(pMP=xLG0^q{yzQqA5Xsh z=Tn@E0Fh>~z7C8h_@hE8BL7`c?WnQ0y~ju~06i*v>K>?7=k70gW^r_x1V zULl|CA4mM#u80Hq(>CpMP^%>h=0xR55J=*Htu%}bPWLOPDnIvGy*gH_EJ|* zPd2iK@rBRuF!Wu}XTGNX?tw2_Kke)}vvvN4r9-s-`AG9CTY{;fo>PVIBF)=Mf(JtW zaM4In;)W;(8y+#VbgSMIX=A?@fvF9Nhn6Qugl-YMp9u9LE7gb z+8`+U1zdAY8OL$ZuND%{=MEbV$sAb zG9fdj1fa@W)1}rw%@$m5*_&OQT?7nisKv69BKp_m%;|Sxz#gP+j;~|!1H$(D+;w8z zx>JQC`3uZ3PhC%Y2`jk&HO-SDIIL?AT^7R&IznD-pxroRTz(8RT{mdMBK1u`P1-ox zuzX7EuZ$H(7`33t7F-{?2gq@L=$pARSoi4lT|IjU=O6an_BYj2V$6i&lb{9e-_B1{ zU5&;9bsc35yxwT*jX2Jie> zekl`dZGJQhK2v1`Oce+^c? zVrrv*uXk~<;a`)LhyBX9sIBknMjdJQ6R_dn>ZX9QgDdmUrDQ~1)&|{?PC5d|4UXTq zUG~V)(94md0pc0#z+!(0beE3%rM;vV>uDL$V7t+8$G5eInk&H^S07#-YQ;R_!u?l7 zk1)t~=PFAAj+$RsMC(=