Advertisement
Guest User

CSS

a guest
Jul 9th, 2015
2,230
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.  
  3. color: green;
  4. font-family: Verdana, Arial, Geneva, Arial Black;
  5. font-weight: normal;
  6. background-color: #ffcf79;
  7. font-size: 25px;
  8.  
  9. }
  10.  
  11. h1 {
  12.  
  13. color: green;
  14. text-decoration: underline;
  15. font-size: 150%;
  16. text-align: center;
  17. }
  18.  
  19. h2 {
  20.  
  21. color: green;
  22. text-decoration: underline;
  23. font-size: 1.2em;
  24. text-align: center;
  25. }
  26.  
  27. h3 {
  28.  
  29. color: green;
  30. text-decoration: underline;
  31.  
  32. }
  33.  
  34. #para1homepage {
  35.  
  36. color: blue;
  37.  
  38. }
  39.  
  40.  
  41.  
  42. p.paragraph {
  43.  
  44.  
  45. font-size: 15px;
  46. line-height: 1.5em;
  47. background-color: #e5e4d7;
  48. Padding: 20px 20px 20px 20px;
  49. border: black 2px solid;
  50. background-image: url(clouds.gif);
  51. border-radius: 10px;
  52.  
  53.  
  54. }
  55.  
  56. #para4homepage {
  57.  
  58.  
  59. font-size: 15px;
  60. line-height: 1.5em;
  61. background-color: #e5e4d7;
  62. padding: 20px;
  63. border-color: #296A64;
  64. border-width: thick;
  65. border-style: ridge
  66. ;
  67. margin: 20px;
  68. margin-top:50px;
  69. margin-left:400px;
  70.  
  71. }
  72.  
  73. img.image {
  74.  
  75. display: block;
  76. text-align:center;
  77. margin-left: auto;
  78. margin-right: auto;
  79. padding: 3px;
  80. background-color: silver;
  81. border-color: black;
  82. border-width: 2px;
  83. border-style: solid;
  84. }
  85.  
  86. #divmain {
  87.  
  88. color: black;
  89.  
  90. }
  91.  
  92. #divbass {
  93.  
  94. color: black;
  95.  
  96. }
  97.  
  98. .divcontent {
  99.  
  100. color: black;
  101.  
  102. }
  103.  
  104. .highlight {
  105.  
  106. background-color: #ffff00;
  107.  
  108. }
  109.  
  110. a:link {
  111.  
  112. color: blue;
  113.  
  114. }
  115.  
  116. a:visited {
  117.  
  118. color: #8C8c9D;
  119.  
  120. }
  121.  
  122. a:hover {
  123.  
  124. color: #F15A51;
  125.  
  126. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement