1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- :global {
- .ant-dropdown .ant-dropdown-menu{
- width: 136px;
- background-image: linear-gradient( rgba(29, 57, 104, 0.83), rgba(4, 18, 52, 0.90));
- border: 1px solid rgba(40, 103, 179, 1);
- border-radius: 0;
- :last-child{
- border-bottom: 0;
- }
- }
- .ant-dropdown-menu-item {
- padding: 10px 12px !important;
- text-align: center;
- border-radius: 0 !important;
- border-bottom: 1px solid rgba(153, 231, 255, 0.40);
- }
- .ant-dropdown-menu-title-content{
- width: 82px;
- height: 26px;
- font-size: 16px;
- font-weight: 400;
- color: #D8E4E8;
- line-height: 26px;
- }
- }
- .TitleBar {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
-
-
- .TextMain {
- position: absolute;
- top: 25%;
- font-size: 14px;
- color: #c0f0ff;
- width: 100%;
- text-align: center;
- }
- .pageTitle {
- position: absolute;
- left: 0;
- width: calc((100vw - 830px) / 2);
- text-align: right;
- }
- .title {
- position: absolute;
- left: 50%;
- font-size: 28px;
- line-height: 30px;
- font-weight: 600;
- transform: translateX(-50%);
- background: linear-gradient(to bottom, #fff, #9ed6ff, #fff);
- -webkit-background-clip: text;
- color: transparent;
- -webkit-text-fill-color: transparent;
- // -webkit-text-stroke: 1px black;
- }
- .textRight {
- width: calc((100vw - 830px) / 2);
- position: absolute;
- right: 0;
- display: flex;
- justify-content: space-around;
- // margin: 0 38px 0 40px;
- .time {
- width: 35%;
- }
- .user {
- width: 24%;
- }
- .projectName {
- width: 56%;
- }
- .line {
- width: 1px;
- background: url('~@/Project/assets/titleBar/titleLine.png');
- background-size: 100% 100%;
- }
- }
- }
- .pageMain {
- padding: 20px;
- .addBtn {
- margin-bottom: 20px;
- }
- }
|