arrow css changes

This commit is contained in:
aleensd 2024-11-20 10:03:15 +02:00
parent 49280c9854
commit fe2d55f079
2 changed files with 20 additions and 25 deletions

View File

@ -531,14 +531,6 @@
}
}
// .viewer-image-container img {
// cursor: pointer;
// width: 100%;
// max-width: 600px;
// display: block;
// margin: 0 auto;
// }
.modal-overlay {
position: fixed;
top: 0;
@ -569,28 +561,34 @@
max-height: 90vh;
border-radius: 0;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
transition: all 0.5s ease-in-out;
transition: transform 60s ease-in-out, opacity 60 ease-in-out;
}
.arrow {
background: none;
position: absolute;
display: flex;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
top: 50%;
transform: translateY(-50%);
border: none;
color: rgb(48, 47, 47);
color: white;
font-size: 2rem;
background-color: rgba(0, 0, 0, 0.2);
cursor: pointer;
padding: 10px;
border-radius: 50%;
z-index: 1000;
transition: all 0.5s ease-in-out;
transition: background-color 0.2s ease, transform 0.2s ease;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
// .arrow:hover {
// background: #292928
// }
.arrow:hover {
background: rgba(92, 78, 78, 0.6);
transform: translateY(-50%) scale(1.1);
}
.arrow.left {
left: 10px;
@ -628,8 +626,6 @@
background: rgba(255, 255, 255, 0.8);
}
.viewer-container .player-container {
@media screen and (min-width: 480px) {
border-radius: 10px;
@ -637,7 +633,6 @@
}
.viewer-container .player-container.audio-player-container {
@media screen and (min-width: 480px) {
padding-top: 0.75 * 56.25%;
}

File diff suppressed because one or more lines are too long