12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- .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%;
- }
-
- }
- }
|