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.

70 lines
1.1 KiB

table{
margin-top: 2vh;
border-collapse: collapse;
margin-left: 5vw;
}
td, th{
border: 2px solid black;
background-color: gray;
}
td {
text-align: center;
width: 15vw;
padding: 0.5%;
}
.image_table {
height: 10vh;
}
#close {
position: absolute;
background-image: url("../images/cross.png");
background-color: rgb(200 200 200);
background-size:cover;
background-position: center;
border: 2px solid black;
top: 11vh;
left:72vw;
height: 2.5vw;
width: 2.5vw;
border-radius: 10px;
display: none;
}
@keyframes agrandissement-centré {
0% {
height: 10vh;
}
100% {
height: 80vh;
}
}
@keyframes degrossissement-centré {
0% {
height: 80vh;
}
100% {
height: 10vh;
}
}
@keyframes slide_left {
0% {
transform: translateX(60vw);
}
100% {
transform: translateX(7.5vw);
}
}
@keyframes slide_right {
0% {
transform: translateX(7.5vw);
}
100% {
transform: translateX(60vw);
}
}