291 lines
4.5 KiB
CSS
291 lines
4.5 KiB
CSS
body {
|
|
background-color: lightgrey;
|
|
height: 65vh;
|
|
}
|
|
|
|
header,
|
|
nav,
|
|
main,
|
|
footer {
|
|
padding: 1em 0;
|
|
border-radius: 1em;
|
|
margin-top: 1em;
|
|
}
|
|
|
|
header {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
background-color: lightgrey;
|
|
color: black;
|
|
text-align: center;
|
|
border-radius: 2em;
|
|
}
|
|
|
|
.header_titre {
|
|
width: 80%;
|
|
}
|
|
|
|
.header_logo {
|
|
width: 20%;
|
|
padding-top: 1%;
|
|
}
|
|
|
|
.header_logo>a>img {
|
|
width: 30%;
|
|
}
|
|
|
|
.main_div {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin: auto;
|
|
border: 4px solid darkgreen;
|
|
border-radius: 1em;
|
|
box-sizing: border-box;
|
|
height: 100%;
|
|
}
|
|
|
|
nav {
|
|
display: flex;
|
|
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 {
|
|
margin: 0.5em 0;
|
|
padding: 0.5em;
|
|
background-color: white;
|
|
border: 1px solid gray;
|
|
}
|
|
|
|
footer {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
background-color: white;
|
|
}
|
|
|
|
input {
|
|
width: 10%;
|
|
padding: 10px;
|
|
margin: 15px;
|
|
border-radius: 1em;
|
|
}
|
|
|
|
.notification {
|
|
background-color: #ffffe6;
|
|
margin: 1em;
|
|
padding: 1em;
|
|
border: 1px solid #ffffe6;
|
|
}
|
|
|
|
.panneau {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
width: 100%;
|
|
overflow-y: auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.panneau>div {
|
|
margin-right: 2%;
|
|
}
|
|
|
|
.panneau_details {
|
|
display: flex-root;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
width: 100%;
|
|
overflow-y: auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.panneau_details_2 {
|
|
justify-content: center;
|
|
width: 100%;
|
|
overflow-y: auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.panneau_details_3 {
|
|
display: inline;
|
|
justify-content: center;
|
|
width: 100%;
|
|
overflow-y: auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.unecarte {
|
|
display: inline-block;
|
|
}
|
|
|
|
.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 {
|
|
margin-right: 2%;
|
|
}
|
|
|
|
.table_resultat {
|
|
width: 100%;
|
|
border: 1px solid gray;
|
|
background-color: white;
|
|
text-align: center;
|
|
}
|
|
|
|
.table_resultat>thead>tr {
|
|
border: 1px solid gray;
|
|
background-color: lightgrey;
|
|
}
|
|
|
|
.table_resultat>tbody>tr:hover {
|
|
cursor: pointer;
|
|
background-color: gray !important;
|
|
color: white;
|
|
}
|
|
|
|
.table_resultat>tbody>tr:nth-child(2n) {
|
|
border: 1px solid gray;
|
|
background-color: lightgrey;
|
|
}
|
|
|
|
.table_resultat>tbody>tr:nth-child(2n + 1) {
|
|
border: 1px solid gray;
|
|
background-color: white;
|
|
}
|
|
|
|
select {
|
|
margin: 1em;
|
|
padding: 1em;
|
|
}
|
|
|
|
.bloc_commandes {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border: 1px solid gray;
|
|
border-radius: 2em;
|
|
background-color: white;
|
|
margin-left: 5%;
|
|
margin-bottom: auto;
|
|
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;
|
|
}
|
|
|
|
.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;
|
|
} |