Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1.  
  2. body
  3. {
  4. background: #fafbff;
  5. font-family: sans-serif;
  6. margin: 0;
  7. padding: 0;
  8. }
  9.  
  10. .box1
  11. {
  12. margin: auto;
  13. max-width: 900px;
  14. height: 100vh;
  15. }
  16. .header
  17. {
  18. display: flex;
  19. height: 100px;
  20. line-height: 100px;
  21. }
  22. .header > .logo
  23. {
  24. width: 250px;
  25. height: 100px;
  26. line-height: 100px;
  27. cursor: pointer;
  28.  
  29. }
  30. .header > .logo
  31. {
  32. background-image: url("logo.png");
  33. background-repeat: no-repeat;
  34. background-size: auto 80px;
  35. background-position: center;
  36. }
  37. .header > .menu
  38. {
  39. width: 700px;
  40. height: 100px;
  41. line-height: 100px;
  42. }
  43. .header > .menu > li
  44. {
  45. float: right;
  46. list-style-type: none;
  47. cursor: pointer;
  48. padding: 0 20px;
  49. }
  50. .header > .menu > li > span
  51. {
  52. color: #282e42;
  53. transition: 0.4s;
  54. font-size: 17px;
  55. padding: 10px 20px 10px;
  56. text-transform: uppercase;
  57. }
  58.  
  59. span:hover
  60. {
  61. background: #edc672;
  62. }
  63. .image
  64. {
  65. background: gray;
  66. height: 500px;
  67.  
  68. }
  69. .box2
  70. {
  71. max-width: 900px;
  72. height: 100vh;
  73. margin: 0 auto;
  74. background: gray;
  75. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement