rewrite v0.8
This commit is contained in:
@@ -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
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
|
// 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/";
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user