Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- * {
- box-sizing: border-box;
- }
- body {
- color: rgba(22, 175, 236, 0.836);
- font-family: Walsheim, Helvetica, sans-serif;
- font-weight: 400;
- font-size: 16px;
- letter-spacing: .018em;
- text-underline-position: under;
- line-height: 1.45;
- background-color: springgreen;
- background: currentColor;
- }
- header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- header img {
- width: 150px;
- display: flex;
- }
- .navBar {
- display: flex;
- flex: 2;
- }
- .navBar ul {
- display: flex;
- flex: 1;
- list-style-type: none;
- justify-content: space-around;
- }
- .navBar ul li a {
- display: flex;
- justify-content: space-between;
- text-decoration: none;
- }
- .topContainer {
- display: flex;
- justify-content: safe;
- align-items: center;
- width: 70%;
- margin: 0 auto;
- margin-top: 50px;
- }
- .music-wave {
- margin-left: 150px;
- }
- .audio {
- margin: 0;
- padding: 0;
- position: absolute;
- left: 40px;
- /* z-index: -1;*/
- }
- .bar {
- width: 6px;
- height: 60px;
- background: white;
- display: inline-block;
- transform-origin: bottom center;
- animation: loading 1.5s ease-in-out infinite;
- }
- .bar1 {
- animation-delay: 0.1s;
- }
- .bar2 {
- animation-delay: 0.2s;
- }
- .bar3 {
- animation-delay: 0.3s;
- }
- .bar4 {
- animation-delay: 0.4s;
- }
- .bar5 {
- animation-delay: 0.5s;
- }
- .bar6 {
- animation-delay: 0.6s;
- }
- .bar7 {
- animation-delay: 0.7s;
- }
- .bar8 {
- animation-delay: 0.8s;
- }
- .bar9 {
- animation-delay: 0.9s;
- }
- .bar10 {
- animation-delay: 0.10s;
- }
- @keyframes loading {
- 0% {
- transform: scaleY(0.1);
- background: rgba(227, 243, 7, 0.644);
- }
- 50% {
- transform: scaleY(0.2);
- background: rgba(243, 7, 204, 0.644);
- }
- 100% {
- transform: scaleY(0.1);
- background: transparent;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment