Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. body {
  2. color: #ddd;
  3. }
  4.  
  5. .datecolumn {
  6. width: 15%;
  7. }
  8.  
  9. .eventcolumn {
  10. width: 25%;
  11. }
  12.  
  13. .dutycolumn {
  14. width: 25%;
  15. }
  16.  
  17. .namecolumn {
  18. width: 35%;
  19. }
  20.  
  21.  
  22. /* The font styles to control the appearance of the text in each column */
  23.  
  24.  
  25. /* Use white-space:nowrap; to stop text from wrapping */
  26.  
  27. .datefont {
  28. font-size: x-small;
  29. color: #696969;
  30. font-family: Verdana;
  31. white-space: nowrap;
  32. }
  33.  
  34. .eventfont {
  35. font-size: x-small;
  36. color: #6495ed;
  37. font-family: Verdana;
  38. margin-left: 10px;
  39. }
  40.  
  41. .dutyfont {
  42. font-size: x-small;
  43. color: #ff6600;
  44. font-family: Verdana;
  45. margin-left: 10px;
  46. }
  47.  
  48. .namefont {
  49. font-size: x-small;
  50. color: #cc33cc;
  51. font-family: Verdana;
  52. margin-left: 10px;
  53. }
  54.  
  55.  
  56. /* These styles control the appearance and behaviour of the link to DutyMan */
  57.  
  58. A:link {
  59. font-size: xx-small;
  60. color: #0000ff;
  61. font-family: Verdana;
  62. text-decoration: none;
  63. }
  64.  
  65. A:active {
  66. font-size: xx-small;
  67. color: #0000ff;
  68. font-family: Verdana;
  69. text-decoration: none;
  70. }
  71.  
  72. A:visited {
  73. font-size: xx-small;
  74. color: #0000ff;
  75. font-family: Verdana;
  76. text-decoration: none;
  77. }
  78.  
  79. A:hover {
  80. font-size: xx-small;
  81. color: #0000ff;
  82. font-family: Verdana;
  83. text-decoration: underline;
  84. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement