Files
SSA-Admin-Panel/src/index.css

190 lines
3.2 KiB
CSS
Raw Normal View History

2025-02-04 13:56:43 +05:30
@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
2025-01-15 12:38:29 +05:30
margin: 0;
padding: 0;
box-sizing: border-box;
}
2025-02-04 13:56:43 +05:30
body {
margin: 0;
padding: 0;
font-family: "Roboto", serif;
}
.Oxygen {
font-family: "Oxygen", serif
2025-02-04 13:56:43 +05:30
}
2025-01-15 12:38:29 +05:30
.active {
2025-01-15 16:56:25 +05:30
background-color: #02A0A0 !important;
color: #fff !important;
border: 1px solid #02A0A0 !important;
2025-01-15 12:38:29 +05:30
transition: all 0.5s;
border-radius: 8px;
/* background-color: #e2e8f01c; */
}
.active:hover {
2025-01-15 16:56:25 +05:30
border: 1px solid #02A0A0 !important;
2025-01-15 12:38:29 +05:30
transition: all 0.5s;
border-radius: 8px;
/* background-color: #e2e8f01c !important; */
}
2025-01-15 16:56:25 +05:30
.linkChild:hover {
2025-01-15 16:56:25 +05:30
color: #02A0A0 !important;
transition: all 0.5s;
}
.activeChild {
2025-01-15 16:56:25 +05:30
color: #02A0A0 !important;
/* border: 1px solid #02A0A0 !important; */
transition: all 0.5s;
border-radius: 8px;
}
.link {
2025-01-15 12:38:29 +05:30
transition: all 0.5s;
}
.link:hover {
2025-01-15 16:56:25 +05:30
background-color: #02A0A0;
2025-01-15 12:38:29 +05:30
color: #fff;
2025-01-15 16:56:25 +05:30
border: 1px solid #02A0A0 !important;
2025-01-15 12:38:29 +05:30
/* color: #fff; */
/* background-color: #e2e8f01c !important; */
}
/* Sphere.css */
/* ✅ Red Spheres */
.red-sphere-1,
.red-sphere-2,
.red-sphere-3 {
2025-01-15 12:38:29 +05:30
position: absolute;
border-radius: 50%;
background-color: #D90B2E46;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
filter: blur(100px);
}
/* ✅ Blue Spheres */
.blue-sphere-1,
.blue-sphere-2,
.blue-sphere-3 {
2025-01-15 12:38:29 +05:30
position: absolute;
border-radius: 50%;
background-color: #009DAB46;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
filter: blur(100px);
}
/* 🔧 Positioning for Spheres */
.red-sphere-1 {
width: 250px;
height: 250px;
top: 10%;
left: 5%;
}
.blue-sphere-1 {
width: 320px;
height: 320px;
top: 30%;
right: 0%;
}
.red-sphere-2 {
width: 180px;
height: 180px;
bottom: 15%;
left: 20%;
}
.blue-sphere-2 {
width: 140px;
height: 140px;
bottom: 5%;
right: 25%;
}
.red-sphere-3 {
width: 480px;
height: 480px;
bottom: 55%;
left: 40%;
}
.blue-sphere-3 {
2025-01-15 12:38:29 +05:30
width: 300px;
height: 300px;
bottom: 10%;
right: 40%;
}
2025-02-04 13:56:43 +05:30
/* Style the scrollbar */
::-webkit-scrollbar {
width: 6px;
/* Width of the vertical scrollbar */
height: 12px;
/* Height of the horizontal scrollbar */
2025-02-04 13:56:43 +05:30
}
/* Style the scrollbar track (the background area) */
::-webkit-scrollbar-track {
background-color: #f1f1f1;
border-radius: 10px;
}
/* Style the scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
background-color: #c8c8c8cf;
/* Gray color for the thumb */
border-radius: 10px;
border: 1px solid #f1f1f1;
/* Border around the thumb */
2025-02-04 13:56:43 +05:30
}
2025-02-11 13:53:51 +05:30
/* Scrollbar width */
::-webkit-scrollbar {
width: 8px;
height: 8px;
cursor: pointer;
}
/* Scrollbar track */
::-webkit-scrollbar-track {
background: transparent; /* No visible track */
}
/* Scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.3); /* Light black (30% opacity) */
border-radius: 10px; /* Rounded edges */
transition: background 0.3s;
}
/* On hover, make it darker */
2025-02-04 13:56:43 +05:30
::-webkit-scrollbar-thumb:hover {
2025-02-11 13:53:51 +05:30
background: rgba(0, 0, 0, 0.5);
2025-02-04 13:56:43 +05:30
}
2025-02-11 13:53:51 +05:30
2025-02-04 13:56:43 +05:30
input:focus-visible {
border: none !important;
}
.css-1ilznyv {
border: none;
}