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/public/styles/styleQuote.css

110 lines
1.9 KiB

@import url(./style.css);
/* ====== DARK MODE ====== */
body.dark-mode .card {
position: relative;
background-color: black;
border-radius: 15px;
width: 60%;
display: flex;
margin-left: 5%;
border: 2px solid transparent;
}
body.dark-mode .card-content {
color: white;
margin-left: 20px;
flex: 1;
}
body.dark-mode .likes {
margin-left: 85%;
font-size: 20px;
color: #fff;
}
body.dark-mode .like-icon {
position: absolute;
top: 10px;
right: 10px;
font-size: 35px;
color: #fff;
cursor: pointer;
}
body.dark-mode .share-icon {
position: absolute;
top: 70px;
right: 10px;
font-size: 35px;
color: #fff;
cursor: pointer;
}
/* ====== LIGHT MODE ====== */
body.light-mode .card {
position: relative;
background-color: white;
border-radius: 15px;
width: 60%;
display: flex;
margin-left: 5%;
border: 2px solid black;
}
body.light-mode .card-content {
color: black;
margin-left: 20px;
flex: 1;
}
body.light-mode .likes {
margin-left: 85%;
font-size: 20px;
color: black;
}
body.light-mode .like-icon {
position: absolute;
top: 10px;
right: 10px;
font-size: 35px;
color: black;
cursor: pointer;
}
body.light-mode .share-icon {
position: absolute;
top: 70px;
right: 10px;
font-size: 35px;
color: black;
cursor: pointer;
}
/* ====== DEFAULT ====== */
.infoQuote {
list-style: none;
font-size: 25px;
line-height: 40px;
margin-top: 35%;
margin-left: -45%;
margin-bottom: 20px;
}
.card-image {
border-radius: 10px;
width: 310px;
height: 270px;
}
.quote {
margin-top: 10px;
font-size: 35px;
font-weight: bold;
font-style: italic;
margin-bottom: 15px;
}