Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.49 KB | None | 0 0
  1. header, section {
  2.     width: 700px;
  3.     margin: 0 auto;
  4.     font-weight: bold;
  5. }
  6.  
  7. header {
  8.     background-color: #000;
  9.     margin: 0 auto 10px auto;
  10. }
  11. code {
  12.     white-space:pre-wrap;
  13. }
  14.  
  15. li:after {
  16.     content: ' | '
  17. }
  18.  
  19. li:last-child:after {
  20.     content: ''
  21. }
  22.  
  23. dt {
  24.     float: left;
  25. }
  26. dd {
  27.     margin: 0 0 20px 150px;
  28.    
  29. }
  30.  
  31. dl {
  32.     margin: 20px 0;
  33. }
  34.  
  35. ul {
  36.     padding: 5px;
  37. }
  38. h1 {
  39.     padding: 10px;
  40.     color: #FFF;
  41.     font-size: 200%;
  42. }
  43. li {
  44.     display: inline;
  45. }
  46.  
  47. nav {
  48.     background-color: #999;
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement