Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. *{
  2. margin: 0px;
  3. padding: 0px;
  4. box-sizing: border-box;
  5. }
  6. body{
  7. font-size: 20px;
  8. overflow-x: hidden;
  9. }
  10. header{
  11. background-image: linear-gradient(rgba(0,0,0.2),rgba(0,0,0.2))
  12. background-size: cover;
  13. background-repeat: no-repeat;
  14. height: 100vh;
  15. }
  16. .clearfix: after{
  17. content: ".";
  18. visibility: hidden;
  19. display: block;
  20. height: 0px;
  21. clear:both;
  22. }
  23. .row{
  24. max-width: 1180px;
  25. margin: 0 auto;
  26. }
  27. .logo{
  28. height: 120px;
  29. width: auto;
  30. float: left;
  31. margin-top: 20px;
  32. }
  33. .main-nav{
  34. float: right;
  35. margin-top: 60px;
  36. }
  37. .main-nav li{
  38. display: inline-block;
  39. list-style: none;
  40. margin-left: 40px;
  41. }
  42. .main-nav li a{
  43. color: #fff;
  44. text-decoration: none;
  45. text-transform: uppercase;
  46. font-size: 90%;
  47. font-weight: 100;
  48. }
  49. .main-content-header{
  50. width: 1180px;
  51. position: absolute;
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement