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

theme1.css 2.1KB

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