first commit

This commit is contained in:
2024-03-08 17:28:57 +05:30
commit 486291d914
1046 changed files with 285710 additions and 0 deletions
@@ -0,0 +1,91 @@
.controlPanel {
margin-top: 10rem;
padding-bottom: 300px;
.controlPanel_des {
position: absolute;
top: -170px;
left: 80px;
}
.bgControlpanel {
min-height: 100vh;
background-color: #ececec;
border-radius: 157px;
position: relative;
.bgControlpaneltabs {
position: absolute;
top: 100px;
right: 0;
.nav-link:focus-visible,
.nav-item:focus-visible {
outline: none !important;
}
.nav-tabs {
border-bottom: 1px solid;
margin-bottom: 2rem;
}
.nav-item {
position: relative;
border: none;
}
.nav-tabs .nav-link {
position: relative;
color: black;
font-weight: 500;
}
.nav-tabs .nav-link.active {
border: none;
background-color: transparent;
}
.nav-tabs .nav-link.active::before {
display: block;
}
.nav-item .nav-link::before {
content: "";
position: absolute;
width: 100%;
height: 5px;
bottom: -2px;
right: 0;
display: none;
background-color: black;
}
}
}
}
@media (max-width:768px) {
.controlPanel {
padding-bottom: 100px;
.bgControlpanel {
min-height: 50vh;
}
}
}
@media (max-width:600px) {
.controlPanel {
.controlPanel_des {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
left: 50%;
}
}
}