106 lines
1.6 KiB
CSS
106 lines
1.6 KiB
CSS
|
|
*{
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
.active {
|
||
|
|
background-color: #434A53;
|
||
|
|
color: #fff;
|
||
|
|
border: 1px solid #ffffff20 !important;
|
||
|
|
transition: all 0.5s;
|
||
|
|
border-radius: 8px;
|
||
|
|
/* background-color: #e2e8f01c; */
|
||
|
|
}
|
||
|
|
|
||
|
|
.active:hover {
|
||
|
|
background-color: #434A53;
|
||
|
|
color: #fff;
|
||
|
|
border: 1px solid #ffffff20 !important;
|
||
|
|
transition: all 0.5s;
|
||
|
|
border-radius: 8px;
|
||
|
|
/* background-color: #e2e8f01c !important; */
|
||
|
|
}
|
||
|
|
|
||
|
|
.link{
|
||
|
|
transition: all 0.5s;
|
||
|
|
}
|
||
|
|
|
||
|
|
.link:hover {
|
||
|
|
background-color: #434A53;
|
||
|
|
color: #fff;
|
||
|
|
border: 1px solid #ffffff20 !important;
|
||
|
|
/* color: #fff; */
|
||
|
|
/* background-color: #e2e8f01c !important; */
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
/* Sphere.css */
|
||
|
|
|
||
|
|
/* ✅ Red Spheres */
|
||
|
|
.red-sphere-1,
|
||
|
|
.red-sphere-2,
|
||
|
|
.red-sphere-3{
|
||
|
|
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{
|
||
|
|
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{
|
||
|
|
width: 300px;
|
||
|
|
height: 300px;
|
||
|
|
bottom: 10%;
|
||
|
|
right: 40%;
|
||
|
|
}
|
||
|
|
|