aboutsummaryrefslogtreecommitdiff
path: root/picarones-elm/document.css
diff options
context:
space:
mode:
authorstuebinm2021-03-07 16:59:38 +0100
committerstuebinm2021-03-07 18:36:43 +0100
commit090041fadec2e2896c3b82ef518096313d452c13 (patch)
treeb24b2753f8316bbf25420e8c121c685d346505a7 /picarones-elm/document.css
parent2ad5d413aa958a1c2fe75ce7aa155576e9a80345 (diff)
parentf4a1ee55987b7c58745dc5865c4ecf30874a3564 (diff)
Join subtrees and integrate meta info / gitignore
git-subtree-dir: picarones-elm git-subtree-mainline: 2ad5d413aa958a1c2fe75ce7aa155576e9a80345 git-subtree-split: f4a1ee55987b7c58745dc5865c4ecf30874a3564
Diffstat (limited to 'picarones-elm/document.css')
-rw-r--r--picarones-elm/document.css78
1 files changed, 78 insertions, 0 deletions
diff --git a/picarones-elm/document.css b/picarones-elm/document.css
new file mode 100644
index 0000000..e4379b6
--- /dev/null
+++ b/picarones-elm/document.css
@@ -0,0 +1,78 @@
+/*@font-face {
+ font-family: "sharetech";
+ src: url('{{ "/assets/ShareTech-Regular.ttf" | prepend: site.baseurl }}');
+}*/
+
+body {
+ color: white;
+ background-color: #222;
+ text-align: center;
+}
+
+img {
+ position: absolute;
+ top: 0;
+ left: 0;
+ object-fit: contain;
+ width: 100%;
+ height: 100%;
+}
+
+
+.slides {
+ width: 100%;
+ height: 90vh;
+ position: relative;
+}
+
+.controls {
+ margin: auto;
+}
+
+button, .button {
+ border-radius: 4px;
+ margin: 1em;
+ padding: 0.3em;
+ padding-right: 0.5em;
+ padding-left: 0.5em;
+ background-color: #fb0;
+ border: none;
+ box-shadow: 0px 0px 7px 7px #fb03;
+ font-size: 20px;
+ color: black !important;
+ text-decoration: none;
+ cursor: pointer;
+ transition: 0.2s;
+ font-family: "sharetech";
+}
+
+.button a {
+ color: #000;
+}
+
+button:enabled:hover, .button:hover {
+ box-shadow: 0px 0px 7px 7px #fb09;
+}
+
+button:enabled:active {
+ background-color: #615400;
+ color: #eee;
+}
+
+button:disabled {
+ filter: grayscale(100%);
+ -webkit-filter: grayscale(100%);
+ cursor: not-allowed;
+}
+
+button.pressed {
+ background-color: #615400;
+ color: #eee;
+}
+
+
+
+
+
+
+