From 71b38778f1bd5865bc0eca8994f776e4b08880a4 Mon Sep 17 00:00:00 2001 From: Emily Doherty Date: Sun, 12 Feb 2023 03:01:03 -0800 Subject: [PATCH] Added 'details' sections to provide more information about the site --- src/index.html | 58 +++++++++++++++++++++++++++++++++----------------- src/style.css | 31 ++++++++++++++++++++++++--- 2 files changed, 66 insertions(+), 23 deletions(-) diff --git a/src/index.html b/src/index.html index 754c9bc..3dbe75d 100644 --- a/src/index.html +++ b/src/index.html @@ -20,32 +20,50 @@

- - + + +

+

+ +

- -

+
+ About this Site + This is a site developed to track the value of the World of Warcraft Token from various + regions over time. I developed it because I wanted a quick and simple way to track the + cost without being advertised to or tracked, and to play around with various "serverless" + technologies. As such, my promise to you is never to use any tracking Javascript, and the + only logging is for debugging purposes of the backend - which does not get IPs. +
+
+ What is the WoW Token + The World of Warcraft Token is a first-party system developed by Blizzard to allow you + to either spend currency (local denomination or Blizzard Balance) and convert it to gold + in retail World of Warcraft, or use gold to buy game time or Blizzard Balance. To find out + more, visit the support article on Blizzard's website + here. +

- About and Source + Source

diff --git a/src/style.css b/src/style.css index 5761326..ee989f6 100644 --- a/src/style.css +++ b/src/style.css @@ -181,7 +181,7 @@ html { margin: 1em; } /*body { - + }*/ code { background-color: #073642; @@ -309,7 +309,7 @@ h6 { max-width: 85%; border: 1pt solid #586e75; padding: 1em; -} +} .flex-container > div { flex: 100%; @@ -324,6 +324,32 @@ p { line-height: 3em; } +details { + background-color: #073642; + border: 1px solid #aaa; + border-radius: 4px; + padding: 0.5em 0.5em 0; + font-size: 17px; + line-height: 1.5em; + margin: .5em 5vw; +} + +details > summary { + color: #aaaaaa; + cursor: pointer; + font-weight: bold; + margin: -0.5em -0.5em 0; + padding: 0.5em; +} + +details[open] { + padding: 0.5em; +} + +details[open] summary { + border-bottom: 1px solid #aaa; + margin-bottom: 0.5em; +} #option_select { font-size: 20px; @@ -352,7 +378,6 @@ p { flex-direction: column; } - .lds-ripple { position: relative; align-self: center;