Ajout du header
This commit is contained in:
parent
658dd7de35
commit
0c92d3a78e
7
README.md
Normal file → Executable file
7
README.md
Normal file → Executable file
@ -1,3 +1,4 @@
|
|||||||
# qr
|
# Présentation
|
||||||
|
Un générateur de codes QR pour le Web créé par Miraty basé sur la bibliothèque [phpqrcode](https://github.com/t0k4rt/phpqrcode).
|
||||||
Un générateur de codes QR en PHP pour le Web.
|
# Démo
|
||||||
|
Une instance de ce service est disponible à l'adresse [https://qr.antopie.org](https://qr.antopie.org).
|
||||||
|
0
aide.svg
Normal file → Executable file
0
aide.svg
Normal file → Executable file
Before Width: | Height: | Size: 5.9 KiB After Width: | Height: | Size: 5.9 KiB |
0
favicon.png
Normal file → Executable file
0
favicon.png
Normal file → Executable file
Before Width: | Height: | Size: 196 B After Width: | Height: | Size: 196 B |
10
index.php
10
index.php
@ -10,6 +10,10 @@
|
|||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body lang="fr">
|
<body lang="fr">
|
||||||
|
<header>
|
||||||
|
<h1>Générateur de codes QR</h1>
|
||||||
|
<a href="https://code.antopie.org/miraty/qr">Code source</a>
|
||||||
|
</header>
|
||||||
<form method="post" action="index.php">
|
<form method="post" action="index.php">
|
||||||
|
|
||||||
<div class="param">
|
<div class="param">
|
||||||
@ -85,8 +89,9 @@
|
|||||||
|
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
<br/>
|
||||||
|
|
||||||
<input type="submit" class="bouton" value="Générer" />
|
<input type="submit" value="Générer" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -109,7 +114,4 @@
|
|||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 244 B |
Binary file not shown.
Before Width: | Height: | Size: 244 B |
30
style.css
30
style.css
@ -31,13 +31,13 @@
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.bouton {
|
input[type=submit] {
|
||||||
background-color: #31363B;
|
background-color: #31363B;
|
||||||
border: 2px #616569 solid;
|
border: 2px #616569 solid;
|
||||||
color: white;
|
color: white;
|
||||||
padding: 3px 10px 3px 10px;
|
padding: 3px 10px 3px 10px;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
font-size: 1em;
|
font-size: 1.2em;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
@ -54,6 +54,8 @@ form {
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
display: inline;
|
display: inline;
|
||||||
|
padding: 0px;
|
||||||
|
margin: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
@ -72,12 +74,32 @@ label {
|
|||||||
margin-bottom: 100px;
|
margin-bottom: 100px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a[href] {
|
|
||||||
color: white;
|
header a {
|
||||||
|
color: #868686;
|
||||||
|
font-size: 12px;
|
||||||
|
margin-bottom: -20px;
|
||||||
|
text-align: right;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
text-align: left;
|
||||||
|
padding: 0px;
|
||||||
|
margin: 0px;
|
||||||
|
font-size: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.param {
|
.param {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
|
padding-left: 0px;
|
||||||
|
margin-left: 0px;
|
||||||
|
padding-right: 0px;
|
||||||
|
margin-right: 0px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user