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

_controlPanel.scss 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. .controlPanel {
  2. margin-top: 10rem;
  3. padding-bottom: 300px;
  4. .controlPanel_des {
  5. position: absolute;
  6. top: -170px;
  7. left: 80px;
  8. }
  9. .bgControlpanel {
  10. min-height: 100vh;
  11. background-color: #ececec;
  12. border-radius: 157px;
  13. position: relative;
  14. .bgControlpaneltabs {
  15. position: absolute;
  16. top: 100px;
  17. right: 0;
  18. .nav-link:focus-visible,
  19. .nav-item:focus-visible {
  20. outline: none !important;
  21. }
  22. .nav-tabs {
  23. border-bottom: 1px solid;
  24. margin-bottom: 2rem;
  25. }
  26. .nav-item {
  27. position: relative;
  28. border: none;
  29. }
  30. .nav-tabs .nav-link {
  31. position: relative;
  32. color: black;
  33. font-weight: 500;
  34. }
  35. .nav-tabs .nav-link.active {
  36. border: none;
  37. background-color: transparent;
  38. }
  39. .nav-tabs .nav-link.active::before {
  40. display: block;
  41. }
  42. .nav-item .nav-link::before {
  43. content: "";
  44. position: absolute;
  45. width: 100%;
  46. height: 5px;
  47. bottom: -2px;
  48. right: 0;
  49. display: none;
  50. background-color: black;
  51. }
  52. }
  53. }
  54. }
  55. @media (max-width:768px) {
  56. .controlPanel {
  57. padding-bottom: 100px;
  58. .bgControlpanel {
  59. min-height: 50vh;
  60. }
  61. }
  62. }
  63. @media (max-width:600px) {
  64. .controlPanel {
  65. .controlPanel_des {
  66. width: 100%;
  67. display: flex;
  68. flex-direction: column;
  69. align-items: center;
  70. justify-content: center;
  71. left: 50%;
  72. }
  73. }
  74. }