Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. list-style: none;
  5. text-decoration: none;
  6. }
  7.  
  8. .header {
  9. width: 100%;
  10. height: 80px;
  11. display: block;
  12. background: #101010;
  13. }
  14.  
  15. .inner_header {
  16. width: 1000px;
  17. height: 100%;
  18. display: block;
  19. margin: 0 auto;
  20. }
  21.  
  22. .logo_container {
  23. height: 100%;
  24. display: table;
  25. float: left;
  26. }
  27.  
  28. .logo_container h1 {
  29. color: white;
  30. height: 100%;
  31. display: table-cell;
  32. vertical-align: middle;
  33. font-family: 'Montserrat';
  34. font-size: 32px;
  35. font-weight: 200;
  36. }
  37.  
  38. .logo_container h1 span {
  39. font-weight: 800;
  40. }
  41.  
  42. .navigation {
  43. float: right;
  44. height: 100%;
  45. }
  46.  
  47. .navigation a {
  48. height: 100%;
  49. display: table;
  50. float: left;
  51. padding: 0px 20px;
  52. }
  53.  
  54. .navigation a:last-child {
  55. padding-right: 0;
  56. }
  57.  
  58. .navigation a li {
  59. display: table-cell;
  60. vertical-align: middle;
  61. height: 100%;
  62. color: white;
  63. font-family: 'Montserrat';
  64. font-size: 16px;
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement