summaryrefslogtreecommitdiff
path: root/site/assets/css/applets.css
diff options
context:
space:
mode:
Diffstat (limited to 'site/assets/css/applets.css')
-rw-r--r--site/assets/css/applets.css25
1 files changed, 25 insertions, 0 deletions
diff --git a/site/assets/css/applets.css b/site/assets/css/applets.css
index aa9ce47f..e84fcfc2 100644
--- a/site/assets/css/applets.css
+++ b/site/assets/css/applets.css
@@ -140,9 +140,34 @@
.map {
margin-bottom: 20px;
}
+.map_cover {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ cursor: pointer;
+ background: rgba(0,0,0,0.8);
+ z-index: 9998; /* site header is 9999 */
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ font-size: 36px;
+ transition: opacity 0.4s cubic-bezier(0,0,1,1);
+ opacity: 1;
+}
+.desktop .map_cover {
+ opacity: 0;
+}
+.desktop .map_cover:hover {
+ opacity: 1;
+}
/* tabulator */
+.tabulator {
+ font-family: 'Roboto', sans-serif;
+}
.tabulator-row {
transition: background-color 100ms cubic-bezier(0,0,1,1);
background-color: rgba(255,255,255,0.0);