From 25594377c26d66c90140a136e8b096e82edd1cd9 Mon Sep 17 00:00:00 2001 From: alyx Date: Mon, 24 Jun 2024 19:43:05 -0400 Subject: Import existing site --- style.css | 90 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 style.css (limited to 'style.css') diff --git a/style.css b/style.css new file mode 100644 index 0000000..3b8a5e5 --- /dev/null +++ b/style.css @@ -0,0 +1,90 @@ +@import url('https://fonts.googleapis.com/css2?family=Geologica&family=Montserrat+Subrayada:wght@700&display=swap'); + +:root { + --text-color: hsl(99, 36%, 81%); + --bg-color: hsl(290, 100%, 8%); + --bg2-color: hsl(290, 100%, 4%); + --em-color: hsl(294, 42%, 65%); + --sub-color: hsl(294, 42%, 50%); + --link-color: hsl(324, 42%, 55%); + + font-family: 'Geologica', sans-serif; +} + +body { + display: flex; + flex-direction: column; + align-items: center; + + margin: 0px; + + background: repeating-linear-gradient(45deg, var(--bg-color), var(--bg-color) 18px, var(--bg2-color) 18px, var(--bg2-color) 21px); + background-attachment: fixed; + color: var(--text-color); + + padding-top: 5mm; +} + +a { + color: var(--link-color); +} + +section, footer { + margin-bottom: 1cm; + padding: 5mm; + border-radius: 3.5mm; + + background: #fff1; + backdrop-filter: blur(5px); + + max-width: 20cm; +} + +hgroup, +h1, h2, h3, h4, h5, h6 { + font-family: 'Montserrat Subrayada', sans-serif; + +} + +h1, h2, h3, h4, h5, h6 { + margin-top: 0px; + margin-bottom: 0px; + color: var(--em-color) +} + +hgroup > p { + color: var(--sub-color) +} + +section > pre { + background: var(--bg2-color); + padding: 2.5mm; + border-radius: 2.5mm; + + width: auto; +} + +footer { + color: var(--sub-color); + margin-bottom: 5mm; +} +footer > p { margin: 0px; } + +code { + background: var(--bg2-color); + padding: 1mm; + border-radius: 2mm; +} + +p { + line-height: 1.5; +} + +:is(h1,h2,h3,h4,h5,h6) > a { + color: inherit; + text-decoration: none; +} + +:is(h1,h2,h3,h4,h5,h6) > a:hover { + color: inherit; +} -- cgit v1.2.3-54-g00ecf