evenTime.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. #containerRight {
  2. padding:10px;
  3. }
  4. #list_dates {
  5. height:100px;
  6. overflow-x: auto;
  7. margin: 0;
  8. border-top: 1px dashed #289ecb;
  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: #289ecb;
  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: #289ecb;
  29. border: 1px solid #289ecb;
  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: #289ecb;
  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. }
  73. .dateSeed {
  74. text-align: center;
  75. font-weight:600;
  76. }
  77. .eventSeed {
  78. text-align: justify;
  79. font-size: 12px;
  80. }