Advertisement
Guest User

Untitled

a guest
Apr 12th, 2020
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.05 KB | None | 0 0
  1. * {
  2.   padding: 0;
  3.   margin: 0;
  4.   box-sizing: border-box;
  5.   font-family: "Merienda One", cursive;
  6. }
  7.  
  8. .header {
  9.   height: 100px;
  10.   width: 100%;
  11.   display: flex;
  12.   align-items: center;
  13.   background-color: white;
  14.   border-bottom: black solid;
  15.   border-width: 2px;
  16.   box-shadow: gray 0 0 10px;
  17. }
  18. .logo-container,
  19. .navigation {
  20.   flex: 1;
  21. }
  22.  
  23. .logo-container {
  24.   display: flex;
  25. }
  26. .logo-container .logo img {
  27.   height: 100px;
  28.   width: auto;
  29.   flex: 1;
  30. }
  31. .logo-container .logo-text h1 {
  32.   text-align: center;
  33.   font-weight: 100;
  34. }
  35. .logo-container .logo-text {
  36.   margin: auto 0px;
  37. }
  38.  
  39. .navigation {
  40.   list-style: none;
  41.   display: flex;
  42.   justify-content: space-evenly;
  43.   font-size: 18px;
  44. }
  45. .navigation li:hover {
  46.   font-size: 19px;
  47.   text-decoration: underline;
  48.   color: #ccc;
  49. }
  50. .navigation li a:hover {
  51.   color: #ccc;
  52. }
  53.  
  54. .navigation li a {
  55.   text-decoration: none;
  56.   color: black;
  57. }
  58. #bg {
  59.   position: fixed;
  60.   top: -50%;
  61.   left: -50%;
  62.   width: 200%;
  63.   height: 200%;
  64. }
  65. .body #videoBG {
  66.   position: fixed;
  67.   z-index: -1;
  68. }
  69. @media (min-aspect-ratio: 16/9) {
  70.   #videoBG {
  71.     width: 100%;
  72.     height: auto;
  73.   }
  74. }
  75.  
  76. @media (max-aspect-ratio: 16/9) {
  77.   #videoBG {
  78.     width: auto;
  79.     height: 100%;
  80.   }
  81. }
  82.  
  83. .body .Text span {
  84.   color: white;
  85.   border: white solid;
  86.   box-sizing: border-box;
  87.   text-transform: uppercase;
  88.   font-size: 40px;
  89.   font-family: "Sedgwick Ave";
  90.   padding: 20px 10px;
  91.   box-shadow: gray 0 0 10px;
  92. }
  93. .body .Text {
  94.   position: absolute;
  95.   top: 50%;
  96.   left: 50%;
  97.  
  98.   transform: translate(
  99.     -50%,
  100.     -50%
  101.   )
  102. }
  103.  
  104. .shop a {
  105.   padding: 20px 100px;
  106.   background-color: white;
  107.   box-shadow: gray 0 0 10px;
  108.   list-style: none;
  109.   text-decoration: none;
  110.   color: black;
  111.   opacity: 80%;
  112.   transition: 0.5s ease;
  113. }
  114. .shop {
  115.   position: absolute;
  116.   top: 70%;
  117.   left: 50%;
  118.  
  119.   transform: translate(
  120.     -50%,
  121.     -50%
  122.   )
  123. }
  124.  
  125. .shop a:hover {
  126.   background: #white;
  127.   box-shadow: none;
  128.   border: white solid;
  129.   color: black;
  130.   padding: 25px 115px;
  131.   box-shadow: gray 0 0 10px;
  132. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement