57 lines
1 KiB
CSS
57 lines
1 KiB
CSS
/* styles.css */
|
|
body {
|
|
background-color: #f6f6ff;
|
|
font-family: Arial, sans-serif;
|
|
text-align: center;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.container {
|
|
padding: 50px 20px;
|
|
}
|
|
|
|
h1 {
|
|
color: #7f4de0;
|
|
font-size: 40px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.columns {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 30px;
|
|
}
|
|
|
|
.column {
|
|
width: 150px;
|
|
height: 80px; /* Taille de la colonne, affichant 3 cases visibles */
|
|
background-color: #fff;
|
|
border: 3px solid #7f4de0;
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
color: #7f4de0;
|
|
line-height: 80px;
|
|
}
|
|
|
|
button {
|
|
margin-top: 30px;
|
|
background-color: #e3cb20;
|
|
color: #fff;
|
|
font-size: 20px;
|
|
padding: 10px 20px;
|
|
border: none;
|
|
border-radius: 10px;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #c0a019;
|
|
}
|