- Maybe your box isn’t connected to your network yet, try to connect to a Doodle3D-... WiFi network.
- Otherwise, make sure you’re on the same WiFi network.
- You can always connect your box to your computer using an ethernet cable. - - -
diff --git a/api/connect.php b/api/connect.php deleted file mode 100644 index 075064d..0000000 --- a/api/connect.php +++ /dev/null @@ -1,20 +0,0 @@ -setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); - } catch (PDOException $e) { - $response = array( "status" => "error", - "msg" => $e->getMessage()." (".$e->getCode().")"); - exit(json_encode($response)."\r\n"); - } -?> diff --git a/api/create_table.php b/api/create_table.php deleted file mode 100644 index 5b68a6a..0000000 --- a/api/create_table.php +++ /dev/null @@ -1,24 +0,0 @@ -prepare("CREATE TABLE IF NOT EXISTS $table (" . - "`id` varchar(31) NOT NULL," . - "`remoteip` varchar(15) NOT NULL," . - "`localip` varchar(15) NOT NULL," . - "`wifiboxid` varchar(140) NOT NULL," . - "`hidden` tinyint(1) NOT NULL DEFAULT '0'," . - "`date` datetime NOT NULL," . - "PRIMARY KEY (`id`)" . - ") ENGINE=InnoDB DEFAULT CHARSET=latin1;"); - - if($createsql->execute() == TRUE) - echo "$table created"; - } catch (PDOException $e) { - $response = array( "status" => "error", - "msg" => $e->getMessage()." (".$e->getCode().")"); - exit(json_encode($response)."\r\n"); - } -?> diff --git a/api/list.example b/api/list.example deleted file mode 100644 index a353498..0000000 --- a/api/list.example +++ /dev/null @@ -1,21 +0,0 @@ -{ - "status":"success", - "data":[ - { - "id":"62.216.8.197\/10.0.0.18", - "remoteip":"62.216.8.197", - "localip":"10.0.0.18", - "wifiboxid":"Albert", - "hidden":"0", - "date":"2013-10-03 17:24:33", - }, - { - "id":"62.216.8.197\/10.0.0.29", - "remoteip":"62.216.8.197", - "localip":"10.0.0.29", - "wifiboxid":"Wilbert", - "hidden":"0", - "date":"2013-10-03 17:52:19" - } - ], -} \ No newline at end of file diff --git a/api/list.php b/api/list.php deleted file mode 100644 index b560dcd..0000000 --- a/api/list.php +++ /dev/null @@ -1,21 +0,0 @@ -prepare("SELECT * FROM $table where date >= FROM_UNIXTIME(:hourago) AND remoteip = :remoteip"); - $statement->execute(array( ':hourago' => $hourago, - ':remoteip' => $remoteip)); - $boxes = $statement->fetchAll(PDO::FETCH_CLASS); - } catch (PDOException $e) { - $response = array( "status" => "error", - "msg" => $e->getMessage()." (".$e->getCode().")"); - exit(json_encode($response)."\r\n"); - } - - $response = array( "status" => "success", - "data" => $boxes); - exit(json_encode($response)."\r\n"); -?> \ No newline at end of file diff --git a/api/signin.php b/api/signin.php deleted file mode 100644 index 3837f3a..0000000 --- a/api/signin.php +++ /dev/null @@ -1,68 +0,0 @@ - "error", - "msg" => "'signin' can only be accessed with the POST method"); - - - exit(json_encode($response)."\r\n"); - }*/ - - require 'connect.php'; - - if(!isset($_GET['localip'])) { - $response = array( "status" => "error", - "msg" => "missing localip"); - exit(json_encode($response)."\r\n"); - } - $localip = $_GET['localip']; - - if(!isset($_GET['wifiboxid'])) { - $response = array( "status" => "error", - "msg" => "missing wifiboxid"); - exit(json_encode($response)."\r\n"); - } - $wifiboxid = $_GET['wifiboxid']; - - $remoteip = getenv('REMOTE_ADDR'); - - $timestamp = time(); - - $id = $remoteip.'/'.$localip; //TODO: column length: 31 - - try { - $statement = $db->prepare( "REPLACE INTO $table " . - "SET id = :id, " . - " remoteip = :remoteip, " . - " localip = :localip, " . - " wifiboxid = :wifiboxid, " . - " date = FROM_UNIXTIME(:timestamp)"); - $statement->execute(array( ":id" => $id, - ":remoteip" => $remoteip, - ":localip" => $localip, - ":wifiboxid" => $wifiboxid, - ":timestamp" => $timestamp)); - } catch (PDOException $e) { - $response = array( "status" => "error", - "msg" => $e->getMessage()." (".$e->getCode().")"); - exit(json_encode($response)."\r\n"); - } - - // Remove old signins - $hourago = time() - 60*60; - try { - $statement = $db->prepare("DELETE FROM $table WHERE date < FROM_UNIXTIME(:hourago)"); - $statement->execute(array( ':hourago' => $hourago)); - } catch (PDOException $e) { - $response = array( "status" => "error", - "msg" => $e->getMessage()." (".$e->getCode().")"); - exit(json_encode($response)."\r\n"); - } - - $responseData = array( "remoteip" => $remoteip, - "localip" => $localip, - "wifiboxid" => $wifiboxid, - "timestamp" => $timestamp); - $response = array( "status" => "success", - "data" => $responseData); - exit(json_encode($response)."\r\n"); -?> diff --git a/css/add2home.css b/css/add2home.css deleted file mode 100644 index a2d64ae..0000000 --- a/css/add2home.css +++ /dev/null @@ -1,180 +0,0 @@ -/** - * - * Main container - * - */ -#addToHomeScreen { - z-index:9999; - -webkit-user-select:none; - user-select:none; - -webkit-box-sizing:border-box; - box-sizing:border-box; - -webkit-touch-callout:none; - touch-callout:none; - width:240px; - font-size:15px; - padding:12px 14px; - text-align:left; - font-family:helvetica; - background-image:-webkit-gradient(linear,0 0,0 100%,color-stop(0,#fff),color-stop(0.02,#eee),color-stop(0.98,#ccc),color-stop(1,#a3a3a3)); - border:1px solid #505050; - -webkit-border-radius:8px; - -webkit-background-clip:padding-box; - color:#333; - text-shadow:0 1px 0 rgba(255,255,255,0.75); - line-height:130%; - -webkit-box-shadow:0 0 4px rgba(0,0,0,0.5); -} - -#addToHomeScreen.addToHomeIOS7 { - background:#f2f2f2 !important; - -webkit-border-radius:1px !important; - border:1px solid #ccc; - -webkit-box-shadow:0 0 4px rgba(0,0,0,0.2); -} - -#addToHomeScreen.addToHomeIpad { - width:268px; - font-size:18px; - padding:14px; -} - -/** - * - * The 'wide' class is added when the popup contains the touch icon - * - */ -#addToHomeScreen.addToHomeWide { - width:296px; -} - -#addToHomeScreen.addToHomeIpad.addToHomeWide { - width:320px; - font-size:18px; - padding:14px; -} - -/** - * - * The balloon arrow - * - */ -#addToHomeScreen .addToHomeArrow { - position:absolute; - background-image:-webkit-gradient(linear,0 0,100% 100%,color-stop(0,rgba(204,204,204,0)),color-stop(0.4,rgba(204,204,204,0)),color-stop(0.4,#ccc)); - border-width:0 1px 1px 0; - border-style:solid; - border-color:#505050; - width:16px; height:16px; - -webkit-transform:rotateZ(45deg); - bottom:-9px; - left:50%; - margin-left:-8px; - -webkit-box-shadow:inset -1px -1px 0 #a9a9a9; - -webkit-border-bottom-right-radius:2px; -} - -#addToHomeScreen.addToHomeIOS7 .addToHomeArrow { - background-image:-webkit-gradient(linear,0 0,100% 100%,color-stop(0,rgba(204,204,204,0)),color-stop(0.4,rgba(204,204,204,0)),color-stop(0.4,#f2f2f2)) !important; - -webkit-box-shadow:inset -1px -1px 0 #fff !important; - border-color:#ccc !important; -} - -/** - * - * The balloon arrow for iPad - * - */ -#addToHomeScreen.addToHomeIpad .addToHomeArrow { - -webkit-transform:rotateZ(-135deg); - background-image:-webkit-gradient(linear,0 0,100% 100%,color-stop(0,rgba(238,238,238,0)),color-stop(0.4,rgba(238,238,238,0)),color-stop(0.4,#eee)); - -webkit-box-shadow:inset -1px -1px 0 #fff; - top:-9px; bottom:auto; left:50%; -} - - -/** - * - * Close button - * - */ -#addToHomeScreen .addToHomeClose { - -webkit-box-sizing:border-box; - position:absolute; - right:4px; - top:4px; - width:18px; - height:18px; line-height:14px; - text-align:center; - text-indent:1px; - -webkit-border-radius:9px; - background:rgba(0,0,0,0.12); - color:#888; - -webkit-box-shadow:0 1px 0 #fff; - font-size:16px; -} - -#addToHomeScreen.addToHomeIOS7 .addToHomeClose { - line-height:12px; - padding-right:1px; - background:transparent; - border: 1px solid #888; - -webkit-box-shadow:none; -} - -/** - * - * The '+' icon, displayed only on iOS < 4.2 - * - */ -#addToHomeScreen .addToHomePlus { - font-weight:bold; - font-size:1.3em; -} - - -/** - * - * The 'share' icon, displayed only on iOS >= 4.2 - * - */ -#addToHomeScreen .addToHomeShare { - display:inline-block; - width:18px; - height:15px; - background-repeat:no-repeat; - background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAeCAQAAADu6HTYAAADPElEQVR4Xq3TX2gcRRzA8e/M7mVv2+TSNpc/TZtrY6jUGqgaSAmEChKLrYK0YH0RFC2CSCkEfCghiKU04J8qNigq6os+iQV98MHWFwVBrQQRWs21lBw5cw3NNb1/udu72RGG5Y77IzXW77D7sAwf5scyYoL6BGXSDKFZwaGpLvIUaeoCkvX1MmsM0Ny6oRSQYOLuIS+YZOpfQdqslpUxcZrzTVAz4qPwW2O3CeIwC/RSzeY6Ow1QhUrkr+YOWfEKDkEP8Rij7CHKJmrFSDHBdwGEE5wiGChPN+PnT8VdRtEIl1d4gRj/1EVe5ZSBKGh8iqQpo/Fo5+3C/gz0MYg4zgwbqday1/Q4B8BGQ45d/Hi54lakCrU5obOcidJpu1+Lg9whjabyaOYLnrIBFFaRD+xe2ybMDWY66GmP/WA9cGfGp0CWhy0wkMN8inepFiH2rV1j0NQSNQbFLRQnS8/8YSDBBpadfv4CYDub2fmeHDNAsL1MBWUel0iA+Xik6eHcyvD3vAMSU1TGuA/YRS+dD7ovCQN43GKRFCU20Kd3V/avDVVyAZ5niTEuLA5/zBGWg9EEEhfJKN200Tat8CmRAQb9+wv7soPlHt2tQorsz1uPbr0HTY4sJwrH47zJZwABBAKLMBoQXepwgTwdHCo+fXMkQ4lrxEmQ5AaXipPqDY9V2vn09tgvTPI71EEGYxM+/uMJLJ4svpgaWGKOi/xKgmqLSUGSUd5f2vIVJ/CgBaTIUsZ7ZBsn0+NzfMOXLFCXQyTcybN6ep5ZZgUOHn7jpfUpsZshdugPGf+E5zjbyHTSRyQ8xfRPPM/s63RHeuknSoT22mjmmnAOIMkUZ6D1xSfPPAfd1WFKM3sO2CMaHx8M1NjnXKHaAGGkOW0C02WeYHUz4qMtx+w5gUDS8NckYe5lHsMYwCZEPyEEmjLDZFmAS7CDviMdxyTkMNVBKEmYLvbiQQBIBBbCQG04bGQvFWz6CfsCQLWCigILFwcfkGYBiOpbYuOizTAyYyDdCtrGaRG1LCkIgMYEFhI0WqQZoSlbGRyHKe4qOx7iv2bVQW9dp4dlM/x6kmwnWQcd/Q3FCqwTEiT5s+6D5v/pb0SSHyg7uhMWAAAAAElFTkSuQmCC); - background-size:18px 15px; - text-indent:-9999em; - overflow:hidden; -} - -#addToHomeScreen.addToHomeIOS7 .addToHomeShare { - width:11px; - background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAA8CAYAAAAQTCjdAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAASCQAAEgkB80sG3AAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAKjSURBVGiB7dpPiFVVHMDxz7m9NCtMyI2bEJEC25WrEkzHUXCRraIwdNE8ZxfYIlcis1ZEbGEzT1QCF4XgH1CyWhUoJKIWNRGEiCNKmkSiYTzfcfGuOokx77x3ZlS8382959zfn+/invvn3RdijHIRBrwkOINCYXEcdjpb7VyiYdBsLScwt5y6IloYdzqXo36Ro0gY9IKWo+5JwmzBt2HQnBw9ehYNazyn5TBee8Dh+Vq+CWu92GufnkTDR6ab7gDeBNHouMM/l9tXTXM0fGBmL726Fg1Dam74EsvKqR8VNowL2Yzj5f7rnnE4DHq2235diYYhhTGfC94up35T0y+6di/ITU0rKVd+sEi0P7xr2pSJOu8zvF+OzqEv7vDH/WFxt7/cshy/ticsN8sXYUht0kXDOlsF9XJ4UaEvNoz9X3zc5bKaZThbyr5jzJ4wlNY7KTgM+ES0vhz+KeiPw36fKC/ucAF9uFBOrTZm26SJCtaV27+xIo7cXdkTEhvOoh+XyxprU1qnim7CQdGK2HAyKRexYVShT3RItDElN+mkjiP2Ym+S3f01hv2EVal5WW6hU0ElmptaqJuBpXg6MbeFH2LDpU6CQ93zWIKnEvs0cayGU3glMfkOo1jQYewZzOuyz7FC95Jwo5OgUFfgeg993hh/eTqCTxOSm/iuk8DY0Ap1b2GhtHXxsfZN4j/X0fOx4auEIknEhqv4OiUn1L13Z/+xWfWVaG4q0dxUormpRHNTieamEs1NJZqbJ1Q0jHvdiJo5S2cVjSNOCHZhn3/SnuYnIvl3yomIIz7MXZMn9hydRCrR3FSiualEc1OJ5qYSzU0lmptKNDePjWgwcPePT7/g+4cp8wCW4GXaryK3tL+mLdD5x62ppllgu7bso8q/2HIbzGWdNmWnSJwAAAAASUVORK5CYII=); - background-size:11px 15px; -} - -/** - * - * The touch icon (if available) - * - */ -#addToHomeScreen .addToHomeTouchIcon { - display:block; - float:left; - -webkit-border-radius:6px; - border-radius:6px; - -webkit-box-shadow:0 1px 3px rgba(0,0,0,0.5), - inset 0 0 2px rgba(255,255,255,0.9); - box-shadow:0 1px 3px rgba(0,0,0,0.5), - inset 0 0 2px rgba(255,255,255,0.9); - background-repeat:no-repeat; - width:57px; height:57px; - -webkit-background-size:57px 57px; - background-size:57px 57px; - margin:0 12px 0 0; - border:1px solid #333; - -webkit-background-clip:padding-box; - background-clip:padding-box; -} diff --git a/css/bg.css b/css/bg.css deleted file mode 100644 index 7c023ad..0000000 --- a/css/bg.css +++ /dev/null @@ -1,82 +0,0 @@ -.uiButtonsContainer { - position: absolute; - max-width: 1024px; - /*min-width: 800px;*/ - width: 100%; - height: 100%; - /*max-height: 768px;*/ - /*min-height: 300px;*/ - top: 0; left: 0; right: 0; bottom: 0; - /*overflow: hidden;*/ - margin: 0 auto; - outline: 2px solid #5e8c71; - box-shadow: 0 0 8px rgba(8, 8, 8, 0.25); - /* height: 768px;*/ -} - -#d3dlogo { - position: absolute; - top: 2.5%; - /*left: 31%;*/ - width: 100%; - margin: 0 auto; - height: 139px; - background: url('../img/logo_full.png') no-repeat center center; - cursor: pointer; -} - -.bgContainer { - position: absolute; - width: 100%; - height: 100%; - overflow: hidden; -} -.bgTop, .bgMiddle, .bgBottom { - opacity: 1.0; - transition: opacity .35s linear; - position: absolute; - left: 0; - z-index: -5; -} -.bgTop { - top: 0; -} -.bgMiddle { - top: 30%; -} -.bgBottom { - bottom: 0; -} - -/* The code below is for resizing UI elements as the viewport becomes less high (suitable for tablets & smartphones) */ - -@media screen and (max-height: 655px) { - .bgMiddle { opacity: 0; } -} - -@media screen and (max-height: 675px) { - #d3dlogo { - /*width: 399px;*/ - height: 74px; - background-image: url('../img/logo_small.png'); - top: 6%; - } -} - -@media screen and (max-height: 560px) { - #d3dlogo { - /*width: 399px;*/ - height: 57px; - background-image: url('../img/logo_smaller_wide.png'); - top: 6%; - } -} - -@media screen and (max-height: 420px) { - #d3dlogo { - top: 3%; - } -} - - - diff --git a/css/chosen.min.css b/css/chosen.min.css deleted file mode 100644 index 79772fc..0000000 --- a/css/chosen.min.css +++ /dev/null @@ -1,3 +0,0 @@ -/* Chosen v1.1.0 | (c) 2011-2013 by Harvest | MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md */ - -.chosen-container{position:relative;display:inline-block;vertical-align:middle;font-size:13px;zoom:1;*display:inline;-webkit-user-select:none;-moz-user-select:none;user-select:none}.chosen-container .chosen-drop{position:absolute;top:100%;left:-9999px;z-index:1010;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;border:1px solid #aaa;border-top:0;background:#fff;box-shadow:0 4px 5px rgba(0,0,0,.15)}.chosen-container.chosen-with-drop .chosen-drop{left:0}.chosen-container a{cursor:pointer}.chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0 0 0 8px;height:23px;border:1px solid #aaa;border-radius:5px;background-color:#fff;background:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#fff),color-stop(50%,#f6f6f6),color-stop(52%,#eee),color-stop(100%,#f4f4f4));background:-webkit-linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background:-moz-linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background:-o-linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background:linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background-clip:padding-box;box-shadow:0 0 3px #fff inset,0 1px 1px rgba(0,0,0,.1);color:#444;text-decoration:none;white-space:nowrap;line-height:24px}.chosen-container-single .chosen-default{color:#999}.chosen-container-single .chosen-single span{display:block;overflow:hidden;margin-right:26px;text-overflow:ellipsis;white-space:nowrap}.chosen-container-single .chosen-single-with-deselect span{margin-right:38px}.chosen-container-single .chosen-single abbr{position:absolute;top:6px;right:26px;display:block;width:12px;height:12px;background:url(../img/chosenchosen-sprite.png) -42px 1px no-repeat;font-size:1px}.chosen-container-single .chosen-single abbr:hover{background-position:-42px -10px}.chosen-container-single.chosen-disabled .chosen-single abbr:hover{background-position:-42px -10px}.chosen-container-single .chosen-single div{position:absolute;top:0;right:0;display:block;width:18px;height:100%}.chosen-container-single .chosen-single div b{display:block;width:100%;height:100%;background:url(../img/chosen/chosen-sprite.png) no-repeat 0 2px}.chosen-container-single .chosen-search{position:relative;z-index:1010;margin:0;padding:3px 4px;white-space:nowrap}.chosen-container-single .chosen-search input[type=text]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:1px 0;padding:4px 20px 4px 5px;width:100%;height:auto;outline:0;border:1px solid #aaa;background:#fff url(../img/chosen/chosen-sprite.png) no-repeat 100% -20px;background:url(../img/chosen/chosen-sprite.png) no-repeat 100% -20px;font-size:1em;font-family:sans-serif;line-height:normal;border-radius:0}.chosen-container-single .chosen-drop{margin-top:-1px;border-radius:0 0 4px 4px;background-clip:padding-box}.chosen-container-single.chosen-container-single-nosearch .chosen-search{position:absolute;left:-9999px}.chosen-container .chosen-results{position:relative;overflow-x:hidden;overflow-y:auto;margin:0 4px 4px 0;padding:0 0 0 4px;max-height:240px;-webkit-overflow-scrolling:touch}.chosen-container .chosen-results li{display:none;margin:0;padding:5px 6px;list-style:none;line-height:15px;-webkit-touch-callout:none}.chosen-container .chosen-results li.active-result{display:list-item;cursor:pointer}.chosen-container .chosen-results li.disabled-result{display:list-item;color:#ccc;cursor:default}.chosen-container .chosen-results li.highlighted{background-color:#3875d7;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#3875d7),color-stop(90%,#2a62bc));background-image:-webkit-linear-gradient(#3875d7 20%,#2a62bc 90%);background-image:-moz-linear-gradient(#3875d7 20%,#2a62bc 90%);background-image:-o-linear-gradient(#3875d7 20%,#2a62bc 90%);background-image:linear-gradient(#3875d7 20%,#2a62bc 90%);color:#fff}.chosen-container .chosen-results li.no-results{display:list-item;background:#f4f4f4}.chosen-container .chosen-results li.group-result{display:list-item;font-weight:700;cursor:default}.chosen-container .chosen-results li.group-option{padding-left:15px}.chosen-container .chosen-results li em{font-style:normal;text-decoration:underline}.chosen-container-multi .chosen-choices{position:relative;overflow:hidden;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0;width:100%;height:auto!important;height:1%;border:1px solid #aaa;background-color:#fff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(1%,#eee),color-stop(15%,#fff));background-image:-webkit-linear-gradient(#eee 1%,#fff 15%);background-image:-moz-linear-gradient(#eee 1%,#fff 15%);background-image:-o-linear-gradient(#eee 1%,#fff 15%);background-image:linear-gradient(#eee 1%,#fff 15%);cursor:text}.chosen-container-multi .chosen-choices li{float:left;list-style:none}.chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap}.chosen-container-multi .chosen-choices li.search-field input[type=text]{margin:1px 0;padding:5px;height:15px;outline:0;border:0!important;background:transparent!important;box-shadow:none;color:#666;font-size:100%;font-family:sans-serif;line-height:normal;border-radius:0}.chosen-container-multi .chosen-choices li.search-field .default{color:#999}.chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:3px 0 3px 5px;padding:3px 20px 3px 5px;border:1px solid #aaa;border-radius:3px;background-color:#e4e4e4;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-clip:padding-box;box-shadow:0 0 2px #fff inset,0 1px 0 rgba(0,0,0,.05);color:#333;line-height:13px;cursor:default}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:4px;right:3px;display:block;width:12px;height:12px;background:url(../img/chosen/chosen-sprite.png) -42px 1px no-repeat;font-size:1px}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{background-position:-42px -10px}.chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);color:#666}.chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4}.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close{background-position:-42px -10px}.chosen-container-multi .chosen-results{margin:0;padding:0}.chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default}.chosen-container-active .chosen-single{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0,0,0,.3)}.chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#eee),color-stop(80%,#fff));background-image:-webkit-linear-gradient(#eee 20%,#fff 80%);background-image:-moz-linear-gradient(#eee 20%,#fff 80%);background-image:-o-linear-gradient(#eee 20%,#fff 80%);background-image:linear-gradient(#eee 20%,#fff 80%);box-shadow:0 1px 0 #fff inset}.chosen-container-active.chosen-with-drop .chosen-single div{border-left:0;background:transparent}.chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 2px}.chosen-container-active .chosen-choices{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0,0,0,.3)}.chosen-container-active .chosen-choices li.search-field input[type=text]{color:#111!important}.chosen-disabled{opacity:.5!important;cursor:default}.chosen-disabled .chosen-single{cursor:default}.chosen-disabled .chosen-choices .search-choice .search-choice-close{cursor:default}.chosen-rtl{text-align:right}.chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0}.chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl}.chosen-rtl .chosen-single-with-deselect span{margin-left:38px}.chosen-rtl .chosen-single div{right:auto;left:3px}.chosen-rtl .chosen-single abbr{right:auto;left:26px}.chosen-rtl .chosen-choices li{float:right}.chosen-rtl .chosen-choices li.search-field input[type=text]{direction:rtl}.chosen-rtl .chosen-choices li.search-choice{margin:3px 5px 3px 0;padding:3px 5px 3px 19px}.chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px}.chosen-rtl.chosen-container-single-nosearch .chosen-search,.chosen-rtl .chosen-drop{left:9999px}.chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0}.chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0}.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:0}.chosen-rtl .chosen-search input[type=text]{padding:4px 5px 4px 20px;background:#fff url(../img/chosen/chosen-sprite.png) no-repeat -30px -20px;background:url(../img/chosen/chosen-sprite.png) no-repeat -30px -20px;direction:rtl}.chosen-rtl.chosen-container-single .chosen-single div b{background-position:6px 2px}.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b{background-position:-12px 2px}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-resolution:144dpi){.chosen-rtl .chosen-search input[type=text],.chosen-container-single .chosen-single abbr,.chosen-container-single .chosen-single div b,.chosen-container-single .chosen-search input[type=text],.chosen-container-multi .chosen-choices .search-choice .search-choice-close,.chosen-container .chosen-results-scroll-down span,.chosen-container .chosen-results-scroll-up span{background-image:url(../img/chosen/chosen-sprite@2x.png)!important;background-size:52px 37px!important;background-repeat:no-repeat!important}} \ No newline at end of file diff --git a/css/main.css b/css/main.css deleted file mode 100644 index 2d8d6a9..0000000 --- a/css/main.css +++ /dev/null @@ -1,207 +0,0 @@ -p, small { - line-height: 1.2em; -} - -#container { - position:absolute; - width: 100%; - max-width: 1024px; - /*max-height: 768px;*/ - top: 0; - bottom: 0; - left: 0; - right: 0; - overflow: hidden; - margin: 0 auto; - - box-shadow: 0 0 0 2px #5e8c71, 0 0 8px 4px rgba(8, 8, 8, 0.25); -} - -a { - color: #5491D2; - text-decoration: none; -} - -#preloader { - position: absolute; - top: 50%; - left: 50%; - width: 50px; - height: 50px; - margin: -25px 0 0 -25px; - pointer-events: none; -} -#list { - padding: 0; -} - -.box{ - list-style-type: none; - float: left; - - margin: 0 15px 15px 0; - /*padding: 25px;*/ - padding: 0 0 25px 0; - display: block; - position: relative; - - min-width: 200px; /*175px;*/ - min-height: 175px; /*175px;*/ - /*height: 275px;*/ - - border: 2px solid #333; - border-radius: 25px; - - -moz-box-shadow: 0px 2px 7px 0px rgba(16, 16, 16, 0.60); - -webkit-box-shadow: 0px 2px 7px 0px rgba(16, 16, 16, 0.60); - box-shadow: 0px 2px 7px 0px rgba(16, 16, 16, 0.60); - - transition:background-color 0.1s, color 0.1s; -} -.box:hover { - background-color: #5491D2; -} -.box:hover .link{ - color: #fff; -} -.box.complex { - width: 375px; /*320px;*/ - height: 350px; - /*border: 2px solid #00f;*/ -} -box.connecting { - border: 2px solid #ff0; -} -.box .link{ - display:block; - padding: 25px 25px 12px 25px; - text-align: center; - - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -.box.complex .link { - position: relative; - top: auto; - right: auto; - bottom: auto; - left: auto; -} -.box small { - margin: 0.5em 0 0 0; - display: block; -} - -#hint { - display:none; - position: absolute; - bottom: 1em; -} - -#networkForm { - display: none; -} -.box .networkForm { - display: none; -} -.box.complex .networkForm { - display: block; -} - - -/* FORMS */ -form label { - min-width: 110px; - display: block; - float: left; - margin: 1px 0 10px 0; -} -form label.inline { - display: inline; - float: none; -} - -form input, form select { - margin-bottom: 5px; -} -form select { - margin-right: 5px; -} -form input[type="text"], form input[type="number"], form input[type="password"], form select { - width: 130px; -} -form input[type="text"], form input[type="number"], form input[type="password"] { - border: 1px solid rgb(144, 192, 255); - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; -} -form .row { - clear: left; -} -form .row div { -/* float: left;*/ -} - - -/* NETWORK PANEL */ -.networkForm { - background-color: #fff; - /*border-radius: 0 0 25px 25px;*/ - padding: 12px 25px 12px 25px; -} -.networkForm p { - margin: 0 0 10px 0; -} - -.networkForm #network { - margin-right: 5px; - width: 180px; -} -.networkForm #ssid, -.networkForm #listNetworks, -.networkForm #passwordSettings { - display: none; -} -.networkForm.customNetwork #passwordSettings { - display: block; -} -.networkForm.customNetwork #ssid, -.networkForm.customNetwork #listNetworks{ - display: inline-block; -} -.networkForm.customNetwork #network, -.networkForm.customNetwork #refreshNetworks { - display: none; -} -.networkForm #status { - position: relative; - top: 2px; -} -.networkForm #action { - /*clear: left;*/ - display: block; - padding: 5px 4px 4px 4px; -} -.networkForm #action.error { - background: #EB313C; - color: #fff; -} -.networkForm #action.warning { - background: #E9A86E; -} -.networkForm #action.notice { - background: #93CAF4; -} -.networkForm #action.info { - background: #97DD8A; -} -.networkForm #action.none { - display: none; -} -.networkForm .chosen-container-single .chosen-default { - color: #333; /* let's not pretend it's disabled */ -} \ No newline at end of file diff --git a/css/mobile.css b/css/mobile.css deleted file mode 100644 index ab29eb0..0000000 --- a/css/mobile.css +++ /dev/null @@ -1,51 +0,0 @@ -/* MOBILE */ -@media only screen and (max-width: 480px), -only screen and (max-width: 720px) and (min-device-pixel-ratio : 1.5), -only screen and (max-width: 720px) and (-webkit-min-device-pixel-ratio : 1.5) { - body { - /*background-color: #f0f;*/ - } - - #d3dlogo { - /*width: 399px;*/ - height: 57px; - background-image: url('../img/logo_smaller_wide.png'); - top: 7px; - } - - .popup { - /*background-color: rgba(255, 255, 255, 0.6);*/ - background-color: rgba(245, 245, 245, 0.65); - position: absolute; - bottom: 0; - left: 0; - top: 75px; - width: 100%; - height: auto; - margin: 0; - - /*-moz-box-shadow: 0 0 0 3px rgba(16, 16, 16, 1.0), 0 2px 6px 0 rgba(16, 16, 16, 0.65), 0 6px 6px -2px rgba(16, 16, 16, 0.2) inset;*/ - /*-webkit-box-shadow: 0 0 0 3px rgba(16, 16, 16, 1.0), 0 2px 6px 0 rgba(16, 16, 16, 0.65), 0 6px 6px -2px rgba(16, 16, 16, 0.2) inset;*/ - box-shadow: 0 0 0 2px rgba(16, 16, 16, 0.8), 0 2px 6px 0 rgba(16, 16, 16, 0.65), 0 6px 6px -2px rgba(16, 16, 16, 0.2) inset; - border: 0; - border-radius: 0; - /*-moz-border-radius: 15px;*/ - /*-webkit-border-radius: 15px;*/ - overflow-x: hidden; - overflow-y: scroll; - } - - .bgContainer { - /*display: none;*/ - } - - #list { - padding: 0; - } - #list li { - list-style-type: none; - float: none; - } - -} - diff --git a/css/normalize.css b/css/normalize.css deleted file mode 100644 index 823cc10..0000000 --- a/css/normalize.css +++ /dev/null @@ -1,534 +0,0 @@ -/*! normalize.css v1.0.2 | MIT License | git.io/normalize */ - -/* ========================================================================== - HTML5 display definitions - ========================================================================== */ - -/* - * Corrects `block` display not defined in IE 6/7/8/9 and Firefox 3. - */ - -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -nav, -section, -summary { - display: block; -} - -/* - * Corrects `inline-block` display not defined in IE 6/7/8/9 and Firefox 3. - */ - -audio, -canvas, -video { - display: inline-block; - *display: inline; - *zoom: 1; -} - -/* - * Prevents modern browsers from displaying `audio` without controls. - * Remove excess height in iOS 5 devices. - */ - -audio:not([controls]) { - display: none; - height: 0; -} - -/* - * Addresses styling for `hidden` attribute not present in IE 7/8/9, Firefox 3, - * and Safari 4. - * Known issue: no IE 6 support. - */ - -[hidden] { - display: none; -} - -/* ========================================================================== - Base - ========================================================================== */ - -/* - * 1. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using - * `em` units. - * 2. Prevents iOS text size adjust after orientation change, without disabling - * user zoom. - */ - -html { - font-size: 100%; /* 1 */ - -webkit-text-size-adjust: 100%; /* 2 */ - -ms-text-size-adjust: 100%; /* 2 */ -} - -/* - * Addresses `font-family` inconsistency between `textarea` and other form - * elements. - */ - -html, -button, -input, -select, -textarea { - font-family: sans-serif; -} - -/* - * Addresses margins handled incorrectly in IE 6/7. - */ - -body { - margin: 0; -} - -/* ========================================================================== - Links - ========================================================================== */ - -/* - * Addresses `outline` inconsistency between Chrome and other browsers. - */ - -a:focus { - outline: thin dotted; -} - -/* - * Improves readability when focused and also mouse hovered in all browsers. - */ - -a:active, -a:hover { - outline: 0; -} - -/* ========================================================================== - Typography - ========================================================================== */ - -/* - * Addresses font sizes and margins set differently in IE 6/7. - * Addresses font sizes within `section` and `article` in Firefox 4+, Safari 5, - * and Chrome. - */ - -h1 { - font-size: 2em; - margin: 0.67em 0; -} - -h2 { - font-size: 1.5em; - margin: 0.83em 0; -} - -h3 { - font-size: 1.17em; - margin: 1em 0; -} - -h4 { - font-size: 1em; - margin: 1.33em 0; -} - -h5 { - font-size: 0.83em; - margin: 1.67em 0; -} - -h6 { - font-size: 0.67em; - margin: 2.33em 0; -} - -/* - * Addresses styling not present in IE 7/8/9, Safari 5, and Chrome. - */ - -abbr[title] { - border-bottom: 1px dotted; -} - -/* - * Addresses style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome. - */ - -b, -strong { - font-weight: bold; -} - -blockquote { - margin: 1em 40px; -} - -/* - * Addresses styling not present in Safari 5 and Chrome. - */ - -dfn { - font-style: italic; -} - -/* - * Addresses styling not present in IE 6/7/8/9. - */ - -mark { - background: #ff0; - color: #000; -} - -/* - * Addresses margins set differently in IE 6/7. - */ - -p, -pre { - margin: 1em 0; -} - -/* - * Corrects font family set oddly in IE 6, Safari 4/5, and Chrome. - */ - -code, -kbd, -pre, -samp { - font-family: monospace, serif; - _font-family: 'courier new', monospace; - font-size: 1em; -} - -/* - * Improves readability of pre-formatted text in all browsers. - */ - -pre { - white-space: pre; - white-space: pre-wrap; - word-wrap: break-word; -} - -/* - * Addresses CSS quotes not supported in IE 6/7. - */ - -q { - quotes: none; -} - -/* - * Addresses `quotes` property not supported in Safari 4. - */ - -q:before, -q:after { - content: ''; - content: none; -} - -/* - * Addresses inconsistent and variable font size in all browsers. - */ - -small { - font-size: 80%; -} - -/* - * Prevents `sub` and `sup` affecting `line-height` in all browsers. - */ - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sup { - top: -0.5em; -} - -sub { - bottom: -0.25em; -} - -/* ========================================================================== - Lists - ========================================================================== */ - -/* - * Addresses margins set differently in IE 6/7. - */ - -dl, -menu, -ol, -ul { - margin: 1em 0; -} - -dd { - margin: 0 0 0 40px; -} - -/* - * Addresses paddings set differently in IE 6/7. - */ - -menu, -ol, -ul { - padding: 0 0 0 40px; -} - -/* - * Corrects list images handled incorrectly in IE 7. - */ - -nav ul, -nav ol { - list-style: none; - list-style-image: none; -} - -/* ========================================================================== - Embedded content - ========================================================================== */ - -/* - * 1. Removes border when inside `a` element in IE 6/7/8/9 and Firefox 3. - * 2. Improves image quality when scaled in IE 7. - */ - -img { - border: 0; /* 1 */ - -ms-interpolation-mode: bicubic; /* 2 */ -} - -/* - * Corrects overflow displayed oddly in IE 9. - */ - -svg:not(:root) { - overflow: hidden; -} - -/* ========================================================================== - Figures - ========================================================================== */ - -/* - * Addresses margin not present in IE 6/7/8/9, Safari 5, and Opera 11. - */ - -figure { - margin: 0; -} - -/* ========================================================================== - Forms - ========================================================================== */ - -/* - * Corrects margin displayed oddly in IE 6/7. - */ - -form { - margin: 0; -} - -/* - * Define consistent border, margin, and padding. - */ - -fieldset { - border: 1px solid #c0c0c0; - margin: 0 2px; - padding: 0.35em 0.625em 0.75em; -} - -/* - * 1. Corrects color not being inherited in IE 6/7/8/9. - * 2. Corrects text not wrapping in Firefox 3. - * 3. Corrects alignment displayed oddly in IE 6/7. - */ - -legend { - border: 0; /* 1 */ - padding: 0; - white-space: normal; /* 2 */ - *margin-left: -7px; /* 3 */ -} - -/* - * 1. Corrects font size not being inherited in all browsers. - * 2. Addresses margins set differently in IE 6/7, Firefox 3+, Safari 5, - * and Chrome. - * 3. Improves appearance and consistency in all browsers. - */ - -button, -input, -select, -textarea { - font-size: 100%; /* 1 */ - margin: 0; /* 2 */ - vertical-align: baseline; /* 3 */ - *vertical-align: middle; /* 3 */ -} - -/* - * Addresses Firefox 3+ setting `line-height` on `input` using `!important` in - * the UA stylesheet. - */ - -button, -input { - line-height: normal; -} - -/* - * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` - * and `video` controls. - * 2. Corrects inability to style clickable `input` types in iOS. - * 3. Improves usability and consistency of cursor style between image-type - * `input` and others. - * 4. Removes inner spacing in IE 7 without affecting normal text inputs. - * Known issue: inner spacing remains in IE 6. - */ - -button, -html input[type="button"], /* 1 */ -input[type="reset"], -input[type="submit"] { - -webkit-appearance: button; /* 2 */ - cursor: pointer; /* 3 */ - *overflow: visible; /* 4 */ -} - -/* - * Re-set default cursor for disabled elements. - */ - -button[disabled], -input[disabled] { - cursor: default; -} - -/* - * 1. Addresses box sizing set to content-box in IE 8/9. - * 2. Removes excess padding in IE 8/9. - * 3. Removes excess padding in IE 7. - * Known issue: excess padding remains in IE 6. - */ - -input[type="checkbox"], -input[type="radio"] { - box-sizing: border-box; /* 1 */ - padding: 0; /* 2 */ - *height: 13px; /* 3 */ - *width: 13px; /* 3 */ -} - -/* - * 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome. - * 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome - * (include `-moz` to future-proof). - */ - -input[type="search"] { - -webkit-appearance: textfield; /* 1 */ - -moz-box-sizing: content-box; - -webkit-box-sizing: content-box; /* 2 */ - box-sizing: content-box; -} - -/* - * Removes inner padding and search cancel button in Safari 5 and Chrome - * on OS X. - */ - -input[type="search"]::-webkit-search-cancel-button, -input[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} - -/* - * Removes inner padding and border in Firefox 3+. - */ - -button::-moz-focus-inner, -input::-moz-focus-inner { - border: 0; - padding: 0; -} - -/* - * 1. Removes default vertical scrollbar in IE 6/7/8/9. - * 2. Improves readability and alignment in all browsers. - */ - -textarea { - overflow: auto; /* 1 */ - vertical-align: top; /* 2 */ -} - -/* ========================================================================== - Tables - ========================================================================== */ - -/* - * Remove most spacing between table cells. - */ - -table { - border-collapse: collapse; - border-spacing: 0; -} - - -/* http://nicolasgallagher.com/micro-clearfix-hack/ */ -/** - * For modern browsers - * 1. The space content is one way to avoid an Opera bug when the - * contenteditable attribute is included anywhere else in the document. - * Otherwise it causes space to appear at the top and bottom of elements - * that are clearfixed. - * 2. The use of `table` rather than `block` is only necessary if using - * `:before` to contain the top-margins of child elements. - */ - -/** - * For IE 6/7 only - * Include this rule to trigger hasLayout and contain floats. - */ -.cf { - *zoom: 1; -} - -.cf:before, -.cf:after { - content: " "; /* 1 */ - display: table; /* 2 */ -} - -.cf:after { - clear: both; -} diff --git a/css/popups.css b/css/popups.css deleted file mode 100644 index 81ad646..0000000 --- a/css/popups.css +++ /dev/null @@ -1,41 +0,0 @@ -#contentOverlay { - background-color: rgba(255, 255, 255, 0.65); - z-index: 10; - position: absolute; - top: 0; - left: 0; - right: 0; - bottom: 0; - width: 100%; - max-width: 1024px; - height: 100%; - /*max-height: 768px;*/ -} - -.popup { - background-color: #fff; - z-index: 15; - - position: absolute; - bottom: 6%; - left: 50%; - width: 80%; - height: 70%; - margin: -35% 0 0 -40%; - - /*-moz-box-shadow: 0px 2px 6px 0px rgba(16, 16, 16, 0.65);*/ - /*-webkit-box-shadow: 0px 2px 6px 0px rgba(16, 16, 16, 0.65);*/ - box-shadow: 0px 2px 6px 0px rgba(16, 16, 16, 0.65); - border: 2px solid #222; - border-radius: 15px; - /*-moz-border-radius: 15px;*/ - /*-webkit-border-radius: 15px;*/ - overflow-x: hidden; - overflow-y: auto; - -webkit-overflow-scrolling: touch; -} - -.popup .content { - margin: 0 1em; -} - diff --git a/img/apple-touch-icon-144x144-precomposed.png b/img/apple-touch-icon-144x144-precomposed.png deleted file mode 100644 index e3c478b..0000000 Binary files a/img/apple-touch-icon-144x144-precomposed.png and /dev/null differ diff --git a/img/bg_bottom.png b/img/bg_bottom.png deleted file mode 100644 index 17c1fd3..0000000 Binary files a/img/bg_bottom.png and /dev/null differ diff --git a/img/bg_middle.png b/img/bg_middle.png deleted file mode 100644 index 0fb448c..0000000 Binary files a/img/bg_middle.png and /dev/null differ diff --git a/img/bg_top.png b/img/bg_top.png deleted file mode 100644 index 5ab0088..0000000 Binary files a/img/bg_top.png and /dev/null differ diff --git a/img/bg_vertical2.png b/img/bg_vertical2.png deleted file mode 100644 index 3b0b4e0..0000000 Binary files a/img/bg_vertical2.png and /dev/null differ diff --git a/img/chosen/chosen-sprite.png b/img/chosen/chosen-sprite.png deleted file mode 100644 index 3611ae4..0000000 Binary files a/img/chosen/chosen-sprite.png and /dev/null differ diff --git a/img/chosen/chosen-sprite@2x.png b/img/chosen/chosen-sprite@2x.png deleted file mode 100644 index ffe4d7d..0000000 Binary files a/img/chosen/chosen-sprite@2x.png and /dev/null differ diff --git a/img/favicon.ico b/img/favicon.ico deleted file mode 100755 index 505118c..0000000 Binary files a/img/favicon.ico and /dev/null differ diff --git a/img/favicon.png b/img/favicon.png deleted file mode 100644 index 5e8806b..0000000 Binary files a/img/favicon.png and /dev/null differ diff --git a/img/logo_full.png b/img/logo_full.png deleted file mode 100755 index 47415d8..0000000 Binary files a/img/logo_full.png and /dev/null differ diff --git a/img/logo_small.png b/img/logo_small.png deleted file mode 100644 index 1ea8163..0000000 Binary files a/img/logo_small.png and /dev/null differ diff --git a/img/logo_smaller_wide.png b/img/logo_smaller_wide.png deleted file mode 100644 index 25ae4c8..0000000 Binary files a/img/logo_smaller_wide.png and /dev/null differ diff --git a/index.html b/index.html deleted file mode 100644 index 981b403..0000000 --- a/index.html +++ /dev/null @@ -1,94 +0,0 @@ - - -
-