You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
723 B
49 lines
723 B
body {
|
|
background-color: #000;
|
|
color: #fff;
|
|
font-family: 'Syncopate', sans-serif;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
header h1 {
|
|
margin-top: 10vh;;
|
|
font-size: 2em;
|
|
text-align: center;
|
|
color: #fff;
|
|
}
|
|
|
|
|
|
table {
|
|
display: block;
|
|
border-collapse: collapse;
|
|
border: 2px solid #fff;
|
|
background-color: #111;
|
|
}
|
|
|
|
th, td {
|
|
border: 1px solid #fff;
|
|
padding: 10px;
|
|
text-align: center;
|
|
}
|
|
|
|
th {
|
|
background-color: #333;
|
|
font-weight: bold;
|
|
}
|
|
|
|
#retour{
|
|
color: #fff;
|
|
text-decoration: none;
|
|
margin-top: 20px;
|
|
font-size: 1.2em;
|
|
transition: color 0.3s;
|
|
}
|
|
|
|
a#retour:hover {
|
|
color: grey;
|
|
}
|