3
This commit is contained in:
parent
09e992507e
commit
345f7ff879
74 changed files with 261 additions and 3217 deletions
|
@ -10,6 +10,8 @@
|
|||
<input type="submit">
|
||||
</form>
|
||||
|
||||
Pas de compte ? <a href="register.php">En créer un</a>
|
||||
|
||||
<?php
|
||||
|
||||
if (isset($_POST['username']) AND isset($_POST['password'])) {
|
||||
|
@ -34,8 +36,6 @@
|
|||
|
||||
|
||||
echo "<br>Formulaire traité !";
|
||||
} else {
|
||||
echo "<br>Rien n'a été reçu lors du dernier chargement";
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
<input type="submit">
|
||||
</form>
|
||||
|
||||
Déjà un compte ? <a href="login.php">Se connecter</a>
|
||||
|
||||
<?php
|
||||
|
||||
if (isset($_POST['username']) AND isset($_POST['password'])) {
|
||||
|
@ -30,19 +32,6 @@
|
|||
|
||||
}
|
||||
|
||||
echo "Liste des utilisateurices<br>";
|
||||
|
||||
$db = new PDO('sqlite:' . $dbPath);
|
||||
|
||||
$result = $db->query('SELECT * FROM users');
|
||||
|
||||
foreach ($result as $result) {
|
||||
print $result['id'];
|
||||
echo " - ";
|
||||
print $result['username'];
|
||||
echo "<br>";
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
<?php require "../bottom.inc.php"; ?>
|
||||
|
|
|
@ -1,91 +0,0 @@
|
|||
html {
|
||||
font-family: system-ui;
|
||||
margin-left: 35%;
|
||||
margin-right: 35%;
|
||||
font-size: 26px;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #00ffff;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
}
|
||||
input:hover {
|
||||
border-width: 3px;
|
||||
padding: 9px;
|
||||
}
|
||||
input:focus {
|
||||
border-width: 4px;
|
||||
padding: 8px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border-color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
}
|
|
@ -1,124 +0,0 @@
|
|||
.button {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
.htButton {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
border-color: red;
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input,
|
||||
select {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
}
|
||||
input:hover,
|
||||
select:hover {
|
||||
border-width: 3px;
|
||||
padding: 9px;
|
||||
}
|
||||
input:focus,
|
||||
select:focus {
|
||||
border-width: 4px;
|
||||
padding: 8px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after,
|
||||
select:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after,
|
||||
select:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input,
|
||||
select {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border-color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input,
|
||||
select {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
}
|
||||
html {
|
||||
font-family: system-ui;
|
||||
font-size: 26px;
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
footer {
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
footer {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #b300ff;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
|
@ -1,95 +0,0 @@
|
|||
html {
|
||||
font-family: system-ui;
|
||||
margin-left: 35%;
|
||||
margin-right: 35%;
|
||||
font-size: 26px;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #b300ff;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border: 2px solid #2a2a2a;
|
||||
}
|
||||
input:hover {
|
||||
box-shadow: 0px 0px 10px #2a2a2a;
|
||||
}
|
||||
input:focus {
|
||||
box-shadow: 0px 0px 15px #b300ff;
|
||||
border: 2px #b300ff solid;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border: 2px solid #ffffff;
|
||||
}
|
||||
input:hover {
|
||||
box-shadow: 0px 0px 10px #ffffff;
|
||||
}
|
||||
input:focus {
|
||||
box-shadow: 0px 0px 15px #b300ff;
|
||||
border: 2px #b300ff solid;
|
||||
}
|
||||
}
|
|
@ -1,105 +0,0 @@
|
|||
html {
|
||||
font-family: system-ui;
|
||||
margin-left: 35%;
|
||||
margin-right: 35%;
|
||||
font-size: 26px;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #00ffff;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
}
|
||||
input:hover {
|
||||
border-width: 3px;
|
||||
padding: 9px;
|
||||
}
|
||||
input:focus {
|
||||
border-width: 4px;
|
||||
padding: 8px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border-color: #2a2a2a;
|
||||
}
|
||||
input:hover {
|
||||
box-shadow: 0px 0px 10px #2a2a2a;
|
||||
}
|
||||
input:focus {
|
||||
box-shadow: 0px 0px 15px #00ffff;
|
||||
border: 2px #00ffff solid;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
input:hover {
|
||||
box-shadow: 0px 0px 10px #ffffff;
|
||||
}
|
||||
input:focus {
|
||||
box-shadow: 0px 0px 15px #00ffff;
|
||||
border: 2px #00ffff solid;
|
||||
}
|
||||
}
|
|
@ -1,125 +0,0 @@
|
|||
.button {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
.htButton {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
border-color: red;
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input,
|
||||
select {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
}
|
||||
input:hover,
|
||||
select:hover {
|
||||
border-width: 3px;
|
||||
padding: 9px;
|
||||
}
|
||||
input:focus,
|
||||
select:focus {
|
||||
border-width: 4px;
|
||||
padding: 8px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
label {
|
||||
padding-top: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input,
|
||||
select {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border-color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input,
|
||||
select {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
}
|
||||
html {
|
||||
font-family: system-ui;
|
||||
font-size: 26px;
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
footer {
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
footer {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #00ff00;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
|
@ -1,5 +0,0 @@
|
|||
/var/www/niver/capuche/less/buttons.less
|
||||
/var/www/niver/capuche/less/form.less
|
||||
/var/www/niver/capuche/less/main.less
|
||||
/var/www/niver/capuche/css/lessphpvars_4518379904492aafbbac69dac6c152b114936910.less
|
||||
lessphp_6a02db084350c205de74257876e1a661cdddb294.css
|
File diff suppressed because one or more lines are too long
|
@ -1,95 +0,0 @@
|
|||
html {
|
||||
font-family: system-ui;
|
||||
margin-left: 35%;
|
||||
margin-right: 35%;
|
||||
font-size: 26px;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #00ff00;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border: 2px solid #2a2a2a;
|
||||
}
|
||||
input:hover {
|
||||
box-shadow: 0px 0px 10px #2a2a2a;
|
||||
}
|
||||
input:focus {
|
||||
box-shadow: 0px 0px 15px #00ff00;
|
||||
border: 2px #00ff00 solid;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border: 2px solid #ffffff;
|
||||
}
|
||||
input:hover {
|
||||
box-shadow: 0px 0px 10px #ffffff;
|
||||
}
|
||||
input:focus {
|
||||
box-shadow: 0px 0px 15px #00ff00;
|
||||
border: 2px #00ff00 solid;
|
||||
}
|
||||
}
|
|
@ -1,5 +0,0 @@
|
|||
/var/www/niver/capuche/less/buttons.less
|
||||
/var/www/niver/capuche/less/form.less
|
||||
/var/www/niver/capuche/less/main.less
|
||||
/var/www/niver/capuche/css/lessphpvars_81cf9c18478094febee0a4aa4ca97d59e14197e1.less
|
||||
lessphp_1ae238e71f0612e69c5c144ee96af31c775e93a4.css
|
|
@ -1,123 +0,0 @@
|
|||
.button {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
.htButton {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
border-color: red;
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input,
|
||||
select {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
input:hover,
|
||||
select:hover {
|
||||
border-width: 3px;
|
||||
padding: 9px;
|
||||
}
|
||||
input:focus,
|
||||
select:focus {
|
||||
border-width: 4px;
|
||||
padding: 8px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input,
|
||||
select {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border-color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input,
|
||||
select {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
}
|
||||
html {
|
||||
font-family: system-ui;
|
||||
font-size: 26px;
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
footer {
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
footer {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #b300ff;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
|
@ -1,4 +0,0 @@
|
|||
/var/www/niver/capuche/less/main.less
|
||||
/var/www/niver/capuche/less/form.less
|
||||
/var/www/niver/capuche/css/lessphpvars_901435257987b1b012b94b8b610ca17e7e77e893.less
|
||||
lessphp_882f144119a06c2e571c323021ca003fd1b76e76.css
|
|
@ -1,117 +0,0 @@
|
|||
.button {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
.htButton {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
border-color: red;
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
}
|
||||
input:hover {
|
||||
border-width: 3px;
|
||||
padding: 9px;
|
||||
}
|
||||
input:focus {
|
||||
border-width: 4px;
|
||||
padding: 8px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border-color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
}
|
||||
html {
|
||||
font-family: system-ui;
|
||||
font-size: 26px;
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
footer {
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
footer {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #00ffff;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
|
@ -1,107 +0,0 @@
|
|||
.button {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
.htButton {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
border-color: red;
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
}
|
||||
input:hover {
|
||||
border-width: 3px;
|
||||
padding: 9px;
|
||||
}
|
||||
input:focus {
|
||||
border-width: 4px;
|
||||
padding: 8px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border-color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
}
|
||||
html {
|
||||
font-family: system-ui;
|
||||
margin-left: 35%;
|
||||
margin-right: 35%;
|
||||
font-size: 26px;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #00ff00;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
|||
<?php return Array(0 => new Less_Tree_Rule('@mainColor', new Less_Tree_Value( Array(0 => new Less_Tree_Expression( Array(0 => new Less_Tree_Color('00FFFF'),)),)),NULL,false,0, Array('entryPath' => '/var/www/niver/capuche/','entryUri' => '','rootpath' => '/var/www/niver/capuche/','currentDirectory' => '/var/www/niver/capuche/css/','currentUri' => '/lessphpvars_4518379904492aafbbac69dac6c152b114936910.less','filename' => '/var/www/niver/capuche/css/lessphpvars_4518379904492aafbbac69dac6c152b114936910.less','uri_root' => '/',)),1 => new Less_Tree_Rule('@color1', new Less_Tree_Value( Array(0 => new Less_Tree_Expression( Array(0 => new Less_Tree_Color('ffffff'),)),)),NULL,false,20, Array('entryPath' => '/var/www/niver/capuche/','entryUri' => '','rootpath' => '/var/www/niver/capuche/','currentDirectory' => '/var/www/niver/capuche/css/','currentUri' => '/lessphpvars_4518379904492aafbbac69dac6c152b114936910.less','filename' => '/var/www/niver/capuche/css/lessphpvars_4518379904492aafbbac69dac6c152b114936910.less','uri_root' => '/',)),2 => new Less_Tree_Rule('@color2', new Less_Tree_Value( Array(0 => new Less_Tree_Expression( Array(0 => new Less_Tree_Color('2a2a2a'),)),)),NULL,false,35, Array('entryPath' => '/var/www/niver/capuche/','entryUri' => '','rootpath' => '/var/www/niver/capuche/','currentDirectory' => '/var/www/niver/capuche/css/','currentUri' => '/lessphpvars_4518379904492aafbbac69dac6c152b114936910.less','filename' => '/var/www/niver/capuche/css/lessphpvars_4518379904492aafbbac69dac6c152b114936910.less','uri_root' => '/',)),); ?>
|
|
@ -1,122 +0,0 @@
|
|||
.button {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
.htButton {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
border-color: red;
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input,
|
||||
select {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
}
|
||||
input:hover,
|
||||
select:hover {
|
||||
border-width: 3px;
|
||||
padding: 9px;
|
||||
}
|
||||
input:focus,
|
||||
select:focus {
|
||||
border-width: 4px;
|
||||
padding: 8px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input,
|
||||
select {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border-color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input,
|
||||
select {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
}
|
||||
html {
|
||||
font-family: system-ui;
|
||||
font-size: 26px;
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
footer {
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
footer {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #b300ff;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
|
@ -1,117 +0,0 @@
|
|||
.button {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
.htButton {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
border-color: red;
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
}
|
||||
input:hover {
|
||||
border-width: 3px;
|
||||
padding: 9px;
|
||||
}
|
||||
input:focus {
|
||||
border-width: 4px;
|
||||
padding: 8px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border-color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
}
|
||||
html {
|
||||
font-family: system-ui;
|
||||
font-size: 26px;
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
footer {
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
footer {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #00ff00;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
|
@ -1,4 +0,0 @@
|
|||
/var/www/niver/capuche/less/main.less
|
||||
/var/www/niver/capuche/less/form.less
|
||||
/var/www/niver/capuche/css/lessphpvars_4518379904492aafbbac69dac6c152b114936910.less
|
||||
lessphp_068300d8c688462001aabb2b6c8a229b3b8525ab.css
|
|
@ -1,125 +0,0 @@
|
|||
.button {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
.htButton {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
border-color: red;
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input,
|
||||
select {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
}
|
||||
input:hover,
|
||||
select:hover {
|
||||
border-width: 3px;
|
||||
padding: 9px;
|
||||
}
|
||||
input:focus,
|
||||
select:focus {
|
||||
border-width: 4px;
|
||||
padding: 8px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
label {
|
||||
padding-top: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input,
|
||||
select {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border-color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input,
|
||||
select {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
}
|
||||
html {
|
||||
font-family: system-ui;
|
||||
font-size: 26px;
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
footer {
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
footer {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #00ffff;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
/var/www/niver/capuche/less
|
||||
/var/www/niver/capuche/css/lessphpvars_4518379904492aafbbac69dac6c152b114936910.less
|
||||
lessphp_d45cdcbd2e55510c0375d2131c0e1b4b96c0e88f.css
|
|
@ -1,103 +0,0 @@
|
|||
html {
|
||||
font-family: system-ui;
|
||||
margin-left: 35%;
|
||||
margin-right: 35%;
|
||||
font-size: 26px;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #00ffff;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
}
|
||||
input:hover {
|
||||
border-width: 3px;
|
||||
}
|
||||
input:focus {
|
||||
border-width: 4px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border-color: #2a2a2a;
|
||||
}
|
||||
input:hover {
|
||||
box-shadow: 0px 0px 10px #2a2a2a;
|
||||
}
|
||||
input:focus {
|
||||
box-shadow: 0px 0px 15px #00ffff;
|
||||
border: 2px #00ffff solid;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
input:hover {
|
||||
box-shadow: 0px 0px 10px #ffffff;
|
||||
}
|
||||
input:focus {
|
||||
box-shadow: 0px 0px 15px #00ffff;
|
||||
border: 2px #00ffff solid;
|
||||
}
|
||||
}
|
|
@ -1,122 +0,0 @@
|
|||
.button {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
.htButton {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
border-color: red;
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input,
|
||||
select {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
}
|
||||
input:hover,
|
||||
select:hover {
|
||||
border-width: 3px;
|
||||
padding: 9px;
|
||||
}
|
||||
input:focus,
|
||||
select:focus {
|
||||
border-width: 4px;
|
||||
padding: 8px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input,
|
||||
select {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border-color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input,
|
||||
select {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
}
|
||||
html {
|
||||
font-family: system-ui;
|
||||
font-size: 26px;
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
footer {
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
footer {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #b300ff;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
|
@ -1,111 +0,0 @@
|
|||
.button {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
.htButton {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
border-color: red;
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
}
|
||||
input:hover {
|
||||
border-width: 3px;
|
||||
padding: 9px;
|
||||
}
|
||||
input:focus {
|
||||
border-width: 4px;
|
||||
padding: 8px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border-color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
}
|
||||
html {
|
||||
font-family: system-ui;
|
||||
font-size: 26px;
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
footer {
|
||||
margin-left: 35%;
|
||||
margin-right: 35%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
footer {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #00ffff;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
|
@ -1,125 +0,0 @@
|
|||
.button {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
.htButton {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
border-color: red;
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input,
|
||||
select {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
}
|
||||
input:hover,
|
||||
select:hover {
|
||||
border-width: 3px;
|
||||
padding: 9px;
|
||||
}
|
||||
input:focus,
|
||||
select:focus {
|
||||
border-width: 4px;
|
||||
padding: 8px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
label {
|
||||
padding-top: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input,
|
||||
select {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border-color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input,
|
||||
select {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
}
|
||||
html {
|
||||
font-family: system-ui;
|
||||
font-size: 26px;
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
footer {
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
footer {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #b300ff;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
<?php return Array(0 => new Less_Tree_Rule('@mainColor', new Less_Tree_Value( Array(0 => new Less_Tree_Expression( Array(0 => new Less_Tree_Color('00FF00'),)),)),NULL,false,0, Array('entryPath' => '/var/www/niver/capuche/less/','entryUri' => '','rootpath' => '/var/www/niver/capuche/less/','currentDirectory' => '/var/www/niver/capuche/css/','currentUri' => '/lessphpvars_81cf9c18478094febee0a4aa4ca97d59e14197e1.less','filename' => '/var/www/niver/capuche/css/lessphpvars_81cf9c18478094febee0a4aa4ca97d59e14197e1.less','uri_root' => '/',)),1 => new Less_Tree_Rule('@color1', new Less_Tree_Value( Array(0 => new Less_Tree_Expression( Array(0 => new Less_Tree_Color('ffffff'),)),)),NULL,false,20, Array('entryPath' => '/var/www/niver/capuche/less/','entryUri' => '','rootpath' => '/var/www/niver/capuche/less/','currentDirectory' => '/var/www/niver/capuche/css/','currentUri' => '/lessphpvars_81cf9c18478094febee0a4aa4ca97d59e14197e1.less','filename' => '/var/www/niver/capuche/css/lessphpvars_81cf9c18478094febee0a4aa4ca97d59e14197e1.less','uri_root' => '/',)),2 => new Less_Tree_Rule('@color2', new Less_Tree_Value( Array(0 => new Less_Tree_Expression( Array(0 => new Less_Tree_Color('2a2a2a'),)),)),NULL,false,35, Array('entryPath' => '/var/www/niver/capuche/less/','entryUri' => '','rootpath' => '/var/www/niver/capuche/less/','currentDirectory' => '/var/www/niver/capuche/css/','currentUri' => '/lessphpvars_81cf9c18478094febee0a4aa4ca97d59e14197e1.less','filename' => '/var/www/niver/capuche/css/lessphpvars_81cf9c18478094febee0a4aa4ca97d59e14197e1.less','uri_root' => '/',)),); ?>
|
|
@ -1,91 +0,0 @@
|
|||
html {
|
||||
font-family: system-ui;
|
||||
margin-left: 35%;
|
||||
margin-right: 35%;
|
||||
font-size: 26px;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #b300ff;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
}
|
||||
input:hover {
|
||||
border-width: 3px;
|
||||
padding: 9px;
|
||||
}
|
||||
input:focus {
|
||||
border-width: 4px;
|
||||
padding: 8px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border-color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
}
|
|
@ -1,91 +0,0 @@
|
|||
html {
|
||||
font-family: system-ui;
|
||||
margin-left: 35%;
|
||||
margin-right: 35%;
|
||||
font-size: 26px;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #00ff00;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
}
|
||||
input:hover {
|
||||
border-width: 3px;
|
||||
padding: 9px;
|
||||
}
|
||||
input:focus {
|
||||
border-width: 4px;
|
||||
padding: 8px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border-color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
}
|
|
@ -1,125 +0,0 @@
|
|||
.button {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
.htButton {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
border-color: red;
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input,
|
||||
select {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
}
|
||||
input:hover,
|
||||
select:hover {
|
||||
border-width: 3px;
|
||||
padding: 9px;
|
||||
}
|
||||
input:focus,
|
||||
select:focus {
|
||||
border-width: 4px;
|
||||
padding: 8px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
label {
|
||||
margin-top: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input,
|
||||
select {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border-color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input,
|
||||
select {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
}
|
||||
html {
|
||||
font-family: system-ui;
|
||||
font-size: 26px;
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
footer {
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
footer {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #b300ff;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
|
@ -1,107 +0,0 @@
|
|||
.button {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
.htButton {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
border-color: red;
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
}
|
||||
input:hover {
|
||||
border-width: 3px;
|
||||
padding: 9px;
|
||||
}
|
||||
input:focus {
|
||||
border-width: 4px;
|
||||
padding: 8px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border-color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
}
|
||||
html {
|
||||
font-family: system-ui;
|
||||
margin-left: 35%;
|
||||
margin-right: 35%;
|
||||
font-size: 26px;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #b300ff;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
|
@ -1,87 +0,0 @@
|
|||
html {
|
||||
font-family: system-ui;
|
||||
margin-left: 35%;
|
||||
margin-right: 35%;
|
||||
font-size: 26px;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #00ff00;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border: 2px solid #2a2a2a;
|
||||
}
|
||||
input:hover {
|
||||
box-shadow: 0px 0px 10px #2a2a2a;
|
||||
}
|
||||
input:focus {
|
||||
box-shadow: 0px 0px 15px #00ff00;
|
||||
border: 2px #00ff00 solid;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border: 2px solid #ffffff;
|
||||
}
|
||||
input:hover {
|
||||
box-shadow: 0px 0px 10px #ffffff;
|
||||
}
|
||||
input:focus {
|
||||
box-shadow: 0px 0px 15px #00ff00;
|
||||
border: 2px #00ff00 solid;
|
||||
}
|
||||
}
|
|
@ -1,125 +0,0 @@
|
|||
.button {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
.htButton {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
border-color: red;
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input,
|
||||
select {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
}
|
||||
input:hover,
|
||||
select:hover {
|
||||
border-width: 3px;
|
||||
padding: 9px;
|
||||
}
|
||||
input:focus,
|
||||
select:focus {
|
||||
border-width: 4px;
|
||||
padding: 8px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
label {
|
||||
padding-top: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input,
|
||||
select {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border-color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input,
|
||||
select {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
}
|
||||
html {
|
||||
font-family: system-ui;
|
||||
font-size: 26px;
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
footer {
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
footer {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #b300ff;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
|
@ -1,117 +0,0 @@
|
|||
.button {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
.htButton {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
border-color: red;
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
}
|
||||
input:hover {
|
||||
border-width: 3px;
|
||||
padding: 9px;
|
||||
}
|
||||
input:focus {
|
||||
border-width: 4px;
|
||||
padding: 8px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border-color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
}
|
||||
html {
|
||||
font-family: system-ui;
|
||||
font-size: 26px;
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
footer {
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
footer {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #b300ff;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
|
@ -1,5 +0,0 @@
|
|||
/var/www/niver/capuche/less/buttons.less
|
||||
/var/www/niver/capuche/less/form.less
|
||||
/var/www/niver/capuche/less/main.less
|
||||
/var/www/niver/capuche/css/lessphpvars_901435257987b1b012b94b8b610ca17e7e77e893.less
|
||||
lessphp_b8964a376740a0fa0dcf882826a582c6da94d186.css
|
|
@ -1 +0,0 @@
|
|||
<?php return Array(0 => new Less_Tree_Rule('@mainColor', new Less_Tree_Value( Array(0 => new Less_Tree_Expression( Array(0 => new Less_Tree_Color('00FFFF'),)),)),NULL,false,0, Array('entryPath' => '/var/www/niver/capuche/less/','entryUri' => '','rootpath' => '/var/www/niver/capuche/less/','currentDirectory' => '/var/www/niver/capuche/css/','currentUri' => '/lessphpvars_4518379904492aafbbac69dac6c152b114936910.less','filename' => '/var/www/niver/capuche/css/lessphpvars_4518379904492aafbbac69dac6c152b114936910.less','uri_root' => '/',)),1 => new Less_Tree_Rule('@color1', new Less_Tree_Value( Array(0 => new Less_Tree_Expression( Array(0 => new Less_Tree_Color('ffffff'),)),)),NULL,false,20, Array('entryPath' => '/var/www/niver/capuche/less/','entryUri' => '','rootpath' => '/var/www/niver/capuche/less/','currentDirectory' => '/var/www/niver/capuche/css/','currentUri' => '/lessphpvars_4518379904492aafbbac69dac6c152b114936910.less','filename' => '/var/www/niver/capuche/css/lessphpvars_4518379904492aafbbac69dac6c152b114936910.less','uri_root' => '/',)),2 => new Less_Tree_Rule('@color2', new Less_Tree_Value( Array(0 => new Less_Tree_Expression( Array(0 => new Less_Tree_Color('2a2a2a'),)),)),NULL,false,35, Array('entryPath' => '/var/www/niver/capuche/less/','entryUri' => '','rootpath' => '/var/www/niver/capuche/less/','currentDirectory' => '/var/www/niver/capuche/css/','currentUri' => '/lessphpvars_4518379904492aafbbac69dac6c152b114936910.less','filename' => '/var/www/niver/capuche/css/lessphpvars_4518379904492aafbbac69dac6c152b114936910.less','uri_root' => '/',)),); ?>
|
|
@ -1,117 +0,0 @@
|
|||
.button {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
.htButton {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
border-color: red;
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
}
|
||||
input:hover {
|
||||
border-width: 3px;
|
||||
padding: 9px;
|
||||
}
|
||||
input:focus {
|
||||
border-width: 4px;
|
||||
padding: 8px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border-color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
}
|
||||
html {
|
||||
font-family: system-ui;
|
||||
font-size: 26px;
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
footer {
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
footer {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #00ff00;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
|
@ -1,117 +0,0 @@
|
|||
.button {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
.htButton {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
border-color: red;
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
}
|
||||
input:hover {
|
||||
border-width: 3px;
|
||||
padding: 9px;
|
||||
}
|
||||
input:focus {
|
||||
border-width: 4px;
|
||||
padding: 8px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border-color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
}
|
||||
html {
|
||||
font-family: system-ui;
|
||||
font-size: 26px;
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
footer {
|
||||
margin-left: 20%;
|
||||
margin-right: 20%;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
footer {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #ff0000;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
|
|
@ -1,4 +0,0 @@
|
|||
/var/www/niver/capuche/less/main.less
|
||||
/var/www/niver/capuche/less/form.less
|
||||
/var/www/niver/capuche/css/lessphpvars_81cf9c18478094febee0a4aa4ca97d59e14197e1.less
|
||||
lessphp_890e4bb56f100c60e6c4111c417e3e34cdc3540f.css
|
|
@ -1,95 +0,0 @@
|
|||
html {
|
||||
font-family: system-ui;
|
||||
margin-left: 35%;
|
||||
margin-right: 35%;
|
||||
font-size: 26px;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #00ffff;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border: 2px solid #2a2a2a;
|
||||
}
|
||||
input:hover {
|
||||
box-shadow: 0px 0px 10px #2a2a2a;
|
||||
}
|
||||
input:focus {
|
||||
box-shadow: 0px 0px 15px #00ffff;
|
||||
border: 2px #00ffff solid;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border: 2px solid #ffffff;
|
||||
}
|
||||
input:hover {
|
||||
box-shadow: 0px 0px 10px #ffffff;
|
||||
}
|
||||
input:focus {
|
||||
box-shadow: 0px 0px 15px #00ffff;
|
||||
border: 2px #00ffff solid;
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
|
@ -1,103 +0,0 @@
|
|||
html {
|
||||
font-family: system-ui;
|
||||
margin-left: 35%;
|
||||
margin-right: 35%;
|
||||
font-size: 26px;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #00ff00;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
}
|
||||
input:hover {
|
||||
border-width: 3px;
|
||||
}
|
||||
input:focus {
|
||||
border-width: 4px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border-color: #2a2a2a;
|
||||
}
|
||||
input:hover {
|
||||
box-shadow: 0px 0px 10px #2a2a2a;
|
||||
}
|
||||
input:focus {
|
||||
box-shadow: 0px 0px 15px #00ff00;
|
||||
border: 2px #00ff00 solid;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
input:hover {
|
||||
box-shadow: 0px 0px 10px #ffffff;
|
||||
}
|
||||
input:focus {
|
||||
box-shadow: 0px 0px 15px #00ff00;
|
||||
border: 2px #00ff00 solid;
|
||||
}
|
||||
}
|
|
@ -1,5 +0,0 @@
|
|||
/var/www/niver/capuche/less/buttons.less
|
||||
/var/www/niver/capuche/less/form.less
|
||||
/var/www/niver/capuche/less/main.less
|
||||
/var/www/niver/capuche/css/lessphpvars_15a96660fcfd9e558873ee34a537b93fbae966af.less
|
||||
lessphp_cf26d2fbc776be8def067d23551299c41f038f00.css
|
|
@ -1 +0,0 @@
|
|||
<?php return Array(0 => new Less_Tree_Rule('@mainColor', new Less_Tree_Value( Array(0 => new Less_Tree_Expression( Array(0 => new Less_Tree_Color('FF0000'),)),)),NULL,false,0, Array('entryPath' => '/var/www/niver/capuche/less/','entryUri' => '','rootpath' => '/var/www/niver/capuche/less/','currentDirectory' => '/var/www/niver/capuche/css/','currentUri' => '/lessphpvars_15a96660fcfd9e558873ee34a537b93fbae966af.less','filename' => '/var/www/niver/capuche/css/lessphpvars_15a96660fcfd9e558873ee34a537b93fbae966af.less','uri_root' => '/',)),1 => new Less_Tree_Rule('@color1', new Less_Tree_Value( Array(0 => new Less_Tree_Expression( Array(0 => new Less_Tree_Color('ffffff'),)),)),NULL,false,20, Array('entryPath' => '/var/www/niver/capuche/less/','entryUri' => '','rootpath' => '/var/www/niver/capuche/less/','currentDirectory' => '/var/www/niver/capuche/css/','currentUri' => '/lessphpvars_15a96660fcfd9e558873ee34a537b93fbae966af.less','filename' => '/var/www/niver/capuche/css/lessphpvars_15a96660fcfd9e558873ee34a537b93fbae966af.less','uri_root' => '/',)),2 => new Less_Tree_Rule('@color2', new Less_Tree_Value( Array(0 => new Less_Tree_Expression( Array(0 => new Less_Tree_Color('2a2a2a'),)),)),NULL,false,35, Array('entryPath' => '/var/www/niver/capuche/less/','entryUri' => '','rootpath' => '/var/www/niver/capuche/less/','currentDirectory' => '/var/www/niver/capuche/css/','currentUri' => '/lessphpvars_15a96660fcfd9e558873ee34a537b93fbae966af.less','filename' => '/var/www/niver/capuche/css/lessphpvars_15a96660fcfd9e558873ee34a537b93fbae966af.less','uri_root' => '/',)),); ?>
|
|
@ -1,107 +0,0 @@
|
|||
.button {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
.htButton {
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
border-color: red;
|
||||
}
|
||||
form {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
form {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
input {
|
||||
border-radius: 12px;
|
||||
height: 30px;
|
||||
font-size: 26px;
|
||||
font-family: monospace;
|
||||
margin: 5px;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
}
|
||||
input:hover {
|
||||
border-width: 3px;
|
||||
padding: 9px;
|
||||
}
|
||||
input:focus {
|
||||
border-width: 4px;
|
||||
padding: 8px;
|
||||
}
|
||||
input[type=submit] {
|
||||
margin: 22px;
|
||||
}
|
||||
input:invalid + span:after {
|
||||
content: '✖';
|
||||
padding-left: 10px;
|
||||
}
|
||||
input:valid + span:after {
|
||||
content: '✓';
|
||||
padding-left: 10px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
input {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
border-color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
input {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
}
|
||||
html {
|
||||
font-family: system-ui;
|
||||
margin-left: 35%;
|
||||
margin-right: 35%;
|
||||
font-size: 26px;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
html {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: #00ffff;
|
||||
}
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #2a2a2a;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
<?php return Array(0 => new Less_Tree_Ruleset( Array(0 => new Less_Tree_Selector( Array(0 => new Less_Tree_Element(' ','.button',1, Array('entryPath' => '/var/www/niver/capuche/less/','entryUri' => '','rootpath' => '/var/www/niver/capuche/less/','currentDirectory' => '/var/www/niver/capuche/less/','currentUri' => 'buttons.less','filename' => '/var/www/niver/capuche/less/buttons.less','uri_root' => '',)),), Array(),NULL,1, Array('entryPath' => '/var/www/niver/capuche/less/','entryUri' => '','rootpath' => '/var/www/niver/capuche/less/','currentDirectory' => '/var/www/niver/capuche/less/','currentUri' => 'buttons.less','filename' => '/var/www/niver/capuche/less/buttons.less','uri_root' => '',)),), Array(0 => new Less_Tree_NameValue('border-width','2px',13, Array('entryPath' => '/var/www/niver/capuche/less/','entryUri' => '','rootpath' => '/var/www/niver/capuche/less/','currentDirectory' => '/var/www/niver/capuche/less/','currentUri' => 'buttons.less','filename' => '/var/www/niver/capuche/less/buttons.less','uri_root' => '',)),1 => new Less_Tree_NameValue('border-style','solid',34, Array('entryPath' => '/var/www/niver/capuche/less/','entryUri' => '','rootpath' => '/var/www/niver/capuche/less/','currentDirectory' => '/var/www/niver/capuche/less/','currentUri' => 'buttons.less','filename' => '/var/www/niver/capuche/less/buttons.less','uri_root' => '',)),2 => new Less_Tree_NameValue('text-decoration','none',57, Array('entryPath' => '/var/www/niver/capuche/less/','entryUri' => '','rootpath' => '/var/www/niver/capuche/less/','currentDirectory' => '/var/www/niver/capuche/less/','currentUri' => 'buttons.less','filename' => '/var/www/niver/capuche/less/buttons.less','uri_root' => '',)),3 => new Less_Tree_NameValue('border-radius','10px',82, Array('entryPath' => '/var/www/niver/capuche/less/','entryUri' => '','rootpath' => '/var/www/niver/capuche/less/','currentDirectory' => '/var/www/niver/capuche/less/','currentUri' => 'buttons.less','filename' => '/var/www/niver/capuche/less/buttons.less','uri_root' => '',)),4 => new Less_Tree_NameValue('padding','8px',105, Array('entryPath' => '/var/www/niver/capuche/less/','entryUri' => '','rootpath' => '/var/www/niver/capuche/less/','currentDirectory' => '/var/www/niver/capuche/less/','currentUri' => 'buttons.less','filename' => '/var/www/niver/capuche/less/buttons.less','uri_root' => '',)),)),1 => new Less_Tree_Ruleset( Array(0 => new Less_Tree_Selector( Array(0 => new Less_Tree_Element(' ','.htButton',122, Array('entryPath' => '/var/www/niver/capuche/less/','entryUri' => '','rootpath' => '/var/www/niver/capuche/less/','currentDirectory' => '/var/www/niver/capuche/less/','currentUri' => 'buttons.less','filename' => '/var/www/niver/capuche/less/buttons.less','uri_root' => '',)),), Array(),NULL,122, Array('entryPath' => '/var/www/niver/capuche/less/','entryUri' => '','rootpath' => '/var/www/niver/capuche/less/','currentDirectory' => '/var/www/niver/capuche/less/','currentUri' => 'buttons.less','filename' => '/var/www/niver/capuche/less/buttons.less','uri_root' => '',)),), Array(0 => new Less_Tree_Mixin_Call( Array(0 => new Less_Tree_Element(NULL,'.button',136, Array('entryPath' => '/var/www/niver/capuche/less/','entryUri' => '','rootpath' => '/var/www/niver/capuche/less/','currentDirectory' => '/var/www/niver/capuche/less/','currentUri' => 'buttons.less','filename' => '/var/www/niver/capuche/less/buttons.less','uri_root' => '',)),), Array(),136, Array('entryPath' => '/var/www/niver/capuche/less/','entryUri' => '','rootpath' => '/var/www/niver/capuche/less/','currentDirectory' => '/var/www/niver/capuche/less/','currentUri' => 'buttons.less','filename' => '/var/www/niver/capuche/less/buttons.less','uri_root' => '',),NULL),1 => new Less_Tree_NameValue('border-color','red',149, Array('entryPath' => '/var/www/niver/capuche/less/','entryUri' => '','rootpath' => '/var/www/niver/capuche/less/','currentDirectory' => '/var/www/niver/capuche/less/','currentUri' => 'buttons.less','filename' => '/var/www/niver/capuche/less/buttons.less','uri_root' => '',)),)),); ?>
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
|||
<?php return Array(); ?>
|
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
|||
<?php return Array(0 => new Less_Tree_Rule('@mainColor', new Less_Tree_Value( Array(0 => new Less_Tree_Expression( Array(0 => new Less_Tree_Color('B300FF'),)),)),NULL,false,0, Array('entryPath' => '/var/www/niver/capuche/less/','entryUri' => '','rootpath' => '/var/www/niver/capuche/less/','currentDirectory' => '/var/www/niver/capuche/css/','currentUri' => '/lessphpvars_901435257987b1b012b94b8b610ca17e7e77e893.less','filename' => '/var/www/niver/capuche/css/lessphpvars_901435257987b1b012b94b8b610ca17e7e77e893.less','uri_root' => '/',)),1 => new Less_Tree_Rule('@color1', new Less_Tree_Value( Array(0 => new Less_Tree_Expression( Array(0 => new Less_Tree_Color('ffffff'),)),)),NULL,false,20, Array('entryPath' => '/var/www/niver/capuche/less/','entryUri' => '','rootpath' => '/var/www/niver/capuche/less/','currentDirectory' => '/var/www/niver/capuche/css/','currentUri' => '/lessphpvars_901435257987b1b012b94b8b610ca17e7e77e893.less','filename' => '/var/www/niver/capuche/css/lessphpvars_901435257987b1b012b94b8b610ca17e7e77e893.less','uri_root' => '/',)),2 => new Less_Tree_Rule('@color2', new Less_Tree_Value( Array(0 => new Less_Tree_Expression( Array(0 => new Less_Tree_Color('2a2a2a'),)),)),NULL,false,35, Array('entryPath' => '/var/www/niver/capuche/less/','entryUri' => '','rootpath' => '/var/www/niver/capuche/less/','currentDirectory' => '/var/www/niver/capuche/css/','currentUri' => '/lessphpvars_901435257987b1b012b94b8b610ca17e7e77e893.less','filename' => '/var/www/niver/capuche/css/lessphpvars_901435257987b1b012b94b8b610ca17e7e77e893.less','uri_root' => '/',)),); ?>
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
|||
@mainColor: #FF0000;@color1: white;@color2: #2a2a2a;
|
|
@ -1 +0,0 @@
|
|||
@mainColor: #00FFFF;@color1: white;@color2: #2a2a2a;
|
|
@ -1 +0,0 @@
|
|||
@mainColor: #00FF00;@color1: white;@color2: #2a2a2a;
|
|
@ -1 +0,0 @@
|
|||
@mainColor: #B300FF;@color1: white;@color2: #2a2a2a;
|
10
index.php
10
index.php
|
@ -1,20 +1,20 @@
|
|||
<?php require "top.inc.php"; ?>
|
||||
|
||||
<h2><a style="color: <?= $purple ?>" href="nic">Registre atope.art</a></h2>
|
||||
<h2><a class="nicButton" href="nic">Registre atope.art</a></h2>
|
||||
|
||||
Demander l'attribution d'un sous-domaine d'atope.art
|
||||
<br>
|
||||
<a style="color: <?= $purple ?>" class="button" href="nic">> Enregistrer un domaine</a>
|
||||
<a class="nicButton" href="nic">> Enregistrer un domaine</a>
|
||||
|
||||
<h2><a style="color: <?= $cyan ?>" href="ns">Serveurs de noms</a></h2>
|
||||
<h2><a class="nsButton" href="ns">Serveurs de noms</a></h2>
|
||||
|
||||
Utiliser les serveurs ns*.atope.art pour héberger ses zones de domaines
|
||||
|
||||
<h2><a style="color: <?= $red ?>" href="ht">Hypertexte</a></h2>
|
||||
<h2><a class="htButton" href="ht">Hypertexte</a></h2>
|
||||
|
||||
Mettre en ligne son site statique sur un espace SFTP, et le faire répondre sur des domaines ou par Tor
|
||||
|
||||
<h2><a style="color: <?= $green ?>" href="auth">Authentification</a></h2>
|
||||
<h2><a class="authButton" href="auth">Authentification</a></h2>
|
||||
|
||||
Gérer son compte Niver
|
||||
|
||||
|
|
|
@ -1,13 +1,68 @@
|
|||
|
||||
.button {
|
||||
border-width: 2px;
|
||||
border-width: 4px;
|
||||
border-style: solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
border-radius: 20px;
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
.htButton {
|
||||
.button();
|
||||
border-color: red;
|
||||
border-color: @htColor;
|
||||
color: @htColor;
|
||||
&:hover {
|
||||
background-color: @htColor;
|
||||
}
|
||||
&::selection {
|
||||
background-color: @htColor;
|
||||
}
|
||||
}
|
||||
|
||||
.nicButton {
|
||||
.button();
|
||||
border-color: @nicColor;
|
||||
color: @nicColor;
|
||||
&:hover {
|
||||
background-color: @nicColor;
|
||||
}
|
||||
&::selection {
|
||||
background-color: @nicColor;
|
||||
}
|
||||
}
|
||||
|
||||
.nsButton {
|
||||
.button();
|
||||
border-color: @nsColor;
|
||||
color: @nsColor;
|
||||
&:hover {
|
||||
background-color: @nsColor;
|
||||
}
|
||||
&::selection {
|
||||
background-color: @nsColor;
|
||||
}
|
||||
}
|
||||
|
||||
.authButton {
|
||||
.button();
|
||||
border-color: @authColor;
|
||||
color: @authColor;
|
||||
&:hover {
|
||||
background-color: @authColor;
|
||||
}
|
||||
&::selection {
|
||||
background-color: @authColor;
|
||||
}
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: light) {
|
||||
.htButton:hover, .nicButton:hover, .nsButton:hover, .authButton:hover {
|
||||
color: @color1;
|
||||
}
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
.htButton:hover, .nicButton:hover, .nsButton:hover, .authButton:hover {
|
||||
color: @color2;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -21,7 +21,6 @@ footer {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
|
@ -30,18 +29,16 @@ a {
|
|||
color: @mainColor;
|
||||
}
|
||||
|
||||
.button {
|
||||
border: 2px red solid;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: light) {
|
||||
html {
|
||||
background-color: @color1;
|
||||
color: @color2;
|
||||
}
|
||||
|
||||
::selection {
|
||||
background-color: @color2;
|
||||
color: @color1;
|
||||
}
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
|
@ -49,4 +46,9 @@ a {
|
|||
background-color: @color2;
|
||||
color: @color1;
|
||||
}
|
||||
|
||||
::selection {
|
||||
background-color: @color1;
|
||||
color: @color2;
|
||||
}
|
||||
}
|
||||
|
|
39
nic/ds.php
39
nic/ds.php
|
@ -77,8 +77,37 @@
|
|||
OR $_POST['algo'] == "16"
|
||||
) {
|
||||
|
||||
if (is_int($_POST['keytag']) AND $_POST['keytag'] >= 1 AND $_POST['key'] <= 65535) {
|
||||
if (filter_var($_POST['keytag'], FILTER_VALIDATE_INT) AND $_POST['keytag'] >= 1 AND $_POST['keytag'] <= 65535) {
|
||||
if ($_POST['dt'] == "2" OR $_POST['dt'] == "4") {
|
||||
if (filter_var($_POST['zone'], FILTER_VALIDATE_DOMAIN)) {
|
||||
$db = new PDO('sqlite:' . $dbPath);
|
||||
$username[0] = $_SESSION['username'];
|
||||
|
||||
var_dump($username);
|
||||
|
||||
$req = $db->prepare('SELECT zone FROM zones WHERE username = ?');
|
||||
$req->execute($username);
|
||||
|
||||
$domain = $req->fetch()['zone'];
|
||||
|
||||
while ($domain != NULL) {
|
||||
if ($domain == $_POST['zone']) {
|
||||
$owned = true;
|
||||
break;
|
||||
}
|
||||
$domain = $req->fetch()['zone'];
|
||||
}
|
||||
|
||||
if (isset($owned) AND $owned) {
|
||||
echo "Cette zone vous appartient.";
|
||||
} else {
|
||||
exit("You don't own this zone");
|
||||
}
|
||||
} else {
|
||||
exit("This zone is not a domain");
|
||||
}
|
||||
|
||||
|
||||
|
||||
} else {
|
||||
exit("Incorrect value for dt");
|
||||
|
@ -99,10 +128,10 @@
|
|||
from rfc : secure.example. DS tag=12345 alg=3 digest_type=1 <foofoo>
|
||||
*/
|
||||
|
||||
exec("knotc zone-begin atope.art");
|
||||
exec("knotc zone-set atope.art " . $_POST['subdomain'] . ".atope.art. DS " . $_POST['ns'] . ".");
|
||||
exec("knotc zone-commit atope.art");
|
||||
echo "Modifications appliquées";
|
||||
//exec("knotc zone-begin atope.art");
|
||||
//exec("knotc zone-set atope.art " . $_POST['subdomain'] . ".atope.art. DS " . $_POST['ns'] . ".");
|
||||
//exec("knotc zone-commit atope.art");
|
||||
//echo "Modifications appliquées";
|
||||
} else {
|
||||
echo "Rien n'a été appliqué lors du dernier chargement.";
|
||||
}
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
<p>
|
||||
Ce site a pour but de permettre la création de sous-domaines d'atope.art par n'importe qui.
|
||||
<br>
|
||||
<a href="register.php">Enregitrer un nouveau nom de domaine</a>
|
||||
<br>
|
||||
<a href="ns.php">NS (Name Server)</a>
|
||||
<br>
|
||||
<a href="glue.php">Glue Record</a>
|
||||
|
|
120
nic/register.php
120
nic/register.php
|
@ -5,7 +5,123 @@
|
|||
<form method="post">
|
||||
<label for="subdomain">Domaine</label>
|
||||
<br>
|
||||
<input id="subdomain" required="" placeholder="nic" name="subdomain" type="text">.atope.art
|
||||
<input id="subdomain" required="" placeholder="nic" name="subdomain" type="text">
|
||||
<select required="" name="suffix">
|
||||
<option selected="" value=".niv.re">.niv.re</option>
|
||||
|
||||
<optgroup label="Organisations">
|
||||
<option value=".asso.niv.re">.asso.niv.re</option>
|
||||
<option value=".org.niv.re">.org.niv.re</option>
|
||||
</optgroup>
|
||||
<optgroup label="Personnels">
|
||||
<option value=".perso.niv.re">.perso.niv.re</option>
|
||||
<option value=".blog.niv.re">.blog.niv.re</option>
|
||||
<option value=".me.niv.re">.me.niv.re</option>
|
||||
</optgroup>
|
||||
<optgroup label="Connaissance">
|
||||
<option value=".edu.niv.re">.edu.niv.re</option>
|
||||
<option value=".info.niv.re">.info.niv.re</option>
|
||||
<option value=".wiki.niv.re">.wiki.niv.re</option>
|
||||
</optgroup>
|
||||
<optgroup label="Politique">
|
||||
<option value=".pol.niv.re">.pol.niv.re</option>
|
||||
<option value=".libre.niv.re">.libre.niv.re</option>
|
||||
<option value=".fem.niv.re">.fem.niv.re</option>
|
||||
<option value=".eco.niv.re">.eco.niv.re</option>
|
||||
<option value=".veg.niv.re">.veg.niv.re</option>
|
||||
<option value=".anar.niv.re">.anar.niv.re</option>
|
||||
<option value=".ancom.niv.re">.ancom.niv.re</option>
|
||||
<option value=".acab.niv.re">.acab.niv.re</option>
|
||||
<option value=".handi.niv.re">.handi.niv.re</option>
|
||||
</optgroup>
|
||||
<optgroup label="LGBT+">
|
||||
<option value=".queer.niv.re">.queer.niv.re</option>
|
||||
<option value=".gay.niv.re">.gay.niv.re</option>
|
||||
<option value=".enby.niv.re">.enby.niv.re</option>
|
||||
<option value=".trans.niv.re">.trans.niv.re</option>
|
||||
</optgroup>
|
||||
<optgroup label="Technologie">
|
||||
<option value=".net.niv.re">.net.niv.re</option>
|
||||
<option value=".tech.niv.re">.tech.niv.re</option>
|
||||
<option value=".io.niv.re">.io.niv.re</option>
|
||||
<option value=".sec.niv.re">.sec.niv.re</option>
|
||||
<option value=".cyber.niv.re">.cyber.niv.re</option>
|
||||
<option value=".dev.niv.re">.dev.niv.re</option>
|
||||
<option value=".geek.niv.re">.geek.niv.re</option>
|
||||
<option value=".fs.niv.re">.fs.niv.re</option>
|
||||
<option value=".ht.niv.re">.ht.niv.re</option>
|
||||
<option value=".hyper.niv.re">.hyper.niv.re</option>
|
||||
<option value=".git.niv.re">.git.niv.re</option>
|
||||
<option value=".forge.niv.re">.forge.niv.re</option>
|
||||
<option value=".code.niv.re">.code.niv.re</option>
|
||||
<option value=".lab.niv.re">.lab.niv.re</option>
|
||||
<option value=".labs.niv.re">.labs.niv.re</option>
|
||||
<option value=".gemini.niv.re">.gemini.niv.re</option>
|
||||
<option value=".gmi.niv.re">.gmi.niv.re</option>
|
||||
<option value=".mail.niv.re">.mail.niv.re</option>
|
||||
<option value=".ynh.niv.re">.ynh.niv.re</option>
|
||||
<option value=".yuno.niv.re">.yuno.niv.re</option>
|
||||
</optgroup>
|
||||
<optgroup label="Fédiverse">
|
||||
<option value=".fed.niv.re">.fed.niv.re</option>
|
||||
<option value=".fedi.niv.re">.fedi.niv.re</option>
|
||||
<option value=".soc.niv.re">.soc.niv.re</option>
|
||||
<option value=".masto.niv.re">.masto.niv.re</option>
|
||||
<option value=".plero.niv.re">.plero.niv.re</option>
|
||||
<option value=".pix.niv.re">.pix.niv.re</option>
|
||||
<option value=".mobi.niv.re">.mobi.niv.re</option>
|
||||
</optgroup>
|
||||
<optgroup label="Sciences">
|
||||
<option value=".sci.niv.re">.sci.niv.re</option>
|
||||
<option value=".bio.niv.re">.bio.niv.re</option>
|
||||
<option value=".draw.niv.re">.draw.niv.re</option>
|
||||
<option value=".ink.niv.re">.ink.niv.re</option>
|
||||
<option value=".audio.niv.re">.audio.niv.re</option>
|
||||
</optgroup>
|
||||
<optgroup label="Arts">
|
||||
<option value=".art.niv.re">.art.niv.re</option>
|
||||
<option value=".music.niv.re">.music.niv.re</option>
|
||||
<option value=".video.niv.re">.video.niv.re</option>
|
||||
<option value=".draw.niv.re">.draw.niv.re</option>
|
||||
<option value=".audio.niv.re">.audio.niv.re</option>
|
||||
</optgroup>
|
||||
<optgroup label="Neurodiversité">
|
||||
<option value=".na.niv.re">.na.niv.re</option>
|
||||
<option value=".psy.niv.re">.psy.niv.re</option>
|
||||
<option value=".neuro.niv.re">.neuro.niv.re</option>
|
||||
<option value=".autism.niv.re">.autism.niv.re</option>
|
||||
<option value=".plural.niv.re">.plural.niv.re</option>
|
||||
</optgroup>
|
||||
<optgroup label="Couleurs">
|
||||
<option value=".blue.niv.re">.blue.niv.re</option>
|
||||
<option value=".red.niv.re">.red.niv.re</option>
|
||||
<option value=".pink.niv.re">.pink.niv.re</option>
|
||||
<option value=".green.niv.re">.green.niv.re</option>
|
||||
<option value=".black.niv.re">.black.niv.re</option>
|
||||
</optgroup>
|
||||
<optgroup label="Communauté">
|
||||
<option value=".city.niv.re">.city.niv.re</option>
|
||||
<option value=".town.niv.re">.town.niv.re</option>
|
||||
<option value=".cafe.niv.re">.cafe.niv.re</option>
|
||||
<option value=".home.niv.re">.home.niv.re</option>
|
||||
<option value=".forum.niv.re">.forum.niv.re</option>
|
||||
</optgroup>
|
||||
<optgroup label="Divers">
|
||||
<option value=".dream.niv.re">.dream.niv.re</option>
|
||||
<option value=".space.niv.re">.space.niv.re</option>
|
||||
<option value=".forest.niv.re">.forest.niv.re</option>
|
||||
<option value=".rain.niv.re">.rain.niv.re</option>
|
||||
<option value=".snow.niv.re">.snow.niv.re</option>
|
||||
<option value=".sun.niv.re">.sun.niv.re</option>
|
||||
<option value=".earth.niv.re">.earth.niv.re</option>
|
||||
<option value=".world.niv.re">.world.niv.re</option>
|
||||
<option value=".soft.niv.re">.soft.niv.re</option>
|
||||
<option value=".cute.niv.re">.cute.niv.re</option>
|
||||
</optgroup>
|
||||
|
||||
|
||||
|
||||
</select>
|
||||
|
||||
<input type="submit">
|
||||
</form>
|
||||
|
@ -13,7 +129,7 @@
|
|||
<?php
|
||||
|
||||
if (isset($_POST['subdomain']) AND isset($_SESSION['username'])) {
|
||||
$domain = $_POST['subdomain'] . ".atope.art.";
|
||||
$domain = $_POST['subdomain'] . ".niv.re.";
|
||||
if (filter_var($domain, FILTER_VALIDATE_DOMAIN)) {
|
||||
|
||||
$domainArray[0] = $domain;
|
||||
|
|
|
@ -35,6 +35,9 @@ switch ($service) {
|
|||
case "ns":
|
||||
$page['title'] = "Ajouter un enregistrement NS pour un nouveau domain";
|
||||
break;
|
||||
case "register":
|
||||
$page['title'] = "Enregistrer un nouveau nom de domaine";
|
||||
break;
|
||||
case "glue":
|
||||
$page['title'] = "Glue Record";
|
||||
break;
|
||||
|
|
54
top.inc.php
54
top.inc.php
|
@ -26,35 +26,34 @@ if ($service != $prefixURL . "/auth" AND !isset($_SESSION['username'])) {
|
|||
|
||||
$dbPath = $rootPath . "/db/auth.db";
|
||||
|
||||
$red = "#FF0000";
|
||||
$purple = "#B300FF";
|
||||
$green = "#00FF00";
|
||||
$cyan = "#00FFFF";
|
||||
|
||||
switch ($service) {
|
||||
case $prefixURL . "/ht":
|
||||
$mainColor = $red;
|
||||
break;
|
||||
case $prefixURL . "/nic":
|
||||
$mainColor = $purple;
|
||||
break;
|
||||
case $prefixURL . "/auth":
|
||||
$mainColor = $green;
|
||||
break;
|
||||
case $prefixURL . "":
|
||||
$mainColor = $green;
|
||||
break;
|
||||
case $prefixURL . "/ns":
|
||||
$mainColor = $cyan;
|
||||
break;
|
||||
}
|
||||
|
||||
$theme = array(
|
||||
'mainColor' => $mainColor,
|
||||
'htColor' => "#FF0000",
|
||||
'nicColor' => "#da03e5",
|
||||
'authColor' => "#00FF00",
|
||||
'nsColor' => "#00FFFF",
|
||||
'color1' => 'white',
|
||||
'color2' => '#2a2a2a',
|
||||
);
|
||||
|
||||
switch ($service) {
|
||||
case $prefixURL . "/ht":
|
||||
$theme = array('mainColor' => $theme['htColor']) + $theme;
|
||||
break;
|
||||
case $prefixURL . "/nic":
|
||||
$theme = array('mainColor' => $theme['nicColor']) + $theme;
|
||||
break;
|
||||
case $prefixURL . "/auth":
|
||||
$theme = array('mainColor' => $theme['authColor']) + $theme;
|
||||
break;
|
||||
case $prefixURL . "":
|
||||
$theme = array('mainColor' => $theme['authColor']) + $theme;
|
||||
break;
|
||||
case $prefixURL . "/ns":
|
||||
$theme = array('mainColor' => $theme['nsColor']) + $theme;
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
require "pages.inc.php";
|
||||
|
||||
require_once 'lessphp/lib/Less/Autoloader.php';
|
||||
|
@ -67,17 +66,18 @@ foreach ($relativeLessFiles as $relativeLessFile => $nothing) {
|
|||
$absoluteLessFiles[$rootPath . "/less/" . $relativeLessFile] = "";
|
||||
}
|
||||
|
||||
$options = array('cache_dir' => $rootPath . '/css/');
|
||||
$options = array('cache_dir' => $rootPath . '/css/', 'compress' => true);
|
||||
$cssFileName = Less_Cache::Get($absoluteLessFiles, $options, $theme);
|
||||
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<title><?= $page['title'] ?><?php if (isset($page['service'])) { echo " · " . $page['service']; } ?> · Atope</title>
|
||||
<title><?php if ($page['title'] != "Accueil") echo $page['title'] . " · "; ?><?php if (isset($page['service'])) { echo $page['service'] . " · "; } ?>Atope</title>
|
||||
<link type="text/css" rel="stylesheet" href="<?= $prefixURL ?>/css/<?= $cssFileName ?>">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<header>
|
||||
|
|
Loading…
Reference in a new issue