mirror of
https://gitlab.com/mojo42/Jirafeau.git
synced 2025-01-29 18:47:44 +01:00
New design from original Jiraphe project
This commit is contained in:
parent
0d601dd942
commit
328280882d
15
install.php
15
install.php
@ -247,7 +247,11 @@ case 2:
|
||||
</tr>
|
||||
<tr class = "nav">
|
||||
<td></td>
|
||||
<td class = "nav next"><input type = "submit" name = "next" value =
|
||||
<td class = "nav next">
|
||||
<input type = "submit"
|
||||
class = "navleft" name = "previous" value = "<?php
|
||||
echo _('Previous step'); ?>" />
|
||||
<input type = "submit" name = "next" value =
|
||||
"<?php echo _('Next step'); ?>" /></td> </tr> </table>
|
||||
</fieldset> </form> </div> <?php
|
||||
break;
|
||||
@ -299,11 +303,12 @@ case 3:
|
||||
else
|
||||
echo $cfg['var_root'];
|
||||
?>" size = "40" /></td>
|
||||
</tr> <tr> <td colspan = "2"> <input type = "submit"
|
||||
class = "navright" name = "next" value = "
|
||||
<?php echo _('Next step'); ?>" /><input type = "submit"
|
||||
</tr> <tr> <td colspan = "2"><input type = "submit"
|
||||
class = "navleft" name = "previous" value = "<?php
|
||||
echo _('Previous step'); ?>" /></td> </tr> </table> </fieldset>
|
||||
echo _('Previous step'); ?>" />
|
||||
<input type = "submit" class = "navright" name = "next" value = "
|
||||
<?php echo _('Next step'); ?>" />
|
||||
</td> </tr> </table> </fieldset>
|
||||
</form> </div> <?php
|
||||
break;
|
||||
|
||||
|
@ -32,7 +32,7 @@ $cfg['var_root'] = '';
|
||||
user's langage is not available.
|
||||
*/
|
||||
$cfg['lang'] = 'auto';
|
||||
$cfg['style'] = 'default';
|
||||
$cfg['style'] = 'industrial';
|
||||
$cfg['rewrite'] = false;
|
||||
/* An empty admin password will disable the admin interface. */
|
||||
$cfg['admin_password'] = '';
|
||||
|
BIN
media/industrial/bandeau.png
Executable file
BIN
media/industrial/bandeau.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 2.0 KiB |
BIN
media/industrial/error.png
Executable file
BIN
media/industrial/error.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 525 B |
BIN
media/industrial/jyraphe.png
Executable file
BIN
media/industrial/jyraphe.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
BIN
media/industrial/ok.png
Executable file
BIN
media/industrial/ok.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 492 B |
136
media/industrial/style.css.php
Executable file
136
media/industrial/style.css.php
Executable file
@ -0,0 +1,136 @@
|
||||
<?php
|
||||
/*
|
||||
* Jyraphe, your web file repository
|
||||
* Copyright (C) 2008 Julien "axolotl" BERNARD <axolotl@magieeternelle.org>
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
* This stylesheet is the default stylesheet for Jyraphe.
|
||||
* The content is dynamically generated for easier handling.
|
||||
*/
|
||||
|
||||
$dark = '#8B4513';
|
||||
|
||||
header("Content-type: text/css");
|
||||
|
||||
?>
|
||||
|
||||
body {
|
||||
font-family: sans-serif;
|
||||
text-align: center;
|
||||
margin: 2ex auto;
|
||||
background: white;
|
||||
/* border: <?php echo $dark; ?> 5px solid; */
|
||||
}
|
||||
|
||||
fieldset {
|
||||
text-align: left;
|
||||
width: 40em;
|
||||
margin: auto;
|
||||
background: #E2f5ff;
|
||||
border: 2px solid #02233f;
|
||||
-moz-border-radius: 10px;
|
||||
-webkit-border-radius: 10px;
|
||||
}
|
||||
|
||||
fieldset legend {
|
||||
color: white;
|
||||
background: #02233f;
|
||||
border: 2px solid #02233f;
|
||||
padding: 1px 5px;
|
||||
-moz-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
background: url('bandeau.png') left top repeat-x;
|
||||
height: 70px;
|
||||
padding-top: 30px;
|
||||
}
|
||||
|
||||
h1 a {
|
||||
text-decoration: none;
|
||||
color: white;
|
||||
}
|
||||
|
||||
fieldset p {
|
||||
margin-left: 25%;
|
||||
}
|
||||
|
||||
.jyraphe_info {
|
||||
font-size: small;
|
||||
margin-left: 30%;
|
||||
}
|
||||
|
||||
label {
|
||||
float: left;
|
||||
width: 12em;
|
||||
}
|
||||
|
||||
input[type=text], input[type=submit], select {
|
||||
color: black;
|
||||
width: 15em;
|
||||
border: 1px #02233f solid;
|
||||
background: white;
|
||||
}
|
||||
|
||||
input:hover {
|
||||
color: white;
|
||||
background: #02233f;
|
||||
}
|
||||
|
||||
#jyraphe {
|
||||
background: url('jyraphe.png') right bottom no-repeat;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
height: 100px;
|
||||
width: 100px;
|
||||
clear:both;
|
||||
}
|
||||
|
||||
#copyright {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.error, .message {
|
||||
width: 50em;
|
||||
margin: 5ex auto;
|
||||
}
|
||||
|
||||
.error {
|
||||
padding-bottom: 1ex;
|
||||
border: red 2px solid;
|
||||
background-color: #FBB;
|
||||
}
|
||||
|
||||
.error p:before {
|
||||
content: url('error.png');
|
||||
padding-right: 1ex;
|
||||
}
|
||||
|
||||
.message {
|
||||
padding: 1ex;
|
||||
border: green 2px solid;
|
||||
background-color: #BFB;
|
||||
}
|
||||
|
||||
.message p:before {
|
||||
content: url('ok.png');
|
||||
padding-right: 1ex;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user