onefuckingmin

calendar 1

Jan 4th, 2015
1,796
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.49 KB | None | 0 0
  1. /** copy this code and paste after <head> **/
  2.  
  3. <link href='http://fonts.googleapis.com/css?family=Quicksand' rel='stylesheet' type='text/css'>
  4.  
  5. /** copy this code and paste before </style> **/
  6.  
  7. #box {
  8.     margin-top:20px;
  9.     margin-left:20px;
  10.     width:auto;
  11.     height:auto;
  12.     padding:10px;
  13.     border:1px solid #eeeeee; /** change box border color **/
  14.     position:fixed;
  15.     background-color:#ffffff; /** change box background color **/
  16.     }
  17.  
  18.  
  19. #month {
  20.     width:110px;
  21.     height:auto;
  22.     text-align:center;
  23.     display:block;
  24.     padding:5px;
  25.     color:#888888; /** change text color **/
  26.     font-family: 'Quicksand', sans-serif;
  27.     font-size:8px;
  28.     letter-spacing:0.5px;
  29.     text-transform:uppercase;
  30.     background-color:#f6f6f6;  /** change background color **/
  31.     box-shadow:0px 0px 0px 0px #ebeff1 inset;  /** change background color hover **/
  32.     -webkit-transition: all .5s linear;
  33.     -moz-transition: all .5s linear;
  34.     -o-transition: all .5s linear;
  35.     -ms-transition: all .5s linear;
  36.     transition: all .5s linear;
  37.     }
  38.  
  39.  
  40.  
  41. #month:hover {
  42.     cursor:help;
  43.     color:#ffffff;  /** change text color hover **/
  44.     box-shadow:0px 100px 0px 0px #ebeff1 inset; /** change background color hover **/
  45.     -webkit-transition: all .5s linear;
  46.     -moz-transition: all .5s linear;
  47.     -o-transition: all .5s linear;
  48.     -ms-transition: all .5s linear;
  49.     transition: all .5s linear;
  50.     }
  51.  
  52. #rain {
  53.     color:#888888; /** change text color **/
  54.     font-family: 'Quicksand', sans-serif;
  55.     font-size:7px;
  56.     margin-left:3px;
  57.     text-transform:uppercase;
  58.     background-color:transparent;
  59.     margin-top:5px;
  60.     }
  61.  
  62. /** copy this code and paste after <body> **/
  63.  
  64. <div id="box">
  65. <div id="month">
  66. January
  67. </div>
  68. <div id="rain">
  69. <table style width="100" cellpadding="2" cellspacing="2">
  70.  
  71. <tr>
  72. <td></td>
  73. <td></td>
  74. <td></td>
  75. <td></td>
  76. <td></td>
  77. <td></td>
  78. <td></td>
  79. </tr>
  80.  
  81. <tr>
  82.  
  83. <td></td>
  84. <td></td>
  85. <td></td>
  86. <td></td>
  87. <td>01</td>
  88. <td>02</td>
  89. <td>03</td>
  90.  
  91. </tr>
  92.  
  93. <tr>
  94. <td>04</td>
  95. <td>05</td>
  96. <td>06</td>
  97. <td>07</td>
  98. <td>08</td>
  99. <td>09</td>
  100. <td>10</td>
  101. </tr>
  102. <tr>
  103. <td>11</td>
  104. <td>12</td>
  105. <td>13</td>
  106. <td>14</td>
  107. <td>15</td>
  108. <td>16</td>
  109. <td>17</td>
  110. </tr>
  111. <tr>
  112. <td>18</td>
  113. <td>19</td>
  114. <td>20</td>
  115. <td>21</td>
  116. <td>22</td>
  117. <td>23</td>
  118. <td>24</td>
  119. </tr>
  120. <tr>
  121. <td>25</td>
  122. <td>26</td>
  123. <td>27</td>
  124. <td>28</td>
  125. <td>29</td>
  126. <td>30</td>
  127. <td>31</td>
  128. </tr>
  129.  
  130.  
  131. </table>
  132.  
  133. </div>
  134. </div>
Add Comment
Please, Sign In to add comment