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.
33 lines
601 B
33 lines
601 B
@import url(./style.css); /* Import de style.css */
|
|
@import url(./styleQuoteLittle.css);
|
|
|
|
|
|
/* Citation du jour */
|
|
|
|
.citation-du-jour {
|
|
width: 96.66vw;
|
|
padding: 0;
|
|
margin-left: 1.25vw;
|
|
overflow: hidden;
|
|
margin-bottom: 20px;
|
|
height: 150px;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
/* dark-mode */
|
|
|
|
body.dark-mode .citation-du-jour {
|
|
background: var(--main-dark-gradient);
|
|
}
|
|
|
|
/* light-mode */
|
|
|
|
body.light-mode .citation-du-jour {
|
|
background: var(--main-light-gradient);
|
|
}
|
|
|
|
.citation-du-jour:hover {
|
|
transform: scale(1.02);
|
|
z-index: 5;
|
|
position: relative;
|
|
} |