rewrite v0.8
This commit is contained in:
@@ -2,10 +2,10 @@
|
||||
font-family: police1;
|
||||
src: url("./fonts/Combinedd.otf");
|
||||
}
|
||||
/*
|
||||
|
||||
body{
|
||||
background-color: white;
|
||||
} */
|
||||
}
|
||||
|
||||
|
||||
/* ENTÊTE */
|
||||
@@ -23,15 +23,12 @@
|
||||
|
||||
form label {
|
||||
font-family: police1;
|
||||
/* font-size: 1rem; */
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
form input,
|
||||
select, textarea {
|
||||
|
||||
border-color: #c104fc;
|
||||
border-radius: 5px;
|
||||
border-style: solid;
|
||||
overflow: visible;
|
||||
outline: none;
|
||||
background-color: white;
|
||||
@@ -42,24 +39,28 @@
|
||||
border: 3px solid rgba(77, 168, 112, 1);
|
||||
}
|
||||
|
||||
label{
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
input {
|
||||
font-family: police1;
|
||||
/* font-size: 1rem; */
|
||||
font-weight: bold;
|
||||
/* padding: 1.2rem; */
|
||||
border-radius: 16px;
|
||||
background-color: none;
|
||||
color: rgb(193, 4, 252);
|
||||
border: 1px solid rgb(193, 4, 252);
|
||||
/* text-align: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer; */
|
||||
}
|
||||
/*
|
||||
input:hover {
|
||||
background-color: rgb(193, 4, 252);
|
||||
color: white;
|
||||
} */
|
||||
|
||||
a{
|
||||
color: rgb(193, 4, 252);
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
a, a:visited {
|
||||
color: rgb(193, 4, 252);
|
||||
}
|
||||
|
||||
input:active {
|
||||
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"] {
|
||||
background-color: rgb(193, 4, 252);;
|
||||
|
||||
background-color: rgb(193, 4, 252);
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
body > header h1 {
|
||||
|
||||
color: white;
|
||||
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
4
error.log
Normal 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
|
||||
@@ -3,10 +3,11 @@
|
||||
// Configure error reporting
|
||||
ini_set('display_errors', 0);
|
||||
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';
|
||||
use Symfony\Component\Yaml\Yaml;
|
||||
use Behat\Transliterator\Transliterator;
|
||||
|
||||
// Define variables
|
||||
$yamlFolder = "data/yaml/";
|
||||
|
||||
@@ -1,4 +1,9 @@
|
||||
<?php
|
||||
// Configure error reporting
|
||||
ini_set('display_errors', 0);
|
||||
ini_set('log_errors', 1);
|
||||
ini_set('error_log', 'error.log');
|
||||
|
||||
require 'vendor/autoload.php';
|
||||
|
||||
use Symfony\Component\Yaml\Yaml;
|
||||
|
||||
Reference in New Issue
Block a user