evenTime.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. #list_dates {
  2. height: 100px;
  3. overflow-x: auto;
  4. overflow-y: hidden;
  5. margin: 0;
  6. border-top: 1px solid #b61924;
  7. }
  8. #list_dates ul {
  9. list-style: none;
  10. padding: 0;
  11. margin: 0;
  12. }
  13. #list_dates li div {
  14. width: 50px;
  15. height: 50px;
  16. margin: auto;
  17. background: #b61924;
  18. color: #fff;
  19. padding-top: 15px;
  20. border-radius: 1000px;
  21. transition: 0.6s ease;
  22. margin-top: 15px;
  23. }
  24. #list_dates li div:hover {
  25. background-color: #fff;
  26. color: #b61924;
  27. border: 1px solid #b61924;
  28. }
  29. #list_dates .date div {
  30. padding-top: 18px;
  31. }
  32. #list_dates ul li:before {
  33. content: "";
  34. width: 4px;
  35. height: 4px;
  36. position: absolute;
  37. left: 50%;
  38. margin-left: -2px;
  39. background: #b61924;
  40. border-radius: 1000px;
  41. }
  42. .event {
  43. padding-top: 15px;
  44. padding-bottom: 15px;
  45. font-size: 15px;
  46. }
  47. .event_days:hover {
  48. -ms-transform: scale(1.5);
  49. -webkit-transform: scale(1.5);
  50. transform: scale(1.5);
  51. }
  52. .event_days {
  53. width: 70px;
  54. height: 70px;
  55. position: absolute;
  56. float: left;
  57. cursor: pointer;
  58. margin-right: 1rem;
  59. text-align: center;
  60. transition: all 0.4s ease;
  61. }
  62. .year {
  63. font-size: 14px;
  64. }
  65. .date {
  66. font-size: 8px;
  67. }
  68. .yearSeed {
  69. text-align: center;
  70. color: #b61924;
  71. }
  72. .dateSeed {
  73. text-align: center;
  74. font-weight: 600;
  75. }
  76. .eventSeed {
  77. text-align: justify;
  78. margin: 10px 15px 10px 20px;
  79. }
  80. #backToAnni {
  81. background-color: #fff;
  82. color: #b61924;
  83. border: 1px solid #b61924;
  84. margin-bottom: 15px;
  85. margin-top: 15px;
  86. }
  87. #backToAnni:hover {
  88. background-color: #b61924;
  89. color: #fff;
  90. border: 1px solid #b61924;
  91. }
  92. #lemma_buttons {
  93. margin-bottom: 30px;
  94. margin-top: -5px;
  95. }
  96. #lemma_buttons button {
  97. color: #30383f;
  98. font-size: 15px;
  99. }
  100. #lemma_buttons button .fa {
  101. margin-right: 5px;
  102. }
  103. .geo-text {
  104. font-size: 14px;
  105. margin: 6px 0;
  106. padding-right: 0;
  107. }
  108. .geo-text i {
  109. margin-left: 3px;
  110. }
  111. .geo-text:hover {
  112. text-decoration: underline;
  113. }
  114. .highlight {
  115. background-color: yellow;
  116. font-weight: bold;
  117. }