12 changed files with 234 additions and 169 deletions
Unified View
Diff Options
-
27controller/status.php
-
8include/config.php
-
14lib/Download.php
-
13lib/Stream.php
-
5root/admin/index.php
-
25root/css/admin.css
-
125root/css/scripts.css
-
BINroot/img/ip.png
-
BINroot/img/link.png
-
11root/index.php
-
2root/scripts/index.html
-
173templates/status.php
@ -1,6 +1,7 @@ |
|||||
<?php |
<?php |
||||
|
|
||||
include dirname(__FILE__).'/../../include/config.php'; |
|
||||
|
include __DIR__.'/../../include/config.php'; |
||||
|
|
||||
|
include __DIR__.'/../../controller/status.php'; |
||||
|
|
||||
include dirname(__FILE__).'/../../controller/status.php'; |
|
||||
getStatus(); |
getStatus(); |
||||
@ -0,0 +1,125 @@ |
|||||
|
html { |
||||
|
font-family : "Roboto", "Helvetica Neue", Helvetica, sans-serif; |
||||
|
font-size: 14px; |
||||
|
background: rgb(242, 242, 242); |
||||
|
} |
||||
|
|
||||
|
a { |
||||
|
text-decoration: none; |
||||
|
color: #F2AA65; |
||||
|
} |
||||
|
|
||||
|
h1 { |
||||
|
color: #DA4336; |
||||
|
font-size: 22px; |
||||
|
} |
||||
|
|
||||
|
div.warning { |
||||
|
background: #DA4336; |
||||
|
color: #FEFCFC; |
||||
|
padding: 0.5em; |
||||
|
text-align: center; |
||||
|
box-shadow: 1px 1px 12px rgba(85, 85, 85, 0.25); |
||||
|
position: fixed; |
||||
|
top: 0; |
||||
|
width: 100%; |
||||
|
left: 0; |
||||
|
height: 3em; |
||||
|
} |
||||
|
|
||||
|
div.contenu { |
||||
|
margin-left: 1em; |
||||
|
margin-top: 5em; |
||||
|
} |
||||
|
|
||||
|
div.cont1 { |
||||
|
display: inline-block; |
||||
|
width: 100%; |
||||
|
height: 80px; |
||||
|
} |
||||
|
|
||||
|
div.extension { |
||||
|
background: white; |
||||
|
float: left; |
||||
|
text-align: center; |
||||
|
padding-top: 0.8em; |
||||
|
padding-bottom: 0.8em; |
||||
|
padding-left: 2em; |
||||
|
padding-right: 2em; |
||||
|
margin-left: 3%; |
||||
|
border: 1px solid rgb(230, 230, 230); |
||||
|
height: inherit; |
||||
|
} |
||||
|
|
||||
|
div.extension img { |
||||
|
margin-left: 1em; |
||||
|
margin-right: 1em; |
||||
|
margin-top: 0.5em; |
||||
|
} |
||||
|
|
||||
|
div.script { |
||||
|
background: white; |
||||
|
float: left; |
||||
|
text-align: center; |
||||
|
padding-top: 0.8em; |
||||
|
padding-bottom: 0.8em; |
||||
|
padding-left: 2em; |
||||
|
padding-right: 2em; |
||||
|
margin-left: 5%; |
||||
|
border: 1px solid rgb(230, 230, 230); |
||||
|
height: inherit; |
||||
|
} |
||||
|
|
||||
|
div.mybtn { |
||||
|
margin-top: 1.2em; |
||||
|
} |
||||
|
|
||||
|
a.btn { |
||||
|
box-shadow: 1px 1px 1px rgba(102, 102, 102, 0.25); |
||||
|
color: rgb(254, 254, 254); |
||||
|
background: #fa963f; |
||||
|
padding: 10px 20px 10px 20px; |
||||
|
} |
||||
|
|
||||
|
/* Page d'admin */ |
||||
|
div.account { |
||||
|
background-color: #ffa726; |
||||
|
text-align: center; |
||||
|
margin-bottom: 1em; |
||||
|
color: #FEFCFC; |
||||
|
} |
||||
|
|
||||
|
div.addMulti { |
||||
|
margin-bottom: 1em; |
||||
|
text-align: center; |
||||
|
margin-top: 5em; |
||||
|
margin-left: 1em; |
||||
|
} |
||||
|
|
||||
|
div.list { |
||||
|
background-color: #B9C1CC; |
||||
|
} |
||||
|
|
||||
|
div.list div { |
||||
|
margin-bottom: 1em; |
||||
|
} |
||||
|
|
||||
|
table.listdl { |
||||
|
width: 100% |
||||
|
} |
||||
|
|
||||
|
.added { |
||||
|
background-color: #ccff90; |
||||
|
} |
||||
|
|
||||
|
.downloading { |
||||
|
background-color: #78909c; |
||||
|
} |
||||
|
|
||||
|
.downloaded { |
||||
|
background-color: #29b6f6; |
||||
|
} |
||||
|
|
||||
|
.dupp { |
||||
|
background-color: #ef5350; |
||||
|
} |
||||
Write
Preview
Loading…
Cancel
Save