rewrite v0.8

This commit is contained in:
Pontoporeia
2023-05-02 12:15:28 +02:00
parent 9bf4593ae5
commit 763ad7d722
4 changed files with 46 additions and 22 deletions

View File

@@ -2,10 +2,10 @@
font-family: police1; font-family: police1;
src: url("./fonts/Combinedd.otf"); src: url("./fonts/Combinedd.otf");
} }
/*
body{ body{
background-color: white; background-color: white;
} */ }
/* ENTÊTE */ /* ENTÊTE */
@@ -23,15 +23,12 @@
form label { form label {
font-family: police1; font-family: police1;
/* font-size: 1rem; */ font-size: 1rem;
} }
form input, form input,
select, textarea { select, textarea {
border-color: #c104fc; border-color: #c104fc;
border-radius: 5px;
border-style: solid;
overflow: visible; overflow: visible;
outline: none; outline: none;
background-color: white; background-color: white;
@@ -42,24 +39,28 @@
border: 3px solid rgba(77, 168, 112, 1); border: 3px solid rgba(77, 168, 112, 1);
} }
label{
margin-top: 2rem;
}
input { input {
font-family: police1; font-family: police1;
/* font-size: 1rem; */
font-weight: bold; font-weight: bold;
/* padding: 1.2rem; */
border-radius: 16px;
background-color: none; background-color: none;
color: rgb(193, 4, 252); color: rgb(193, 4, 252);
border: 1px solid rgb(193, 4, 252); border: 1px solid rgb(193, 4, 252);
/* text-align: center;
text-decoration: none;
cursor: pointer; */
} }
/*
input:hover { a{
background-color: rgb(193, 4, 252); color: rgb(193, 4, 252);
color: white; }
} */
a:hover {
text-decoration: none;
}
a, a:visited {
color: rgb(193, 4, 252);
}
input:active { input:active {
border-color: rgba(77, 168, 112, 1); border-color: rgba(77, 168, 112, 1);
@@ -67,11 +68,24 @@ input {
} }
button, [role="button"], input[type="submit"], input[type="reset"], input[type="button"], label[type="button"] { button, [role="button"], input[type="submit"], input[type="reset"], input[type="button"], label[type="button"] {
background-color: rgb(193, 4, 252);; background-color: rgb(193, 4, 252);
margin-top: 2rem;
} }
body > header h1 { body > header h1 {
color: white;
margin: 3rem auto auto auto; margin: 3rem auto auto auto;
} }
/* For Google Chrome, Safari, and newer versions of Opera */
::placeholder {
/* color: rgb(213, 73, 255); */
font-size: 0.8rem;
}
/* For Mozilla Firefox */
::-moz-placeholder {
/* color: rgb(213, 73, 255); */
font-size: 0.8rem;}

4
error.log Normal file
View File

@@ -0,0 +1,4 @@
[02-May-2023 10:04:39 UTC] PHP Fatal error: Uncaught Error: Class "Transliterator" not found in /home/lockpick/Projects/posterg-formulaire/formulaire.php:42
Stack trace:
#0 {main}
thrown in /home/lockpick/Projects/posterg-formulaire/formulaire.php on line 42

View File

@@ -3,10 +3,11 @@
// Configure error reporting // Configure error reporting
ini_set('display_errors', 0); ini_set('display_errors', 0);
ini_set('log_errors', 1); ini_set('log_errors', 1);
ini_set('error_log', 'path/to/your/error.log'); ini_set('error_log', 'error.log');
require_once 'vendor/autoload.php'; require_once 'vendor/autoload.php';
use Symfony\Component\Yaml\Yaml; use Symfony\Component\Yaml\Yaml;
use Behat\Transliterator\Transliterator;
// Define variables // Define variables
$yamlFolder = "data/yaml/"; $yamlFolder = "data/yaml/";

View File

@@ -1,4 +1,9 @@
<?php <?php
// Configure error reporting
ini_set('display_errors', 0);
ini_set('log_errors', 1);
ini_set('error_log', 'error.log');
require 'vendor/autoload.php'; require 'vendor/autoload.php';
use Symfony\Component\Yaml\Yaml; use Symfony\Component\Yaml\Yaml;