diff --git a/css/style.css b/css/style.css index 3d9e853..73373b2 100644 --- a/css/style.css +++ b/css/style.css @@ -19,6 +19,7 @@ html { background-color: #c0c0c0; + background-image: url(../img/concrete_wall_3.png); min-height: 100%; position: relative; @@ -54,12 +55,13 @@ header { header{ background-color: #303030; - position: fixed; + background-image: url(../img/dark_circles.png); + /*position: fixed;*/ width: 100%; - height: 40px; + height: 25px; top: 0; left: 0; - z-index: 100000; + /*z-index: 100000;*/ box-shadow: 0 1px 2px #303030; -webkit-box-shadow: 0 1px 2px #303030; @@ -79,8 +81,9 @@ h1{ -#dropbox{ +#dropbox { background-color: #a0a0a0; + background-image: url(../img/brushed_alu_dark.png); border-radius: 3px; position: relative; @@ -182,7 +185,8 @@ h1{ } #dropbox .progress { - background-color: #2586d0; + background-color: #c0c0c0; + background-image: url(../img/concrete_wall_3.png); position: absolute; height: 100%; left: 0; @@ -217,4 +221,33 @@ h1{ #dropbox .linkHolder input { width: 100%; +} + + +/*------------------------- + Uploaded Image +--------------------------*/ + +#imageContainer { + width: 100%; + text-align: center; + margin-top: 25px; + margin-bottom: 25px; +} + +.image { + max-width: 920px; +} + +#message { + background-color: #a0a0a0; + background-image: url(../img/brushed_alu_dark.png); + + border-radius: 3px; + margin: auto; + overflow: hidden; + width: 600px; + padding: 10px; + + box-shadow: 0 0 4px rgba(0,0,0,0.3) inset,0 -3px 2px rgba(0,0,0,0.1); } \ No newline at end of file diff --git a/index.php b/index.php index 2a06cd9..89a0e6e 100644 --- a/index.php +++ b/index.php @@ -8,22 +8,24 @@ if($id == '' ) { $content = 'id not set'; } else { if(!is_numeric($id) || $id <= 0) { - $content = 'This image does not exist: bad id format (' . $id . ')'; + $message = 'This image does not exist: bad id format (' . $id . ')'; } else { $db = mysqli_init(); $db->real_connect($conf->hostname, $conf->username, $conf->password, $conf->database); - $query = "SELECT extension, created FROM screens WHERE id = $id"; + $query = "SELECT extension, created, original FROM screens WHERE id = $id"; $result = $db->query($query); if($result->num_rows == 0) { - $content = 'This image does not exist: not in database'; + $message = 'This image does not exist: not in database'; } else { // load tags $image = $result->fetch_object(); - $content = ''; - $content .= '
Created on: ' . $image->created; + $imageOutput = ''; + $message = 'Uploaded on: ' . $image->created; + $message .= '
Original name: ' . $image->original; + $message .= '
View Raw: '. $id . '.' . $image->extension . ''; } } } @@ -45,9 +47,15 @@ if($id == '' ) {

title or navigation or something

+ +
+ +
+ +
+ +
-
-