diff options
Diffstat (limited to 'static/site.css')
| -rw-r--r-- | static/site.css | 44 |
1 files changed, 26 insertions, 18 deletions
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 +} |
