Advertisement
Guest User

Untitled

a guest
Jun 28th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. html, body
  2. {
  3. width: 100%;
  4. height: 100%;
  5. font-family: 'Roboto', sans-serif;
  6. }
  7.  
  8. *
  9. {
  10. margin: 0;
  11. padding: 0;
  12. }
  13.  
  14. #area
  15. {
  16. width: 100%;
  17. height: 100%;
  18. background-color: orange;
  19. position: relative;
  20. }
  21.  
  22. #area nav
  23. {
  24. width: 200px;
  25. height: 400px;
  26. position: absolute;
  27. top: 0;
  28. bottom: 0;
  29. display: block;
  30. margin: auto;
  31. float: right;
  32. }
  33.  
  34. #area nav ul
  35. {
  36. height: 400px;
  37. width: 200px;
  38. }
  39.  
  40. #area nav ul li
  41. {
  42. list-style-type: none;
  43. display: block;
  44. width: 200px;
  45. height: 30px;
  46. line-height: 30px;
  47. text-align: left;
  48. text-indent: 10px;
  49. background-color: black;
  50. margin-top: 2px;
  51. }
  52.  
  53. #area nav ul li a
  54. {
  55. text-decoration: none;
  56. color: white;
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement