Path: blob/main/page-not-found.css
6902 views
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap');1@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');23* {4margin: 0;5padding: 0;6}78body {9box-sizing: border-box;10font-family: 'Inter', sans-serif;11min-height: 100vh;12background: var(--bg)13}1415:is(:link, :visited, a, a:active, ul, li) {16color: inherit!important;17text-decoration: none;18}1920.header {21padding: 0.45em;22margin-bottom: 3em;23background: var(--ktTheme);24display: flex;25}2627.header a {28display: inline;29flex: 1 1 auto;30text-align: center;31color: #E8F0FE !important;32font-size: 18px;33font-weight: 800;34line-height: 1.2;35}3637h1.type {38font-size: clamp(1rem, 3vw + 1rem, 3rem);39font-family: 'Source Code Pro', monospace;40text-align: center;41margin: auto;42position: relative;43width: max-content;44color: white;45}4647h1.type::before,48h1.type::after {49content: '';50position: absolute;51top: 0;52right: 0;53bottom: 0;54left: 0;55}5657h1.type::before {58background: var(--bg);59animation: type var(--typeSpeed) steps(var(--ErrurlSteps)) var(--preWait) forwards;60}6162h1.type::after {63width: 0.125em;64background: var(--ktTheme);65animation: type var(--typeSpeed) steps(var(--ErrurlSteps)) var(--preWait) forwards,66blink var(--blinkSpeed) steps(var(--ErrurlSteps)) infinite;67}6869.subtitle {70color: var(--ktTheme)!important;71font-size: 2rem;72font-weight: 400;73margin: auto;74margin-top: 1em;75text-align: center;76opacity: 0;77transform: translateY(var(--YaxisDown));78animation: fadeUp 2s ease calc(var(--typeSpeed) + 1100ms) forwards;79}8081@keyframes type {82to {83left: 100%;84}85}8687@keyframes blink {88to {89background: transparent;90}91}9293@keyframes fadeUp {94to {95opacity: 1;96transform: translateY(0);97}98}99100dialog {101margin: auto;102margin-top: 1em;103}104105