Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

theme2.css 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. .cld-main{
  2. width: 200px;
  3. text-align: center;
  4. }
  5. .cld-main a{
  6. color: #0080FF;
  7. }
  8. .cld-main svg{
  9. fill: #0080FF;
  10. }
  11. .cld-datetime{
  12. position: relative;
  13. width: 66%;
  14. min-width: 100px;
  15. max-width: 300px;
  16. margin: auto;
  17. overflow: hidden;
  18. }
  19. .cld-datetime .today{
  20. position: relative;
  21. float: left;
  22. width: calc(100% - 40px);
  23. margin: auto;
  24. text-align: center;
  25. }
  26. .cld-nav{
  27. position: relative;
  28. width: 20px;
  29. height: 20px;
  30. margin-top: 2px;
  31. }
  32. .cld-nav:hover{
  33. cursor: pointer;
  34. }
  35. .cld-nav:hover svg{
  36. fill: #005EFF;
  37. }
  38. .cld-rwd{
  39. float: left;
  40. }
  41. .cld-fwd{
  42. float: right;
  43. }
  44. .cld-nav svg:hover{
  45. }
  46. .cld-labels, .cld-days{
  47. padding-left: 0;
  48. }
  49. .cld-label, .cld-day{
  50. box-sizing: border-box;
  51. display: inline-block;
  52. width: 14.28%;
  53. text-align: center;
  54. }
  55. .cld-day{
  56. border: 1px solid #eee;
  57. }
  58. .cld-day.today .cld-number{
  59. background: #0080FF;
  60. color: #fff;
  61. }
  62. .cld-day.disableDay{
  63. opacity: 0.5;
  64. }
  65. .cld-day.nextMonth, .cld-day.prevMonth{
  66. opacity: 0.33;
  67. }
  68. .cld-number{
  69. position: relative;
  70. margin: 0;
  71. padding: 10px;
  72. }
  73. .cld-title{
  74. position: absolute;
  75. z-index: 5;
  76. display: none;
  77. top: 35px;
  78. left: 0;
  79. padding: 5px 10px;
  80. background: #fff;
  81. white-space: nowrap;
  82. border: 1px solid #ccc;
  83. border-radius: 5px;
  84. font-size: 12px;
  85. }
  86. .cld-number:hover .cld-title{
  87. display: block;
  88. }
  89. .cld-title::before{
  90. content: '';
  91. position: absolute;
  92. top: -7.5px; left: 10px;
  93. width: 0;
  94. height: 0;
  95. border-left: 7.5px solid transparent;
  96. border-right: 7.5px solid transparent;
  97. border-bottom: 7.5px solid #ccc;
  98. }
  99. .cld-number.eventday{
  100. font-weight: bold;
  101. color: #0080FF;
  102. }
  103. .cld-number.eventday:hover{
  104. cursor: pointer;
  105. background: #eee;
  106. }
  107. .today .cld-number.eventday:hover{
  108. background: #005EFF;
  109. }