aboutsummaryrefslogtreecommitdiff
path: root/document.css
diff options
context:
space:
mode:
authorstuebinm2021-02-19 00:23:51 +0100
committerstuebinm2021-02-19 00:23:51 +0100
commit56ef5217cc03408b8d2b09809880e2cfda7a5855 (patch)
tree2809161fad1994e98780451b118891a5885d6ad3 /document.css
Simple Slide-changing client
Everything works, EXCEPT: - choosing slidesets - choosing rooms - choosing the number of slides at runtime.
Diffstat (limited to '')
-rw-r--r--document.css78
1 files changed, 78 insertions, 0 deletions
diff --git a/document.css b/document.css
new file mode 100644
index 0000000..e4379b6
--- /dev/null
+++ b/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;
+}
+
+
+
+
+
+
+