evenTime.css 2.1 KB

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