index.less 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. :global {
  2. .ant-dropdown .ant-dropdown-menu{
  3. width: 136px;
  4. background-image: linear-gradient( rgba(29, 57, 104, 0.83), rgba(4, 18, 52, 0.90));
  5. border: 1px solid rgba(40, 103, 179, 1);
  6. border-radius: 0;
  7. :last-child{
  8. border-bottom: 0;
  9. }
  10. }
  11. .ant-dropdown-menu-item {
  12. padding: 10px 12px !important;
  13. text-align: center;
  14. border-radius: 0 !important;
  15. border-bottom: 1px solid rgba(153, 231, 255, 0.40);
  16. }
  17. .ant-dropdown-menu-title-content{
  18. width: 82px;
  19. height: 26px;
  20. font-size: 16px;
  21. font-weight: 400;
  22. color: #D8E4E8;
  23. line-height: 26px;
  24. }
  25. }
  26. .TitleBar {
  27. position: absolute;
  28. top: 0;
  29. left: 0;
  30. width: 100%;
  31. .TextMain {
  32. position: absolute;
  33. top: 25%;
  34. font-size: 14px;
  35. color: #c0f0ff;
  36. width: 100%;
  37. text-align: center;
  38. }
  39. .pageTitle {
  40. position: absolute;
  41. left: 0;
  42. width: calc((100vw - 830px) / 2);
  43. text-align: right;
  44. }
  45. .title {
  46. position: absolute;
  47. left: 50%;
  48. font-size: 28px;
  49. line-height: 30px;
  50. font-weight: 600;
  51. transform: translateX(-50%);
  52. background: linear-gradient(to bottom, #fff, #9ed6ff, #fff);
  53. -webkit-background-clip: text;
  54. color: transparent;
  55. -webkit-text-fill-color: transparent;
  56. // -webkit-text-stroke: 1px black;
  57. }
  58. .textRight {
  59. width: calc((100vw - 830px) / 2);
  60. position: absolute;
  61. right: 0;
  62. display: flex;
  63. justify-content: space-around;
  64. // margin: 0 38px 0 40px;
  65. .time {
  66. width: 35%;
  67. }
  68. .user {
  69. width: 24%;
  70. }
  71. .projectName {
  72. width: 56%;
  73. }
  74. .line {
  75. width: 1px;
  76. background: url('~@/Project/assets/titleBar/titleLine.png');
  77. background-size: 100% 100%;
  78. }
  79. }
  80. }
  81. .pageMain {
  82. padding: 20px;
  83. .addBtn {
  84. margin-bottom: 20px;
  85. }
  86. }