Mishakis

abraDidyHelp_css

Dec 15th, 2020 (edited)
800
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.77 KB | None | 0 0
  1. * {
  2.     box-sizing: border-box;
  3. }
  4.  
  5. body {
  6.     color: rgba(22, 175, 236, 0.836);
  7.     font-family: Walsheim, Helvetica, sans-serif;
  8.     font-weight: 400;
  9.     font-size: 16px;
  10.     letter-spacing: .018em;
  11.     text-underline-position: under;
  12.     line-height: 1.45;
  13.     background-color: springgreen;
  14.     background: currentColor;
  15. }
  16.  
  17.  
  18. header {
  19.     display: flex;
  20.     justify-content: space-between;
  21.     align-items: center;
  22. }
  23.  
  24. header img {
  25.     width: 150px;
  26.     display: flex;
  27. }
  28.  
  29. .navBar {
  30.     display: flex;
  31.     flex: 2;
  32. }
  33.  
  34. .navBar ul {
  35.     display: flex;
  36.     flex: 1;
  37.     list-style-type: none;
  38.     justify-content: space-around;
  39.  
  40. }
  41.  
  42. .navBar ul li a {
  43.     display: flex;
  44.     justify-content: space-between;
  45.     text-decoration: none;
  46. }
  47.  
  48.  
  49. .topContainer {
  50.     display: flex;
  51.     justify-content: safe;
  52.     align-items: center;
  53.     width: 70%;
  54.     margin: 0 auto;
  55.     margin-top: 50px;
  56. }
  57.  
  58. .music-wave {
  59.     margin-left: 150px;
  60. }
  61.  
  62. .audio {
  63.     margin: 0;
  64.     padding: 0;
  65.     position: absolute;
  66.     left: 40px;
  67.     /* z-index: -1;*/
  68. }
  69.  
  70.  
  71. .bar {
  72.     width: 6px;
  73.     height: 60px;
  74.     background: white;
  75.     display: inline-block;
  76.     transform-origin: bottom center;
  77.     animation: loading 1.5s ease-in-out infinite;
  78. }
  79.  
  80. .bar1 {
  81.     animation-delay: 0.1s;
  82. }
  83.  
  84. .bar2 {
  85.     animation-delay: 0.2s;
  86. }
  87.  
  88. .bar3 {
  89.     animation-delay: 0.3s;
  90. }
  91.  
  92. .bar4 {
  93.     animation-delay: 0.4s;
  94. }
  95.  
  96. .bar5 {
  97.     animation-delay: 0.5s;
  98. }
  99.  
  100. .bar6 {
  101.     animation-delay: 0.6s;
  102. }
  103.  
  104. .bar7 {
  105.     animation-delay: 0.7s;
  106. }
  107.  
  108. .bar8 {
  109.     animation-delay: 0.8s;
  110. }
  111.  
  112. .bar9 {
  113.     animation-delay: 0.9s;
  114. }
  115.  
  116.  
  117. .bar10 {
  118.     animation-delay: 0.10s;
  119. }
  120.  
  121. @keyframes loading {
  122.     0% {
  123.         transform: scaleY(0.1);
  124.         background: rgba(227, 243, 7, 0.644);
  125.     }
  126.  
  127.     50% {
  128.         transform: scaleY(0.2);
  129.         background: rgba(243, 7, 204, 0.644);
  130.     }
  131.  
  132.     100% {
  133.         transform: scaleY(0.1);
  134.         background: transparent;
  135.     }
  136. }
Advertisement
Add Comment
Please, Sign In to add comment