IvoSilva

[LTW] Exercício 1 de CSS (style1.css)

Oct 4th, 2014
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.55 KB | None | 0 0
  1. html
  2. {
  3.   background-color: #ddddff;
  4. }
  5.  
  6. body
  7. {
  8.   width: 800px;
  9.   margin-left: auto;
  10.   margin-right: auto;
  11.   background-color: white;
  12. }
  13.  
  14. *
  15. {
  16.   margin: 0px;
  17.   padding: 0px;
  18. }
  19.  
  20. #header
  21. {
  22.   border: 30px solid grey;
  23.   background-color: grey;
  24.   color: white;
  25.   font-family: "Tahoma", Times, sans;
  26. }
  27.  
  28. #menu
  29. {
  30.   color: white;
  31.   background-color: #2B1B17;
  32.   border: 5px solid #2B1B17;
  33.   line-height: 30px ;
  34. }
  35.  
  36. #menu a:visited
  37. {
  38.   color:white;
  39.   text-decoration: none;
  40. }
  41.  
  42. #menu a:link
  43. {
  44.   text-decoration: none;
  45. }
  46.  
  47. #menu a:hover
  48. {
  49.   text-decoration: underline;
  50. }
  51.  
  52. #menu li
  53. {
  54.   display: inline;
  55. }
  56.  
  57. #menu ul
  58. {
  59.   margin-left: 5px;
  60. }
  61.  
  62. #menu li+li:before
  63. {
  64.   content: " | ";
  65. }
  66.  
  67. #content
  68. {
  69.   border: 10px solid white;
  70. }
  71.  
  72. #content h3
  73. {
  74.   font-family: "Tahoma", Times, sans;
  75.   font-weight: bold;
  76.   font-size: 30px;
  77.   height: 45px;
  78. }
  79.  
  80. #content img
  81. {
  82.   border-right: 10px solid white;
  83.   float:left;
  84. }
  85.  
  86. #content p
  87. {
  88.   border: 10px solid white;
  89.   font-family: "Times New Roman", Times, sans;
  90. }
  91.  
  92. #content li
  93. {
  94.   display: inline;
  95.   background-color: grey;
  96.   height: 30px;
  97.   line-height: 30px;
  98.   border: 5px solid grey;
  99.   font-family: "Times New Roman", Times, sans;
  100. }
  101.  
  102. #content ul
  103. {
  104.   margin-bottom: 5px;
  105. }
  106.  
  107. #content li a:link
  108. {
  109.   color: white;
  110.   text-decoration: none;
  111. }
  112.  
  113. #content li a:visited
  114. {
  115.   color: white;
  116.   text-decoration: none;
  117. }
  118.  
  119. .introduction
  120. {
  121.   font-style: italic;
  122.   font-size: 16px;
  123. }
  124.  
  125. .news-item
  126. {
  127.   border-bottom: 1px solid black;
  128. }
Advertisement
Add Comment
Please, Sign In to add comment