Advertisement
Guest User

Untitled

a guest
Apr 28th, 2010
702
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.59 KB | None | 0 0
  1. .calBox {
  2.  
  3.   background-color: #DFE8F6;
  4.  
  5.   padding: 2px;
  6.  
  7.   -moz-border-radius: 4px;
  8.  
  9.   text-align: center;
  10.  
  11.   color: #3E576F;
  12.   border: 1px solid #b2c2db;
  13.  
  14. }
  15.  
  16.  
  17.  
  18. .calElement {
  19.  
  20.   margin: 1px;
  21.  
  22.   display: inline-block;
  23.  
  24.   overflow:hidden;
  25.  
  26. }
  27.  
  28.  
  29.  
  30. .calYear {
  31.  
  32.   font-size: 12px;
  33.  
  34.   border-bottom: 1px dashed #c1cfe6;
  35.  
  36.   padding-bottom: 5px;
  37.  
  38.   margin-bottom: 5px
  39.  
  40. }
  41.  
  42.  
  43.  
  44. .calYear .calElement {
  45.  
  46.   border: 1px solid #c1cfe6;
  47.  
  48. }
  49.  
  50.  
  51.  
  52. .calMonth {
  53.  
  54.   border-bottom: 1px dashed #c1cfe6;
  55.  
  56.   padding-bottom: 5px;
  57.  
  58.   margin-bottom: 5px;
  59.  
  60. }
  61.  
  62.  
  63.  
  64. .calMonth .calElement {
  65.  
  66.   font-size: 12px;
  67.  
  68.   border: 1px solid #c1cfe6;
  69.  
  70. }
  71.  
  72.  
  73.  
  74. .calDay {
  75.  
  76. }
  77.  
  78.  
  79.  
  80. .calDay .calElement {
  81.  
  82.   font-size: 10px;
  83.  
  84.   border: 1px solid #c1cfe6;
  85.  
  86. }
  87.  
  88.  
  89.  
  90. .calDay .calElement.prev {
  91.  
  92.   background: transparent url(images/prev.png) no-repeat 0 18px;
  93.  
  94.   width: 6px;
  95.  
  96.   height: 35px
  97.  
  98. }
  99.  
  100.  
  101.  
  102. .calDay .calElement.next {
  103.  
  104.   background: transparent url(images/next.png) no-repeat 0 18px;
  105.  
  106.   width: 6px;
  107.  
  108.   height: 35px;
  109.  
  110. }
  111.  
  112.  
  113.  
  114. span.calElement.next:hover, span.calElement.prev:hover {
  115.  
  116.   border: 1px solid #eee;
  117.  
  118.   cursor: pointer;
  119.  
  120. }
  121.  
  122.  
  123.  
  124. .calDay .calElement .dayNumber {
  125.  
  126.   font-size: 12px;
  127.  
  128. }
  129.  
  130.  
  131.  
  132.  
  133.  
  134. .calElement.selected {
  135.  
  136.   background-color: #c1cfe6;
  137.  
  138.   border: 1px solid #b2c2db;
  139.  
  140.   -moz-border-radius: 3px
  141.  
  142. }
  143.  
  144.  
  145.  
  146. span.calElement:hover {
  147.  
  148.   background-color: #c1cfe6;
  149.  
  150.   border: 1px solid #b2c2db;
  151.  
  152.   -moz-border-radius: 3px;
  153.  
  154.   cursor: pointer;
  155.  
  156. }
  157.  
  158.  
  159.  
  160. .calElement.today {
  161.  
  162.   border: 1px solid #b2c2db;
  163.  
  164.   -moz-border-radius: 3px
  165.  
  166. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement