From f0219b4c86b4b1583fd71536a984cbac03e4b8c3 Mon Sep 17 00:00:00 2001 From: Noah Loomans Date: Wed, 21 Feb 2018 19:56:49 +0100 Subject: Add pws slide --- slides/pws/style.css | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 slides/pws/style.css (limited to 'slides/pws/style.css') diff --git a/slides/pws/style.css b/slides/pws/style.css new file mode 100644 index 0000000..e32e21d --- /dev/null +++ b/slides/pws/style.css @@ -0,0 +1,56 @@ +.profile { + background-color: rgba(0, 0, 0, 0.8);; + display: flex; + align-items: center; + border-radius: 8px; + max-width: 650px; + margin: 0 auto !important; +} + +.profile img { + width: 120px; + height: 120px; + border-radius: 50%; + margin: 16px !important; +} + +.profile .info { + margin: 16px; + text-align: left; +} + +.profile .pgp-key { + font-family: "Roboto Mono"; + font-size: 15px; + color: gray; +} + +#blockchain { + display: flex !important; + width: 960px; + height: 600px; + flex-direction: column; + justify-content: end; +} + +#blockchain pre { + box-shadow: initial; + line-height: 1em; + margin: 0 auto; + padding: 5px 0; + animation: appear 1s; +} + +#blockchain pre.header { + font-weight: bold; +} + +@keyframes appear { + from { + background-color: #91971b; + } + + to { + background-color: #222; + } +} -- cgit v1.1