diff --git a/proj/y2t/assets/css/style.css b/proj/y2t/assets/css/style.css index 9f19865..60143cf 100644 --- a/proj/y2t/assets/css/style.css +++ b/proj/y2t/assets/css/style.css @@ -53,7 +53,6 @@ section.input select, section.input input[type=text] { } - /* Loading screen */ div.loading { @@ -69,9 +68,9 @@ div.loading { } div.loading span { - width: 2rem; - height: 2rem; - margin: 0 5px; + width: 1rem; + height: 1rem; + margin-left: 20px; background-color: var(--white); border-radius: 50%; display: inline-block; @@ -79,20 +78,24 @@ div.loading span { animation-duration: 2s; animation-iteration-count: infinite; animation-timing-function: ease-in-out; + margin-top: 23px; } +div.loading span:nth-child(1){ + animation-delay: 0s; +} + div.loading span:nth-child(2){ animation-delay: 0.4s; } div.loading span:nth-child(3){ - animation-delay: 0.8s; + animation-delay: 1.2s; } @keyframes dots{ 50%{ - opacity: 0; - transform: scale(0.7) translate(10px); + opacity: 0.2; + transform: scale(0.4) translate(1px); } -} - +} \ No newline at end of file