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.
25 lines
638 B
25 lines
638 B
@import url(./style.css); /* Import de style.css */
|
|
@import url(./styleQuoteLittle.css);
|
|
|
|
/* Conteneur général pour les citations */
|
|
.citations-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
padding: 20px 0;
|
|
align-items: center;
|
|
width: 100%;
|
|
margin: 0 0;
|
|
}
|
|
|
|
/* Citation du jour - toujours en pleine largeur */
|
|
.citation-du-jour {
|
|
width: 90%; /* Prend toute la largeur */
|
|
background: linear-gradient(to right, #ff5722, #ff9800); /* Dégradé spécial pour la citation du jour */
|
|
padding: 0;
|
|
overflow: hidden;
|
|
margin-bottom: 20px;
|
|
height: 150px;
|
|
}
|
|
|