2022-09-18 19:27:23 +03:00
|
|
|
.card {
|
|
|
|
background-color: #131313;
|
2022-12-03 10:13:18 +03:00
|
|
|
border-radius: 34px;
|
|
|
|
width: 359px;
|
|
|
|
height: 237px;
|
|
|
|
overflow: hidden;
|
2022-09-18 19:27:23 +03:00
|
|
|
}
|
|
|
|
|
2022-09-19 02:08:05 +03:00
|
|
|
.header-row {
|
2022-12-03 10:13:18 +03:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(4, 1fr);
|
|
|
|
grid-template-rows: repeat(1, 1fr);
|
|
|
|
grid-gap: 40px;
|
|
|
|
padding: 10px;
|
|
|
|
margin-left: -100px;
|
2022-09-18 19:27:23 +03:00
|
|
|
}
|
|
|
|
|
2022-09-19 13:25:26 +03:00
|
|
|
.card-img-top {
|
2022-12-03 10:13:18 +03:00
|
|
|
min-width: 120%;
|
|
|
|
min-height: 120%;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-img {
|
|
|
|
border-radius: 16px;
|
2022-09-19 23:40:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
lottie-player {
|
|
|
|
margin: 0 auto;
|
2022-09-25 11:09:54 +03:00
|
|
|
}
|
|
|
|
|
2022-12-03 17:48:11 +03:00
|
|
|
.modal-content {
|
2022-12-15 21:05:37 +03:00
|
|
|
background-color: #131313;
|
2022-12-03 10:13:18 +03:00
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2022-12-03 17:48:11 +03:00
|
|
|
.shimmer {
|
|
|
|
display: inline-block;
|
2022-12-15 21:05:37 +03:00
|
|
|
color: #333333;
|
2022-12-03 20:40:04 +03:00
|
|
|
-webkit-mask: linear-gradient(-60deg, #000 30%, #0005, #000 70%) right/386% 100%;
|
2022-12-03 17:48:11 +03:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
animation: shimmer 2.5s infinite;
|
|
|
|
filter: blur(50px)
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes shimmer {
|
|
|
|
100% {-webkit-mask-position: left}
|
|
|
|
}
|
|
|
|
|
|
|
|
#show-more {
|
|
|
|
background-color: #212529;
|
|
|
|
color: white;
|
|
|
|
border: none;
|
|
|
|
border-radius: 16px;
|
|
|
|
padding: 10px;
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
|
2022-09-25 11:09:54 +03:00
|
|
|
.modal-body p {
|
|
|
|
font-family: 'Roboto', sans-serif;
|
2022-12-03 10:13:18 +03:00
|
|
|
margin-top: 16px;
|
2022-09-25 11:09:54 +03:00
|
|
|
}
|
2022-10-12 11:13:07 +03:00
|
|
|
|
|
|
|
.navbar {
|
|
|
|
position: -webkit-sticky;
|
|
|
|
position: sticky;
|
|
|
|
z-index: 100;
|
|
|
|
top: 0;
|
2022-12-15 21:05:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#favorite {
|
|
|
|
width: 130px;
|
|
|
|
height: 130px;
|
|
|
|
margin: -17px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#favorite:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
#favorite:active {
|
|
|
|
transform: scale(0.9);
|
|
|
|
}
|
|
|
|
|
|
|
|
#setWallpaper:disabled {
|
|
|
|
cursor: unset;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-close{
|
|
|
|
background-color: white;
|
2022-10-12 11:13:07 +03:00
|
|
|
}
|