aboutsummaryrefslogtreecommitdiff
path: root/styles/presentation.css
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2021-05-12 14:31:26 +0200
committerlonkaars <loek@pipeframe.xyz>2021-05-12 14:31:26 +0200
commitba45ba5ae8caffd696eb062d278c06ebc60dfbb8 (patch)
tree96197010c6666eb99f61317f7bcf53d416014d31 /styles/presentation.css
parentfb26495ab3dffcc9b49d7a7bd9714b5b805ddcb7 (diff)
present screen working
Diffstat (limited to 'styles/presentation.css')
-rw-r--r--styles/presentation.css70
1 files changed, 65 insertions, 5 deletions
diff --git a/styles/presentation.css b/styles/presentation.css
index 309b616..0a95b97 100644
--- a/styles/presentation.css
+++ b/styles/presentation.css
@@ -1,13 +1,73 @@
-.presentation {
- background-color: #000;
-}
-
.slideWrapper {
margin: 0 auto;
max-width: calc(16 / 9 * 100vh);
}
-.slide {
+.slideWrapper .slide {
padding-top: calc(9 / 16 * 100%);
background-color: #ff00ff;
}
+
+.fullscreenControls {
+ --menu-size: 25;
+ display: grid;
+ grid-template-columns: 1fr calc(var(--menu-size) * 1vw) 1fr;
+}
+
+#menu {
+ pointer-events: none;
+ transition: opacity .3s;
+ opacity: 0;
+}
+
+#menu.active {
+ pointer-events: unset;
+ opacity: 1;
+}
+
+#menu .background {
+ background: linear-gradient(180deg,
+ rgba(1, 1, 13, 0.46) 50%,
+ rgba(1, 1, 13, 1.00) 100%);
+}
+
+#menu .info {
+ margin: 32px;
+ grid-template-columns: auto 1fr auto;
+}
+
+#menu .info .timetitle,
+#menu .info .slide {
+ line-height: 1;
+}
+
+#menu .info .timetitle *,
+#menu .info .slide * {
+ margin: 0;
+}
+
+#menu .info h3 {
+ color: var(--c700);
+ font-weight: 400;
+ font-size: 50px;
+}
+
+#menu .info h1 {
+ font-weight: 600;
+ font-size: 70px;
+}
+
+#menu .MuiButton-root {
+ background-color: var(--piss);
+}
+
+#menu .MuiButton-root.bg-err {
+ background-color: var(--error);
+}
+
+#menu .info .buttons .inner .MuiButton-root {
+ margin: 0;
+ margin-right: 16px;
+ margin-top: 16px;
+}
+