Server IP : 51.89.169.208 / Your IP : 216.73.216.57 Web Server : Apache System : Linux ns3209505.ip-198-244-202.eu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Tue Nov 5 04:50:16 EST 2024 x86_64 User : yellowleaf ( 1019) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/yellowleaf/public_html/404/ |
Upload File : |
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap'); * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; } :root { --white: #FFF; --black: #000; --red: #d00303; --red-100: #b60202; --green: #07aa01; --yellow: #FFCC22; --yellow-100: #f0c020; --gray: #F5F5F5; --gray-100: #EEE; --gray-200: #CCC; --gray-500: #6D7280; --gray-800: #1e1e1e; } .btn { display: inline-block; padding: 8px 16px; text-decoration: none; background-color: transparent; outline: none; cursor: pointer; border: 2px solid transparent; transition: all .2s; font-weight: 600; text-transform: uppercase; font-size: 18px; } .btn-outline-white { color: var(--white); border-color: var(--white); } .btn-outline-white:hover { background-color: var(--white); color: var(--black); } .btn-yellow { background-color: var(--yellow); color: var(--black); } .btn-yellow:hover { background-color: var(--black); color: var(--white); } /* start: Error */ section { position: relative; min-height: 100vh; background-color: #20232D; } .bg-images { position: absolute; top: 16px; left: 16px; right: 16px; bottom: 16px; overflow: hidden; } .bg-images img { display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.2); opacity: 0; animation: fade 20s ease-in-out infinite; animation-delay: var(--i); } @keyframes fade { 0% { transform: scale(1.2); opacity: 0; } 5% { transform: scale(1.2); opacity: 1; } 20% { transform: scale(1); opacity: 1; } 25% { transform: scale(1); opacity: 0; } 100% { transform: scale(1); opacity: 0; } } .error-wrapper { position: relative; z-index: 10; width: 50%; padding: 20px 48px; background-color: rgba(0, 0, 0, .5); display: flex; align-items: center; justify-content: center; min-height: inherit; } .error-box { text-align: center; } .error-box h1 { font-size: 64px; font-weight: 600; text-transform: uppercase; color: var(--white); margin-bottom: 8px; } .error-box h1 span { color: var(--yellow); } .error-box p { font-size: 18px; color: var(--white); margin-bottom: 24px; } .error-buttons { display: flex; justify-content: center; flex-wrap: wrap; } .error-buttons > * { margin-right: 8px; margin-bottom: 8px; } .number-error { display: inline-block; transition: transform .2s; } .number-error.shake { transform: rotateZ(8deg); animation: shake .5s ease-in-out forwards; } @keyframes shake { 0% { transform: rotateZ(8deg); } 25% { transform: rotateZ(-8deg); } 50% { transform: rotateZ(8deg); } 75% { transform: rotateZ(-8deg); } 100% { transform: rotateZ(0deg); } } /* end: Error */ @media screen and (max-width: 991px) { .error-wrapper { width: 100%; } .bg-images { top: 0; left: 0; right: 0; bottom: 0; } }