index.less 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. @import '../../app.less';
  2. #page {
  3. padding-top: 44px;
  4. }
  5. #header {
  6. width: 100%;
  7. box-shadow: 0 4px 14px 0 rgba(189, 199, 215, 0.25);
  8. background-color: #ffffff;
  9. text-align: center;
  10. position: fixed;
  11. top: 0;
  12. z-index: 1;
  13. .body {
  14. margin: 0 auto;
  15. width: @content_width;
  16. height: 44px;
  17. line-height: 44px;
  18. position: relative;
  19. }
  20. .left {
  21. position: absolute;
  22. left: 0;
  23. top: 0;
  24. .assets {
  25. width: 131px;
  26. height: 24px;
  27. }
  28. }
  29. .center {
  30. text-align: center;
  31. .tabs {
  32. .tab {
  33. display: inline-block;
  34. margin: 0 8px;
  35. width: 96px;
  36. position: relative;
  37. text-align: center;
  38. font-size: 18px;
  39. color: #5E677BFF;
  40. font-weight: 400;
  41. }
  42. // .tab.active::after {
  43. // content: '';
  44. // width: 0;
  45. // height: 4px;
  46. // background: @theme_color;
  47. // transform: translateX(-50%);
  48. // transition: all 0.25s;
  49. // position: absolute;
  50. // bottom: 0;
  51. // left: 50%;
  52. // }
  53. .tab:hover {
  54. color: #57A4FEFF;
  55. }
  56. .tab.active {
  57. color: @theme_color;
  58. font-weight: 500;
  59. }
  60. // .tab.active::after {
  61. // width: 100%;
  62. // }
  63. }
  64. }
  65. .right {
  66. position: absolute;
  67. right: 0;
  68. top: 0;
  69. .button {
  70. font-size: 14px;
  71. padding: 5px 22px;
  72. line-height: 20px;
  73. }
  74. .info {
  75. line-height: 24px;
  76. .assets {
  77. margin-right: 5px;
  78. width: 24px;
  79. height: 24px;
  80. border-radius: 50%;
  81. }
  82. span {}
  83. }
  84. }
  85. }
  86. .ready #header,
  87. .question #header,
  88. .textbook #header,
  89. .main #header,
  90. .course #header {
  91. .body {
  92. width: 1200px;
  93. }
  94. }
  95. .header-user-overlay {
  96. background: #fff;
  97. box-shadow: 0px 4px 14px 0px rgba(189, 199, 215, 0.25);
  98. width: 180px;
  99. .list {
  100. cursor: pointer;
  101. .item {
  102. line-height: 14px;
  103. padding: 20px;
  104. border-bottom: 1px solid #D8D8D8FF;
  105. .assets {
  106. margin-right: 5px;
  107. path {
  108. fill: #303139FF !important;
  109. }
  110. }
  111. }
  112. .item.more-message {
  113. line-height: 16px;
  114. padding: 20px;
  115. path {
  116. fill: #4292F0FF !important;
  117. }
  118. }
  119. .item:last-child {
  120. border-bottom: none;
  121. }
  122. }
  123. }