Sayukoo

ZAD 6 CSS

Dec 18th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.69 KB | None | 0 0
  1. header
  2. {
  3.     border:1 px solid black;
  4.     background-color:#F15F12;
  5.     font-family: sans-serif;
  6.     padding:1em;
  7.     }
  8.  
  9. header h1
  10. {
  11.     font-variant: small-caps;
  12.     color: blue;
  13.     padding:0px;
  14.     margin:0px;
  15. }
  16.  
  17. header h2
  18. {
  19.    
  20.     color:green;
  21.     font-style:italic;
  22. }
  23.  
  24. nav
  25. {
  26.     border:1px solid black;
  27.     width:35%;
  28.     float:left;
  29. }
  30.  
  31. nav ul
  32. {
  33.     font-size:150%;
  34.     list-style-type:none;
  35.     padding:0px;
  36.     margin:0px;
  37. }
  38. nav li a
  39. {
  40.     text-decoration:none;
  41.     display:block;
  42. }
  43. nav li a:hover
  44. {
  45.     background-color:black;
  46.     color:yellow;
  47.    
  48. }
  49.  
  50.  
  51. section
  52. {
  53.     width:30%;
  54.     float:left;
  55.  
  56. }
  57.  
  58.  
  59. footer
  60. {
  61.     background-color:fuchsia;
  62.     text-align:center;
  63.     clear:both;
  64.     position:fixed 0px;
  65. }
  66.  
  67. footer a
  68. {
  69.    
  70.    
  71. }
Add Comment
Please, Sign In to add comment