Advertisement
Guest User

Untitled

a guest
Jan 13th, 2015
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.89 KB | None | 0 0
  1. body
  2. {
  3.     background-color: black;
  4.     font-family: "Tribuchet MS", Arial, sans-serif;
  5. }
  6.  
  7. #bloc_page
  8. {
  9.     width: 100%;
  10.     margin: auto;
  11. }
  12.  
  13. section h1, footer h1, nav a
  14. {
  15.     font-family: Dayrom, serif;
  16.     font-weight: normal;
  17.     text-transform: uppercase;
  18. }
  19.  
  20. hr {
  21.     display: block;
  22.     margin-bottom: 0px;
  23.     margin-top: 0em;
  24.     margin-left: auto;
  25.     margin-right: auto;
  26.     border-style: inset;
  27.     border-width: 1px;
  28. }
  29.  
  30. #logo
  31. {
  32.     display: inline-block;
  33.     margin-bottom: 0px;
  34. }
  35.  
  36.  
  37. nav
  38. {
  39.     display: inline-block;
  40.     width: 100%;
  41.     text-align: right;
  42. }
  43.  
  44. nav ul
  45. {
  46.     list-style-type: none;
  47. }
  48.  
  49. nav li
  50. {
  51.     display: inline-block;
  52.     margin-right: 50px;
  53. }
  54.  
  55. nav a
  56. {
  57.     font-size: 1em;
  58.     color: white;
  59.     padding-bottom: 3px;
  60.     text-decoration: none;
  61. }
  62.  
  63. nav a:hover
  64. {
  65.     color: orange;
  66.     border-bottom: 3px solid #760001;
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement