You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

146 lines
2.3 KiB
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
::-webkit-scrollbar {
width: 5px;
/* Width of the entire scrollbar */
}
::-webkit-scrollbar-thumb {
background: #7b88948b;
/* Color of the scroll thumb */
}
::-webkit-scrollbar-track {
background: #5a5a5a00;
/* Color of the scrollbar track */
}
/* FOR THE IFRAME TO TAKE 95% OF WIDTH ON SMALL SCREEN SIZES */
@media screen and (max-width: 798px) {
#popupModalFrame {
width: 100% !important;
}
}
/* TO ANIMATE THE BURGER MENU IN THE FIXED HEADER */
/* Default state */
.burgerMenuLine {
width: 25px;
height: 2px;
}
/* Expanded state */
.burgerMenuLine.expanded {
width: 2px;
height: 25px;
}
.closeMenuLine {
width: 2px;
height: 25px;
}
.closeMenuLine.expanded {
width: 25px;
height: 2px;
}
/* SIDE BAR */
@media (max-width: 1200px) {
#scrollPart {
margin-left: 0;
width: 100%;
}
.fixedSideHeader {
display: none;
margin-top: 100px;
width: 100% !important;
z-index: 50;
position: absolute;
}
}
/* TO ANIMATE THE USER ACTIVITY FIXED BUTTON */
@keyframes zoomInOut {
0%,
100% {
transform: scale(1);
opacity: 0.5;
}
50% {
transform: scale(1.2);
opacity: 1;
}
}
.usersActivityIcon {
animation: zoomInOut 1.5s infinite;
}
/* TO ANIMATE THE CONNECTED USERS GREEN DOT */
@keyframes pop {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
.connectedUsersDot {
animation: pop 1s infinite ease-in-out;
}
/* DRAGGABLE SLIDER */
.swiper-container {
width: 100%;
height: 100%;
overflow: hidden !important;
position: relative;
}
.swiper-slide {
width: 33% !important;
margin-right: 20px;
}
.swiper-slide:last-child {
margin-right: 0 !important;
}
.swiper-wrapper::-webkit-scrollbar {
width: 0;
background: transparent;
}
/* Hide the scrollbar thumb when not scrolling */
.swiper-wrapper::-webkit-scrollbar-thumb {
background: transparent;
}
/* Hide the scrollbar track when not scrolling */
.swiper-wrapper::-webkit-scrollbar-track {
background: transparent;
}
@media screen and (max-width: 500px) {
.swiper-slide {
width: 90% !important;
}
}