diff options
| -rw-r--r-- | public/assets/css/css.css | 11 | ||||
| -rw-r--r-- | public/assets/js/nav.js | 2 | ||||
| -rw-r--r-- | public/index.html | 3 |
3 files changed, 4 insertions, 12 deletions
diff --git a/public/assets/css/css.css b/public/assets/css/css.css index aa61167..b5cc410 100644 --- a/public/assets/css/css.css +++ b/public/assets/css/css.css @@ -6,15 +6,6 @@ body { font-family: sans-serif; line-height: 1; } -#luckyimage img { - width: 100%; - height: 100%; - position: fixed; - top: 0; - left: 0; - z-index: 1; - display: block; -} #topnav { height: 23px; min-width: 500px; @@ -50,7 +41,7 @@ a:visited { color: blue; } -#luckyimage { +#image { position: fixed; height: 100%; width: 100%; diff --git a/public/assets/js/nav.js b/public/assets/js/nav.js index bfddc2c..c768b51 100644 --- a/public/assets/js/nav.js +++ b/public/assets/js/nav.js @@ -16,7 +16,7 @@ var NavView = View.extend({ this.id = -1 this.$pip = this.$("#pip") this.$pip_img = this.$("#pip img") - this.$image = this.$("#luckyimage") + this.$image = this.$("#image") $(window).on("keydown", this.keydown.bind(this)) $(document).ajaxError(function(){ diff --git a/public/index.html b/public/index.html index 773df9a..b02aae8 100644 --- a/public/index.html +++ b/public/index.html @@ -1,13 +1,14 @@ <!DOCTYPE html> <html> <head> -<title>Platsch</title> +<title>p</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" href="/p/assets/css/css.css"> </head> <body> +<div id="image"></div> <div id="droparea"></div> <div id="mobile_nav"> |
