From 98e1540272ddf5389702c3ceb4532478d4a380ae Mon Sep 17 00:00:00 2001 From: chrisbenti Date: Mon, 20 Jan 2025 07:20:12 +0000 Subject: [PATCH] deploy: 175a0e87224184afff54208d24db626e00b7e82d --- .nojekyll | 0 index.html | 21 +++++++++++++++++ styles.css | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 90 insertions(+) create mode 100644 .nojekyll create mode 100644 index.html create mode 100644 styles.css diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 000000000..e69de29bb diff --git a/index.html b/index.html new file mode 100644 index 000000000..4cb2ac09b --- /dev/null +++ b/index.html @@ -0,0 +1,21 @@ + + + + + + + + + + Snoking to BenchApp - ICS Edition + + + +
+ +
+ + + + \ No newline at end of file diff --git a/styles.css b/styles.css new file mode 100644 index 000000000..819746f65 --- /dev/null +++ b/styles.css @@ -0,0 +1,69 @@ +/* Reset */ +/* http://meyerweb.com/eric/tools/css/reset/ + v2.0 | 20110126 + License: none (public domain) +*/ + +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, +dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, +table, caption, tbody, tfoot, thead, tr, th, td, +article, aside, canvas, details, embed, +figure, figcaption, footer, header, hgroup, +menu, nav, output, ruby, section, summary, +time, mark, audio, video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; +} +/* HTML5 display-role reset for older browsers */ +article, aside, details, figcaption, figure, +footer, header, hgroup, menu, nav, section { + display: block; +} +body { + line-height: 1; +} +ol, ul { + list-style: none; +} +blockquote, q { + quotes: none; +} +blockquote:before, blockquote:after, +q:before, q:after { + content: ''; + content: none; +} +table { + border-collapse: collapse; + border-spacing: 0; +} + + + +/* Font */ +@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Roboto:wght@500&display=swap'); +body { + font-family: 'Cormorant Garamond', serif; + font-family: 'Roboto', sans-serif; + font-weight: 500; + font-size: 2rem; +} + +main { + display: flex; + justify-content: center; +} + +li { + margin: 1rem; +} \ No newline at end of file