One Hat Cyber Team
Your IP :
216.73.216.62
Server IP :
122.155.17.190
Server :
Linux cat17190.thaihostserver.com 5.10.0-21-amd64 #1 SMP Debian 5.10.162-1 (2023-01-21) x86_64
Server Software :
Apache/2
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
neunkho
/
public_html
/
css2
/
View File Name :
text-an.css
/* CSS Document */ /* Basic styles */ *, *::before, *::after { box-sizing: border-box; } :root{ --bg-color: #70DFB4; } body { display: flex; align-items: center; justify-content: center; overflow: hidden; font-family: 'Maitree', serif; } h1{ font-size: 1.5em; font-weight: normal; } /* title styles */ .home-title span{ position: relative; overflow: hidden; line-height: 1.2; } .home-title span::after{ content: ''; position: absolute; top: 0; right: 0; width: 120%; height: 100%; background: #70DFB4; animation: a-ltr-after 2s cubic-bezier(.77,0,.18,1) forwards; transform: translateX(-101%); } .home-title span::before{ content: ''; position: absolute; top: 0; right: 0; width: 100%; height: 100%; background: var(--bg-color); animation: a-ltr-before 2s cubic-bezier(.77,0,.18,1) forwards; transform: translateX(0); } .home-title span:nth-of-type(1)::before, .home-title span:nth-of-type(1)::after{ animation-delay: 1s; } .home-title span:nth-of-type(2)::before, .home-title span:nth-of-type(2)::after{ animation-delay: 1.5s; } @keyframes a-ltr-after{ 0% {transform: translateX(-100%)} 100% {transform: translateX(101%)} } @keyframes a-ltr-before{ 0% {transform: translateX(0)} 100% {transform: translateX(200%)} }