Update form class in tables_vue.php, header.php, accueil_vue.php, parties_controleur.php, modele.php, statistiques_controleur.php, and parties_vue.php

This commit is contained in:
2024-04-18 23:41:03 +02:00
parent 6bbaf30f26
commit 922e7ecbae
12 changed files with 295 additions and 69 deletions

View File

@@ -8,14 +8,17 @@ nav,
main,
footer {
padding: 1em 0;
border-radius: 1em;
margin-top: 1em;
}
header {
display: flex;
justify-content: flex-start;
background-color: white;
background-color: lightgrey;
color: black;
text-align: center;
border-radius: 2em;
}
.header_titre {
@@ -35,7 +38,7 @@ header {
display: flex;
justify-content: space-between;
margin: auto;
border: 4px solid gray;
border: 4px solid darkgreen;
border-radius: 1em;
box-sizing: border-box;
height: 100%;
@@ -43,16 +46,40 @@ header {
nav {
display: flex;
justify-content: space-around;
background-color: gray;
justify-content: space-evenly;
background-color: white;
padding-left: 1em;
padding-right: 1em;
line-height: 2em;
border-radius: 1em;
margin: inherit;
}
main {
background-color: lightgrey;
padding-left: 1em;
display: flex;
flex-direction: column;
overflow-y: auto;
}
a:link {
color: black;
}
/* visited link */
a:visited {
color: green;
}
/* mouse over link */
a:hover {
color: rgb(105, 140, 255);
}
/* selected link */
a:active {
color: blue;
}
p {
@@ -68,6 +95,13 @@ footer {
background-color: white;
}
input {
width: 10%;
padding: 10px;
margin: 15px;
border-radius: 1em;
}
.notification {
background-color: #ffffe6;
margin: 1em;
@@ -88,7 +122,8 @@ footer {
}
.panneau_details {
display: flex;
display: flex-root;
flex-direction: column;
justify-content: center;
width: 100%;
overflow-y: auto;
@@ -112,7 +147,22 @@ footer {
.unecarte {
display: inline-block;
background-color: tomato;
}
.plateau {
background-color: green;
border-radius: 2em;
display: inline-flex;
padding: 20px 50px 20px 50px;
}
p .joueur {
margin: 0.5em 0;
padding: 0.5em;
background-color: white;
border: 1px solid gray;
display: table;
border-radius: 1em;
}
.panneau_details>div {
@@ -147,6 +197,11 @@ footer {
background-color: white;
}
select {
margin: 1em;
padding: 1em;
}
.bloc_commandes {
display: flex;
flex-direction: column;
@@ -176,4 +231,61 @@ footer {
.bloc_commandes>input[type="submit"]:hover,
.bloc_commandes>select:hover {
cursor: pointer;
}
.bloc_commandes_sans_flex {
border: 1px solid gray;
border-radius: 2em;
background-color: white;
margin-left: 5%;
margin-bottom: 1em;
padding: 10px 10px 10px 10px;
width: 90%;
}
.bloc_commandes>input[type="submit"] {
width: 15%;
font-size: 1.2em;
margin-left: 4%;
}
.bloc_commandes>select {
width: 30%;
font-size: 1.2em;
margin-left: 1%;
margin-right: 1%;
text-align: center;
}
.bloc_commandes>input[type="submit"]:hover,
.bloc_commandes>select:hover {
cursor: pointer;
}
.grand_input {
width: 20%;
padding: 10px;
margin: 15px;
}
.en_ligne {
display: inline-flex;
}
.en_ligne_suite {
display: block ruby;
}
.joueurs {
display: flex;
flex-direction: initial;
justify-content: center;
}
#demotext {
color: rgb(255, 255, 255);
text-shadow: rgb(255, 255, 255) 0px 0px 5px, rgb(255, 255, 255) 0px 0px 10px, rgb(255, 255, 255) 0px 0px 15px, rgb(73, 255, 24) 0px 0px 20px, rgb(73, 255, 24) 0px 0px 30px, rgb(73, 255, 24) 0px 0px 40px, rgb(73, 255, 24) 0px 0px 55px, rgb(73, 255, 24) 0px 0px 75px;
--darkreader-inline-color: #e8e6e3;
--darkreader-inline-bgcolor: #1a1d1e;
--darkreader-inline-bgimage: none;
}