header.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. .wrapper {
  2. width: 100%;
  3. display: grid;
  4. grid-template-columns: 25px 18px auto 18px 25px;
  5. grid-auto-rows: 34px;
  6. border-bottom: 1px solid #e8e8e8;
  7. }
  8. .wrapper i {
  9. cursor: pointer;
  10. }
  11. .wrapper i:hover {
  12. color: #40a9ff;
  13. }
  14. .prev-year {
  15. margin-left: 7px;
  16. }
  17. .prev-year::after {
  18. content: '\AB';
  19. display: block;
  20. width: 100%;
  21. height: 100%;
  22. font-style: normal;
  23. line-height: 34px;
  24. text-align: center;
  25. color: rgba(0, 0, 0, 0.45);
  26. font-size: 16px;
  27. }
  28. .prev-month::after {
  29. content: '\2039';
  30. display: block;
  31. width: 100%;
  32. height: 100%;
  33. font-style: normal;
  34. line-height: 34px;
  35. text-align: center;
  36. color: rgba(0, 0, 0, 0.45);
  37. font-size: 16px;
  38. }
  39. .next-year {
  40. margin-right: 7px;
  41. }
  42. .next-year::after {
  43. content: '\BB';
  44. display: block;
  45. width: 100%;
  46. height: 100%;
  47. font-style: normal;
  48. line-height: 34px;
  49. text-align: center;
  50. color: rgba(0, 0, 0, 0.45);
  51. font-size: 16px;
  52. }
  53. .next-month::after {
  54. content: '\203A';
  55. display: block;
  56. width: 100%;
  57. height: 100%;
  58. font-style: normal;
  59. line-height: 34px;
  60. text-align: center;
  61. color: rgba(0, 0, 0, 0.45);
  62. font-size: 16px;
  63. }
  64. .text {
  65. font-weight: 500;
  66. line-height: 34px;
  67. text-align: center;
  68. }
  69. .link {
  70. display: inline-block;
  71. cursor: pointer;
  72. margin: 0 3px;
  73. letter-spacing: 1px;
  74. }
  75. .link:hover {
  76. color: #40a9ff;
  77. }