header_content.less 760 B

12345678910111213141516171819202122232425262728293031
  1. @import '../theme.less';
  2. .headerContent {
  3. background-image: url("../../../../assets/bigscreen/head.png");
  4. background-repeat: no-repeat;
  5. background-size: cover;
  6. background-position: center;
  7. text-align: center;
  8. font-size: @font-title-main;
  9. position: relative;
  10. .headerContentTitle {
  11. line-height: 200px;
  12. font-size: @font-title-main;
  13. font-weight: bold;
  14. color: #00c6ff;
  15. text-shadow: 0 2px 8px rgba(0, 198, 255, 0.3);
  16. }
  17. .headerContentTime {
  18. position: absolute;
  19. bottom: 0px;
  20. right: 100px;
  21. font-size: @font-title-sub;
  22. background: linear-gradient(90deg, #00c6ff, #0072ff);
  23. -webkit-background-clip: text;
  24. -webkit-text-fill-color: transparent;
  25. background-clip: text;
  26. color: transparent;
  27. }
  28. }