Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. *
  2. {
  3. margin: 0;
  4. padding: 0;
  5. }
  6.  
  7. header
  8. {
  9. background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(bag.jpg);
  10. height: 100vh;
  11. background-size: cover;
  12. background-position: center;
  13. }
  14.  
  15. .main-nav
  16. {
  17. float: right;
  18. list-style: none;
  19. margin-top: 30px;
  20. }
  21.  
  22. .main-nav li
  23. {
  24. display: inline-block;
  25. }
  26.  
  27. .main-nav li a
  28. {
  29. color: white;
  30. text-decoration: none;
  31. padding: 5px 20px;
  32. font-family: "Roboto", sans-serif;
  33. font-size: 15px;
  34. }
  35.  
  36. .main-nav li.active a
  37. {
  38. border: 1px solid white;
  39. }
  40.  
  41. .main-nav li a:hover
  42. {
  43. border: 1px solid white;
  44. }
  45.  
  46. .pic img
  47. {
  48. width: 150px;
  49. height: auto;
  50. float: left;
  51. }
  52.  
  53. body
  54. {
  55. font-family: monospace;
  56. }
  57.  
  58. .row
  59. {
  60. max-width: 1200px;
  61. margin: auto;
  62. }
  63.  
  64. .msg
  65. {
  66. position: absolute;
  67. width: 1200px;
  68. margin-left: 0px;
  69. margin-top: 0px;
  70. }
  71.  
  72. h1
  73. {
  74. color: white;
  75. text-decoration: none;
  76. font-size: 70px;
  77. text-align: center;
  78. margin-top: 275px;
  79. }
  80.  
  81. .button
  82. {
  83. margin-top: 30px;
  84. margin-left: 440px;
  85. }
  86.  
  87. .btn
  88. {
  89. border: 1px solid white;
  90. padding: 10px 30px;
  91. color: white;
  92. text-decoration: none;
  93. margin-right: 5px;
  94. font-size: 13px;
  95. text-transform: uppercase;
  96. }
  97.  
  98. .btn-one
  99. {
  100. font-family: "Roboto", sans-serif;
  101. }
  102.  
  103. .btn-one:hover
  104. {
  105. background-color: #00EFFF;
  106. transition: all 0.5s ease-in;
  107. }
  108.  
  109. .btn-two
  110. {
  111. font-family: "Roboto", sans-serif;
  112. }
  113.  
  114. .btn-two:hover
  115. {
  116. background-color: #00EFFF;
  117. transition: all 0.5s ease-in;
  118. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement