From 0de3b1fc195c6f07d5cce4df312a663fd5823735 Mon Sep 17 00:00:00 2001 From: Torsten Grothoff Date: Sun, 6 Sep 2020 19:07:45 +0200 Subject: stuff? --- talermerchantdemos/static/demo.scss | 82 +++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 talermerchantdemos/static/demo.scss (limited to 'talermerchantdemos/static/demo.scss') diff --git a/talermerchantdemos/static/demo.scss b/talermerchantdemos/static/demo.scss new file mode 100644 index 0000000..7733515 --- /dev/null +++ b/talermerchantdemos/static/demo.scss @@ -0,0 +1,82 @@ +/* style common to all demo pages */ + +.demobar h1 { + text-align: center; +} +.demobar > p { + padding: 0.5em; +} +.demobar a, +.demobar a:visited { + color: inherit; +} +.adorn-brackets::before { + content: "❬"; + color: #aa3939; +} +.adorn-brackets::after { + content: "❭"; + color: #aa3939; +} +.tt { + font-family: 'Lucida Console', Monaco, monospace; +} + +.informational-ok { + background: lightgreen; + border-radius: 1em; + padding: 0.5em; +} + +.informational-fail { + background: lightpink; + border-radius: 1em; + padding: 0.5em; +} + +.content { + overflow-x: auto; +} +.demobar { + overflow-x: auto; + background-color: #033; + color: white; +} + +body { + overflow-x: hidden; + overflow-y: auto; +} + +body * { + /* margin-left: 0.5vw; */ + left: 0.1vw; +} + +@media (min-width: 500px) { + .content { + /* margin-left: 0vw; */ + padding-left: 2em; + margin-right: 1em; + overflow-x: hidden; + overflow-y: auto; + } + .demobar { + /* height: 100%; */ + /* width: 25%; */ + /* NOTE: Please use "vh"/"vw" instead of "%" when possible, in the future. */ + height: min-content; + width: 100vw; + margin: 0; + top: 0; + left: 0; + background-color: #033; + color: white; + position: relative; + padding-right: 1em; + overflow-x: hidden; + overflow-y: auto; + text-align: center; + } +} + -- cgit v1.2.3