CoolFace
Apppublic

DataScope26/WEB

sourceHugging Faceupdated 7d agoView on Hugging Face
0likes
NotFound.css65 linesDownload Raw Back to pages
1.not-found {2  min-height: calc(100vh - 5.5rem);3  padding: 8.75rem 1.5rem 5rem;4  display: flex;5  align-items: center;6  justify-content: center;7  background: var(--bg);8  color: var(--color-text);9  text-align: center;10  font-family: -apple-system, BlinkMacSystemFont, var(--font-body), Roboto, Helvetica, Arial, sans-serif;11}12 13.not-found__content {14  width: min(100%, 45rem);15  padding: 2.5rem;16  background: var(--surface);17  border: 0.0625rem solid var(--color-border);18  border-radius: 1rem;19  box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.12);20}21 22.not-found h1 {23  font-family: var(--font-body);24  font-size: clamp(2.6rem, 5vw, 4rem);25  margin-bottom: 1.125rem;26  letter-spacing: -0.04em;27}28 29.not-found p {30  margin: 0 auto 2.25rem;31  max-width: 38.75rem;32  font-size: 1.05rem;33  line-height: 1.85;34  color: var(--muted);35}36 37.not-found a {38  display: inline-flex;39  align-items: center;40  justify-content: center;41  padding: 0.75rem 1.75rem;42  border-radius: 0.75rem;43  background: var(--green);44  color: var(--cta-text);45  font-weight: 500;46  text-decoration: none;47  transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;48}49 50.not-found a:hover {51  opacity: 0.95;52  transform: translateY(-0.125rem);53  box-shadow: 0 0 2.25rem rgba(46, 232, 138, 0.18);54}55 56@media (max-width: 42.5rem) {57  .not-found {58    padding: 7.5rem 1rem 2.5rem;59  }60 61  .not-found__content {62    padding: 2rem;63  }64}65