Advertisement
Mhazard

CSS Practice - Calendar

Sep 4th, 2017
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.63 KB | None | 0 0
  1. th {
  2.     background-color: #96AEB5;
  3. }
  4.  
  5. td {
  6.     height: 40px;
  7.  
  8.     border-style: solid;
  9.     border-width: thin;
  10.     border-color: #a0a0a0;
  11.  
  12.     text-align: right;
  13.     vertical-align: top;
  14. }
  15.  
  16.  
  17. background {
  18. }
  19.  
  20. h1 {
  21.     color: #ff5577
  22. }
  23.  
  24. p {
  25.     color: #224488
  26. }
  27.  
  28.  
  29. caption {
  30.     color: #cc00cc;
  31.     text-transform: uppercase;
  32.  
  33.     font-family: Arial;
  34.     font-weight: 900;
  35. }
  36.  
  37. table {
  38.     border-collapse: collapse;
  39. }
  40.  
  41. <td class='sundays'>3</td>
  42.  
  43. .sundays {
  44.     color : #aa0000;
  45. }
  46.  
  47. #bookmark {
  48.     text-align: center;
  49. }
  50.  
  51. #img1 {
  52.     float: right;
  53. }
  54.  
  55. #span1 {
  56.     display: block;
  57.     clear: both;
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement