Modif de la structure du header
0
favicons/defaut-128.png
Normal file → Executable file
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
0
favicons/defaut-192.png
Normal file → Executable file
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
0
favicons/defaut-256.png
Normal file → Executable file
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
0
favicons/defaut-32.png
Normal file → Executable file
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
0
favicons/defaut-384.png
Normal file → Executable file
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
0
favicons/defaut-48.png
Normal file → Executable file
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
0
favicons/defaut-512.png
Normal file → Executable file
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
0
favicons/defaut-64.png
Normal file → Executable file
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
0
favicons/defaut-96.png
Normal file → Executable file
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
0
favicons/parinux-128.png
Normal file → Executable file
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
0
favicons/parinux-16.png
Normal file → Executable file
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
0
favicons/parinux-192.png
Normal file → Executable file
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
0
favicons/parinux-256.png
Normal file → Executable file
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
0
favicons/parinux-32.png
Normal file → Executable file
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
0
favicons/parinux-384.png
Normal file → Executable file
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
0
favicons/parinux-48.png
Normal file → Executable file
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
0
favicons/parinux-512.png
Normal file → Executable file
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.0 KiB |
0
favicons/parinux-64.png
Normal file → Executable file
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
0
favicons/parinux-96.png
Normal file → Executable file
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
10
index.php
@ -12,8 +12,7 @@
|
|||||||
$couleurPrincipale = "#157097";
|
$couleurPrincipale = "#157097";
|
||||||
}
|
}
|
||||||
|
|
||||||
require("lessphp/lessc.inc.php");
|
|
||||||
$less = new lessc;
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
@ -36,15 +35,16 @@
|
|||||||
<meta name="theme-color" content="<?php echo $couleurPrincipale; ?>">
|
<meta name="theme-color" content="<?php echo $couleurPrincipale; ?>">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<style>
|
<style>
|
||||||
<?php echo $less->compileFile("themes/" . $theme . ".less"); ?>
|
<?php require("lessphp/lessc.inc.php");
|
||||||
|
$less = new lessc;
|
||||||
|
echo $less->compileFile("themes/" . $theme . ".less"); ?>
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body lang="fr">
|
<body lang="fr">
|
||||||
<header>
|
<header>
|
||||||
<h1><a href=""><img id="logo" src="parinux.png" alt="Logo de Parinux"> Générateur de codes QR</a></h1>
|
<a href=""><img id="logo" src="<?php echo $theme; ?>.png" alt="Logo <?php echo $theme; ?>"> <h1>Générateur de codes QR</h1></a>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<form method="post">
|
<form method="post">
|
||||||
|
|
||||||
<div class="param">
|
<div class="param">
|
||||||
|
BIN
parinux.png
Before Width: | Height: | Size: 8.9 KiB After Width: | Height: | Size: 9.6 KiB |
16
style.less
@ -109,10 +109,19 @@ label {
|
|||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
header {
|
||||||
text-align: left;
|
text-align: center;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
header > a {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, #logo {
|
||||||
|
margin: auto;
|
||||||
font-size: 35px;
|
font-size: 35px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -143,8 +152,7 @@ h1 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#logo {
|
#logo {
|
||||||
width: 60px;
|
width: 64px;
|
||||||
display: @afficherLogoParinux;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
::placeholder {
|
::placeholder {
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
@bordure: #5f5f5f;
|
@bordure: #5f5f5f;
|
||||||
@bordureHover: #808080;
|
@bordureHover: #808080;
|
||||||
@bordureFocus: #b6b6b6;
|
@bordureFocus: #b6b6b6;
|
||||||
@afficherLogoParinux: none;
|
|
||||||
@texte: white;
|
@texte: white;
|
||||||
@texteForm: white;
|
@texteForm: white;
|
||||||
@texteLienCodeSource: #868686;
|
@texteLienCodeSource: #868686;
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
@bordure: #48aed9;
|
@bordure: #48aed9;
|
||||||
@bordureHover: #87d1f1;
|
@bordureHover: #87d1f1;
|
||||||
@bordureFocus: #e2f6ff;
|
@bordureFocus: #e2f6ff;
|
||||||
@afficherLogoParinux: inline;
|
|
||||||
@texte: #B4EAFF;
|
@texte: #B4EAFF;
|
||||||
@texteForm: #e2f6ff;
|
@texteForm: #e2f6ff;
|
||||||
@texteLienCodeSource: #3da3cf;
|
@texteLienCodeSource: #3da3cf;
|
||||||
|