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.
WF-Website/styles/styleAccueil.css

62 lines
943 B

/* accueil.css */
/* Importer les styles du bandeau */
@import url('header.css');
/* Styles spécifiques à la page d'accueil */
.quote-of-the-day, .suggestions {
margin: 20px auto;
padding: 20px;
background-color: #2b2b45;
border-radius: 10px;
width: 80%;
}
h2 {
text-align: center;
color: #fff;
}
.quote-card, .suggestion-card {
display: flex;
align-items: center;
margin: 10px 0;
background: #3b3b5f;
border-radius: 10px;
padding: 15px;
}
.quote-card img, .suggestion-card img {
border-radius: 10px;
width: 100px;
height: auto;
margin-right: 15px;
}
.quote-content, .suggestion-content {
flex-grow: 1;
}
.quote-likes {
display: flex;
align-items: center;
color: #fff;
margin-left: 10px;
}
.quote-likes img {
width: 20px;
height: auto;
margin-left: 5px;
}
.suggestion-list {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.suggestion-card {
width: 45%;
}