From 96891ccd98f0cb810d593fc5ec6b140f0bb4f4b9 Mon Sep 17 00:00:00 2001 From: superselect Date: Sat, 24 Aug 2024 13:32:17 -0700 Subject: [PATCH 1/2] You said you would merge it, I'm holding you to this, just fix it after the merge, I don't care --- style.css | 394 ------------------------------------------------------ 1 file changed, 394 deletions(-) delete mode 100644 style.css diff --git a/style.css b/style.css deleted file mode 100644 index 4e6c001..0000000 --- a/style.css +++ /dev/null @@ -1,394 +0,0 @@ -@font-face { - font-family: 'MapleMono'; - src: url('/font/MapleMono.ttf') format('truetype'); -} - -@font-face { - font-family: 'MapleMonoItalic'; - src: url('/font/MapleMonoItalic.ttf') format('truetype'); -} - -@media (max-width: 1400px) { - body { - margin: 0%; - width: 100% - } -} - -@media (min-width: 1400px) { - body { - margin: 0 20%; - width: 60%; - } -} - -* { - font-family: 'MapleMono'; - font-size: 16.5px; - text-wrap: wrap; -} - -:root { - --bg: #F2F4F8; - --alt-bg: #dde1e6; - --fg: #161616; - --hl: #33b1ff; - --link: #0f62fe; - --visited-link: #673ab7; - --highlight: #0f62fe; - --gray: #525252; - background: var(--bg); - background-image: radial-gradient(var(--gray) 2px, var(--alt-bg) 2px); - background-size: 1vw 1vh; - display: flex; - justify-content: center; - align-items: center; -} - -@media (prefers-color-scheme: dark) { - :root { - --bg: #161616; - --alt-bg: #262626; - --fg: #f2f4f8; - --hl: #0f62fe; - --link: #33b1ff; - --visited-link: #be95ff; - --highlight: #33b1ff; - --gray: #202020; - } -} - -body { - text-wrap: wrap; - max-width: 100%; - min-height: 100vh; - background-color: var(--bg); - color: var(--fg); - overflow: auto; - word-wrap: break-word; - overflow-wrap: break-word; - display: flex; - flex-direction: column; -} - -h1 { - font-size: 33px; - font-weight: normal; -} - -h2 { - font-size: 22px; - font-family: 'MapleMonoItalic'; - font-weight: normal; -} - -h3 { - font-size: 18px; - font-weight: bold; -} - -img { - max-width: 100%; - height: auto; -} - -main { - flex: 1; - display: flex; - flex-direction: column; -} - -header { - padding-top: 10px; - position: -webkit-sticky; - position: sticky; - background-color: var(--bg); - top: 0; - width: 100%; - z-index: 100000; - display: flex; - align-items: flex-start; - overflow: clip; - - > nav { - border-bottom: 1px solid var(--fg); - width: 100%; - - > ul { - margin: 0; - padding: 0; - display: flex; - align-items: baseline; - justify-content: flex-start; - list-style-type: none; - - > li { - padding: 10px; - - > h1 { - display: inline - } - } - } - } -} - -footer { - background-color: var(--alt-bg); - border-bottom: none; - margin: 15px; - padding: 5px; - margin-bottom: 0; - display: grid; - grid-template-columns: 1fr auto; - align-items: center; - - > a > img { - align-self: end; - } -} - -section { - display: flex; - flex-direction: column; - justify-content: center; - - background: var(--alt-bg); - box-shadow: 10px 10px var(--gray); - margin: 15px 30px; - padding: 20px; - - > details[open] > summary { - padding-bottom: 5px; - } - - > p { - margin: 5px 0; - } - - > h1, h2, h3 { - margin: 10px 0; - } - - &.ignore-section { - background: var(--bg); - box-shadow: none; - margin: 0; - padding: 5px 10px; - } -} - -form { - background: var(--alt-bg); - display: flex; - flex-direction: column; - width: 50%; - padding: 20px; - margin: 15px 0; - box-shadow: 10px 10px var(--gray); - - > button { - margin: 10px; - padding: 10px; - border: none; - color: var(--fg); - background: var(--bg); - - &:hover { - background: var(--hl); - } - } - - > input { - color: var(--fg); - margin: 10px; - border: none; - background: var(--bg); - - &:focus { - outline: none; - } - } -} - -figure { - display: flex; - flex-direction: column; - justify-content: flex-start; - max-width: 125%; - background: var(--bg); - margin: 0; - margin-bottom: 15px; - - > a { - padding: 10px; - padding-bottom: 0; - - > img { - height: auto; - width: 100%; - } - } - - > figcaption { - display: flex; - justify-content: center; - text-align: center; - padding: 5px; - margin: 0; - } -} - -table { - width: auto; - border-collapse: collapse; -} - -th, td { - padding-left: 10px; - padding-right: 10px; - text-align: left; -} - -th:first-child, td:first-child { - width: 20%; -} - -th:last-child, td:last-child { - width: 20%; -} - -iframe { - border: none; - padding: 0; - margin: 0; - width: 100%; - overflow: hidden; -} - -summary { - -webkit-user-select: none; - -ms-user-select: none; - user-select: none; -} - -code, pre { - background: var(--bg); - margin: 10px; - padding: 5px; - overflow: clip; -} - -xmp { - margin: 20px; -} - -a { - color: var(--link); -} - -a:visited { - color: var(--visited-link); -} - -.post { - background: var(--alt-bg); - box-shadow: 10px 10px var(--gray); - margin: 30px; - padding: 20px; -} - -.italic { - font-family: 'MapleMonoItalic' !important; -} - -.captioned-image { - display: flex; - flex-direction: column; - justify-content: flex-start; - max-width: 100%; - background: var(--bg); - margin-bottom: 15px; - margin-right: 10px; - - > img { - height: auto; - padding: 10px; - } - - > p { - display: flex; - justify-content: center; - text-align: center; - padding: 5px; - margin: 0; - } -} - -::-webkit-scrollbar { - width: 0px; - height: 0px; -} - -::selection { - background: var(--highlight) -} - -image-column-container { - min-width: 100%; - display: flex; - flex-direction: row; -} - -image-container { - display: flex; - margin-right: 5px; - flex: 1; - width: 33%; - height: auto; -} - -flex-column { - width: 100%; - display: flex; - flex-direction: column; - - > captioned-image { - max-width: 100%; - } -} - -image-column img { - width: 100%; - height: auto; -} - -text-column { - max-width: 66% -} - -flex-grid { - display: flex; - flex-wrap: wrap; -} - -flex-grid-item { - flex: 1 0 200px; - margin: 5px; - overflow: hidden; - position: relative; -} - -flex-grid-item > img { - max-width: 110%; - height: auto; - display: block; -} - -@media (max-width: 700px) { - image-container {display: inline-block; min-width: 100% !important} - div.captioned-image {min-width: 100%; margin-right: 0;} - text-column {display: inline-block; max-width: 100%;} - image-column-container {flex-direction: column;} - header > nav > ul > li > h1 { display: none}; -} -- 2.30.2 From b0a1a1a94bf7d7dda20e6b20977463d880b9d4bf Mon Sep 17 00:00:00 2001 From: superselect Date: Sat, 24 Aug 2024 13:33:25 -0700 Subject: [PATCH 2/2] oops, forgot to actually put things in the file, now merge it --- style.css | 13521 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 13521 insertions(+) create mode 100644 style.css diff --git a/style.css b/style.css new file mode 100644 index 0000000..b681d6e --- /dev/null +++ b/style.css @@ -0,0 +1,13521 @@ +# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face { + font-family: 'MapleMono';}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face { + src: url('/font/MapleMono.ttf') format('truetype');}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face { + font-family: 'MapleMonoItalic';}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face { + src: url('/font/MapleMonoItalic.ttf') format('truetype');}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face { +;} + body # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) { + margin: 0%;} + body # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) { + width: 100% + ;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) { + body +;} + body # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) { + margin: 0 20%;} + body # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) { + width: 60%;} + body # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) { + ;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) { + body +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* { + font-family: 'MapleMono';}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* { + font-size: 16.5px;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* { + text-wrap: wrap;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root { + --bg: #F2F4F8;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root { + --alt-bg: #dde1e6;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root { + --fg: #161616;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root { + --hl: #33b1ff;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root { + --link: #0f62fe;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root { + --visited-link: #673ab7;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root { + --highlight: #0f62fe;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root { + --gray: #525252;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root { + background: var(--bg);}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root { + background-image: radial-gradient(var(--gray) 2px, var(--alt-bg) 2px);}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root { + background-size: 1vw 1vh;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root { + display: flex;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root { + justify-content: center;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root { + align-items: center;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root { +;} + :root # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) { + --bg: #161616;} + :root # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) { + --alt-bg: #262626;} + :root # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) { + --fg: #f2f4f8;} + :root # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) { + --hl: #0f62fe;} + :root # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) { + --link: #33b1ff;} + :root # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) { + --visited-link: #be95ff;} + :root # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) { + --highlight: #33b1ff;} + :root # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) { + --gray: #202020;} + :root # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) { + ;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) { + :root +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body { + text-wrap: wrap;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body { + max-width: 100%;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body { + min-height: 100vh;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body { + background-color: var(--bg);}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body { + color: var(--fg);}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body { + overflow: auto;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body { + word-wrap: break-word;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body { + overflow-wrap: break-word;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body { + display: flex;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body { + flex-direction: column;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 { + font-size: 33px;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 { + font-weight: normal;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 { + font-size: 22px;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 { + font-family: 'MapleMonoItalic';}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 { + font-weight: normal;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 { + font-size: 18px;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 { + font-weight: bold;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img { + max-width: 100%;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img { + height: auto;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main { + flex: 1;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main { + display: flex;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main { + flex-direction: column;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header { + padding-top: 10px;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header { + position: -webkit-sticky;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header { + position: sticky;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header { + background-color: var(--bg);}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header { + top: 0;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header { + width: 100%;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header { + z-index: 100000;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header { + display: flex;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header { + align-items: flex-start;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header { + overflow: clip;} + + > nav # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header { + border-bottom: 1px solid var(--fg);} + + > nav # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header { + width: 100%;} + + > ul + + > nav # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header { + margin: 0;} + + > ul + + > nav # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header { + padding: 0;} + + > ul + + > nav # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header { + display: flex;} + + > ul + + > nav # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header { + align-items: baseline;} + + > ul + + > nav # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header { + justify-content: flex-start;} + + > ul + + > nav # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header { + list-style-type: none;} + + > li + + > ul + + > nav # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header { + padding: 10px;} + + > h1 + + > li + + > ul + + > nav # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header { + display: inline + ;} + + > li + + > ul + + > nav # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header { + + > h1 + ;} + + > ul + + > nav # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header { + + > li + ;} + + > nav # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header { + + > ul + ;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header { + + > nav +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer { + background-color: var(--alt-bg);}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer { + border-bottom: none;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer { + margin: 15px;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer { + padding: 5px;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer { + margin-bottom: 0;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer { + display: grid;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer { + grid-template-columns: 1fr auto;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer { + align-items: center;} + + > a > img # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer { + align-self: end;} + + > a > img # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer { + ;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer { + + > a > img +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section { + display: flex;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section { + flex-direction: column;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section { + justify-content: center;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section { + + background: var(--alt-bg);}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section { + box-shadow: 10px 10px var(--gray);}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section { + margin: 15px 30px;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section { + padding: 20px;} + + > details[open] > summary # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section { + padding-bottom: 5px;} + + > details[open] > summary # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section { + ;} + + > details[open] > summary + + > p # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section { + margin: 5px 0;} + + > details[open] > summary + + > p # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section { + ;} + + > details[open] > summary + + > p + + > h1, h2, h3 # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section { + margin: 10px 0;} + + > details[open] > summary + + > p + + > h1, h2, h3 # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section { + ;} + + > details[open] > summary + + > p + + > h1, h2, h3 + + &.ignore-section # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section { + background: var(--bg);} + + > details[open] > summary + + > p + + > h1, h2, h3 + + &.ignore-section # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section { + box-shadow: none;} + + > details[open] > summary + + > p + + > h1, h2, h3 + + &.ignore-section # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section { + margin: 0;} + + > details[open] > summary + + > p + + > h1, h2, h3 + + &.ignore-section # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section { + padding: 5px 10px;} + + > details[open] > summary + + > p + + > h1, h2, h3 + + &.ignore-section # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section { + ;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section { + + > details[open] > summary + + > p + + > h1, h2, h3 + + &.ignore-section +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form { + background: var(--alt-bg);}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form { + display: flex;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form { + flex-direction: column;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form { + width: 50%;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form { + padding: 20px;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form { + margin: 15px 0;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form { + box-shadow: 10px 10px var(--gray);} + + > button # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form { + margin: 10px;} + + > button # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form { + padding: 10px;} + + > button # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form { + border: none;} + + > button # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form { + color: var(--fg);} + + > button # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form { + background: var(--bg);} + + &:hover + + > button # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form { + background: var(--hl);} + + &:hover + + > button # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form { + ;} + + > button # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form { + + &:hover + ;} + + > button + + > input # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form { + color: var(--fg);} + + > button + + > input # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form { + margin: 10px;} + + > button + + > input # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form { + border: none;} + + > button + + > input # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form { + background: var(--bg);} + + &:focus + + > button + + > input # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form { + outline: none;} + + &:focus + + > button + + > input # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form { + ;} + + > button + + > input # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form { + + &:focus + ;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form { + + > button + + > input +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure { + display: flex;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure { + flex-direction: column;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure { + justify-content: flex-start;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure { + max-width: 125%;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure { + background: var(--bg);}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure { + margin: 0;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure { + margin-bottom: 15px;} + + > a # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure { + padding: 10px;} + + > a # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure { + padding-bottom: 0;} + + > img + + > a # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure { + height: auto;} + + > img + + > a # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure { + width: 100%;} + + > img + + > a # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure { + ;} + + > a # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure { + + > img + ;} + + > a + + > figcaption # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure { + display: flex;} + + > a + + > figcaption # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure { + justify-content: center;} + + > a + + > figcaption # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure { + text-align: center;} + + > a + + > figcaption # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure { + padding: 5px;} + + > a + + > figcaption # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure { + margin: 0;} + + > a + + > figcaption # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure { + ;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure { + + > a + + > figcaption +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table { + width: auto;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table { + border-collapse: collapse;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td { + padding-left: 10px;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td { + padding-right: 10px;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td { + text-align: left;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child { + width: 20%;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child { + width: 20%;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe { + border: none;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe { + padding: 0;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe { + margin: 0;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe { + width: 100%;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe { + overflow: hidden;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary { + -webkit-user-select: none;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary { + -ms-user-select: none;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary { + user-select: none;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre { + background: var(--bg);}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre { + margin: 10px;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre { + padding: 5px;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre { + overflow: clip;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp { + margin: 20px;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a { + color: var(--link);}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited { + color: var(--visited-link);}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post { + background: var(--alt-bg);}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post { + box-shadow: 10px 10px var(--gray);}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post { + margin: 30px;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post { + padding: 20px;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic { + font-family: 'MapleMonoItalic' !important;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image { + display: flex;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image { + flex-direction: column;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image { + justify-content: flex-start;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image { + max-width: 100%;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image { + background: var(--bg);}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image { + margin-bottom: 15px;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image { + margin-right: 10px;} + + > img # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image { + height: auto;} + + > img # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image { + padding: 10px;} + + > img # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image { + ;} + + > img + + > p # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image { + display: flex;} + + > img + + > p # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image { + justify-content: center;} + + > img + + > p # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image { + text-align: center;} + + > img + + > p # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image { + padding: 5px;} + + > img + + > p # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image { + margin: 0;} + + > img + + > p # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image { + ;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image { + + > img + + > p +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar { + width: 0px;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar { + height: 0px;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection { + background: var(--highlight) +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container { + min-width: 100%;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container { + display: flex;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container { + flex-direction: row;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container { + display: flex;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container { + margin-right: 5px;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container { + flex: 1;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container { + width: 33%;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container { + height: auto;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column { + width: 100%;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column { + display: flex;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column { + flex-direction: column;} + + > captioned-image # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column { + max-width: 100%;} + + > captioned-image # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column { + ;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column { + + > captioned-image +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img { + width: 100%;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img { + height: auto;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column { + max-width: 66% +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid { + display: flex;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid { + flex-wrap: wrap;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item { + flex: 1 0 200px;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item { + margin: 5px;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item { + overflow: hidden;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item { + position: relative;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item + +flex-grid-item > img { + max-width: 110%;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item + +flex-grid-item > img { + height: auto;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item + +flex-grid-item > img { + display: block;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item + +flex-grid-item > img { +;} + image-container # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item + +flex-grid-item > img + +@media (max-width: 700px) {display: inline-block;} + image-container # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item + +flex-grid-item > img + +@media (max-width: 700px) { min-width: 100% !important;} + image-container + div.captioned-image # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item + +flex-grid-item > img + +@media (max-width: 700px) {min-width: 100%;} + image-container + div.captioned-image # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item + +flex-grid-item > img + +@media (max-width: 700px) { margin-right: 0;} + image-container + div.captioned-image # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item + +flex-grid-item > img + +@media (max-width: 700px) {;} + image-container + div.captioned-image + text-column # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item + +flex-grid-item > img + +@media (max-width: 700px) {display: inline-block;} + image-container + div.captioned-image + text-column # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item + +flex-grid-item > img + +@media (max-width: 700px) { max-width: 100%;} + image-container + div.captioned-image + text-column # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item + +flex-grid-item > img + +@media (max-width: 700px) {;} + image-container + div.captioned-image + text-column + image-column-container # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item + +flex-grid-item > img + +@media (max-width: 700px) {flex-direction: column;} + image-container + div.captioned-image + text-column + image-column-container # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item + +flex-grid-item > img + +@media (max-width: 700px) {;} + image-container + div.captioned-image + text-column + image-column-container + header > nav > ul > li > h1 # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item + +flex-grid-item > img + +@media (max-width: 700px) { display: none;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item + +flex-grid-item > img + +@media (max-width: 700px) { + image-container + div.captioned-image + text-column + image-column-container + header > nav > ul > li > h1 ;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item + +flex-grid-item > img + +@media (max-width: 700px) { +;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item + +flex-grid-item > img + +@media (max-width: 700px) + + .rainbow-text { + animation:rainbow-text 5s ease-in-out infinite + ;} + 0% # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item + +flex-grid-item > img + +@media (max-width: 700px) + + .rainbow-text + @keyframes rainbow-text { + color:red + ;} + 0% + 20% # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item + +flex-grid-item > img + +@media (max-width: 700px) + + .rainbow-text + @keyframes rainbow-text { + color:orange + ;} + 0% + 20% + 40% # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item + +flex-grid-item > img + +@media (max-width: 700px) + + .rainbow-text + @keyframes rainbow-text { + color:green + ;} + 0% + 20% + 40% + 60% # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item + +flex-grid-item > img + +@media (max-width: 700px) + + .rainbow-text + @keyframes rainbow-text { + color:blue + ;} + 0% + 20% + 40% + 60% + 80% # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item + +flex-grid-item > img + +@media (max-width: 700px) + + .rainbow-text + @keyframes rainbow-text { + color:purple + ;} + 0% + 20% + 40% + 60% + 80% + to # 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item + +flex-grid-item > img + +@media (max-width: 700px) + + .rainbow-text + @keyframes rainbow-text { + color:red + ;}# 0 "/tmp/css.css" +# 0 "" +# 0 "" +# 1 "/usr/include/stdc-predef.h" 1 3 4 +# 0 "" 2 +# 1 "/tmp/css.css" + + @font-face + +@font-face + +@media (max-width: 1400px) + +@media (min-width: 1400px) + +* + +:root + +@media (prefers-color-scheme: dark) + +body + +h1 + +h2 + +h3 + +img + +main + +header + +footer + +section + +form + +figure + +table + +th, td + +th:first-child, td:first-child + +th:last-child, td:last-child + +iframe + +summary + +code, pre + +xmp + +a + +a:visited + +.post + +.italic + +.captioned-image + +::-webkit-scrollbar + +::selection + +image-column-container + +image-container + +flex-column + +image-column img + +text-column + +flex-grid + +flex-grid-item + +flex-grid-item > img + +@media (max-width: 700px) + + .rainbow-text + @keyframes rainbow-text { + 0% + 20% + 40% + 60% + 80% + to + ;} \ No newline at end of file -- 2.30.2