diff options
Diffstat (limited to 'static')
| -rwxr-xr-x | static/img/icons_pause_white.svg | 6 | ||||
| -rwxr-xr-x | static/img/icons_play_white.svg | 6 | ||||
| l--------- | static/media | 1 | ||||
| -rw-r--r-- | static/site.css | 44 | ||||
| -rw-r--r-- | static/site.html | 2 | ||||
| l--------- | static/uploads | 1 |
6 files changed, 41 insertions, 19 deletions
diff --git a/static/img/icons_pause_white.svg b/static/img/icons_pause_white.svg new file mode 100755 index 0000000..59c7e60 --- /dev/null +++ b/static/img/icons_pause_white.svg @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 24.1.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> +<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" + viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;" xml:space="preserve"> +<path fill='#ffffff' d="M14.34,12.5h4.16v15h-4.16V12.5z M21.5,27.5h4.17v-15H21.5V27.5z"/> +</svg> diff --git a/static/img/icons_play_white.svg b/static/img/icons_play_white.svg new file mode 100755 index 0000000..78ff002 --- /dev/null +++ b/static/img/icons_play_white.svg @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 24.1.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> +<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" + viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;" xml:space="preserve"> +<polygon fill='#ffffff' points="12.5,11 12.5,29 27.5,20 "/> +</svg> diff --git a/static/media b/static/media new file mode 120000 index 0000000..fc5e20c --- /dev/null +++ b/static/media @@ -0,0 +1 @@ +../data_store/media
\ No newline at end of file diff --git a/static/site.css b/static/site.css index 08135de..a42f15a 100644 --- a/static/site.css +++ b/static/site.css @@ -1,6 +1,8 @@ - -* { box-sizing: border-box; } -html, body { +* { + box-sizing: border-box; +} +html, +body { margin: 0; padding: 0; width: 100%; @@ -10,7 +12,7 @@ body { background: #000; color: #ddd; overflow: hidden; - font-family: 'Roboto', sans-serif; + font-family: "Roboto", sans-serif; font-size: 0.875rem; height: 100%; width: 100%; @@ -59,13 +61,13 @@ body { } @font-face { - font-family: 'Roboto'; - src: url('SITE_PATH/static/fonts/Roboto-Bold.ttf') format('truetype'); + font-family: "Roboto"; + src: url("SITE_PATH/static/fonts/Roboto-Bold.ttf") format("truetype"); font-weight: bold; } @font-face { - font-family: 'Roboto'; - src: url('SITE_PATH/static/fonts/Roboto-BoldItalic.ttf') format('truetype'); + font-family: "Roboto"; + src: url("SITE_PATH/static/fonts/Roboto-BoldItalic.ttf") format("truetype"); font-weight: bold; font-style: italic; } @@ -82,23 +84,23 @@ body { } */ @font-face { - font-family: 'Roboto'; - src: url('SITE_PATH/static/fonts/Roboto-Medium.ttf') format('truetype'); + font-family: "Roboto"; + src: url("SITE_PATH/static/fonts/Roboto-Medium.ttf") format("truetype"); font-weight: 300; } @font-face { - font-family: 'Roboto'; - src: url('SITE_PATH/static/fonts/Roboto-MediumItalic.ttf') format('truetype'); + font-family: "Roboto"; + src: url("SITE_PATH/static/fonts/Roboto-MediumItalic.ttf") format("truetype"); font-style: italic; font-weight: 300; } @font-face { - font-family: 'Roboto'; - src: url('SITE_PATH/static/fonts/Roboto-Regular.ttf') format('truetype'); + font-family: "Roboto"; + src: url("SITE_PATH/static/fonts/Roboto-Regular.ttf") format("truetype"); } @font-face { - font-family: 'Roboto'; - src: url('SITE_PATH/static/fonts/Roboto-Italic.ttf') format('truetype'); + font-family: "Roboto"; + src: url("SITE_PATH/static/fonts/Roboto-Italic.ttf") format("truetype"); font-style: italic; } /* @@ -114,7 +116,6 @@ body { } */ - .tile.hand_up { cursor: url(SITE_PATH/static/img/hand_up.png) 40 10, pointer; } @@ -127,8 +128,15 @@ body { .tile.hand_left { cursor: url(SITE_PATH/static/img/hand_left.png) 10 60, pointer; } +.tile.unclickable { + cursor: default; + pointer-events: none; +} +.tile.none { + cursor: default; +} .tile.link { border: 0 !important; background: transparent !important; -}
\ No newline at end of file +} diff --git a/static/site.html b/static/site.html index e19847b..1412da5 100644 --- a/static/site.html +++ b/static/site.html @@ -12,7 +12,7 @@ <body> <script> var s = document.createElement('script'); - s.setAttribute('src', 'BUNDLE_PATH?' + (Date.now() / 3600)) + s.setAttribute('src', 'BUNDLE_PATH?' + Math.round(Date.now() / 30000)) document.body.appendChild(s) </script> </html> diff --git a/static/uploads b/static/uploads new file mode 120000 index 0000000..79c5899 --- /dev/null +++ b/static/uploads @@ -0,0 +1 @@ +../data_store/uploads
\ No newline at end of file |
