File size: 2,188 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
.headingBanner {
color: white;
font-size: 19px;
margin-left: 20px;
display: flex;
justify-content: space-between;
}
.banner {
display: flex;
left: 10px;
overflow-y: hidden;
overflow-x: scroll;
scroll-behavior: smooth;
justify-content: space-between;
z-index: -1;
}
.banner::-webkit-scrollbar {
display: none;
}
.leftIconDiv {
left: 0px;
max-height: 166px;
z-index: 1;
width: 30px;
color: gray;
position: absolute;
margin-top: 10px;
-webkit-transition: opacity 0.25s ease, background-color 0.25s ease;
transition: opacity 0.25s ease, background-color 0.25s ease;
background-color: rgba(15, 23, 30, 0.5);
}
.leftIcon {
min-height: 160px;
}
.leftIconDiv:hover {
.leftIcon {
color: white;
transform: scale(1.5);
}
}
.rightIconDiv {
margin-top: -180px;
right: 0px;
min-height: 166px;
z-index: 1;
width: 40px;
color: gray;
position: absolute;
-webkit-transition: opacity 0.25s ease, background-color 0.25s ease;
transition: opacity 0.25s ease, background-color 0.25s ease;
background-color: rgba(15, 23, 30, 0.5);
//background-color: black;
cursor: pointer;
}
.rightIcon {
min-height: 160px;
margin-left: 0px;
padding-top: -200px;
}
.rightIconDiv:hover {
.rightIcon {
color: white;
transform: scale(1.5);
}
}
.mediaScreen {
margin-top: 5px;
z-index: 0;
}
.mediaDiv {
position: static;
width: 100%;
cursor: pointer;
z-index: 0;
padding: 10px 0px;
padding-top: 5px;
.displayhoverScreen {
display: none;
position: absolute;
z-index: 5;
padding: 1px;
min-height: 400px;
transform: scale(1);
}
&:hover > .displayhoverScreen {
//
display: block;
position: absolute;
// padding: 1px;
//z-index: 3;
}
}
.mediaImg {
height: 160px;
object-fit: cover;
margin: 5px;
border-radius: 4px;
z-index: 0;
visibility: visible;
}
.mediaDiv:hover {
padding: 0px;
.mediaImg {
height: 0px;
width: 284px;
visibility: hidden;
// margin-top: -10px;
}
}
.moreButton {
color: lightblue;
font-size: 14px;
margin-right: 15px;
cursor: pointer;
text-decoration: none;
}
.moreButton:hover {
color: white;
}
|