serv4rs 0.1.7

serv4rs is a powerful, pragmatic, and extremely fast web framework for Rust
Documentation

/*
  Made by Elly Loel - https://ellyloel.com/
*/
* {
    margin: 0;
    padding: 0;
    line-height: calc(0.25rem + 1em + 0.25rem)
}

*,
::before,
::after {
    box-sizing: border-box;
}

html {
    block-size: 100%;
    -webkit-text-size-adjust: none
}

@media (prefers-reduced-motion:no-preference) {
    html:focus-within {
        scroll-behavior: smooth
    }
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
    min-block-size: 100%
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
    display: block
}

:where(img, svg, video) {
    block-size: auto;
    max-inline-size: 100%
}

:where(svg):where(:not([fill])) {
    stroke: currentColor;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round
}

:where(textarea) {
    resize: vertical
}

@supports (resize:block) {
    :where(textarea) {
        resize: block
    }
}

:where(p, h1, h2, h3, h4, h5, h6) {
    overflow-wrap: break-word
}

h1 {
    font-size: 2em
}

:where(ul, ol)[role="list"], ul {
    list-style: none
}

a:not([class]) {
    text-decoration-skip-ink: auto
}


:where(input[type="file"])::-webkit-file-upload-button,
:where(input[type="file"])::file-selector-button {
    cursor: pointer
}

@media (prefers-reduced-motion:no-preference) {
    :focus-visible {
        transition: outline-offset 145ms cubic-bezier(.25, 0, .4, 1)
    }

    :where(:not(:active)):focus-visible {
        transition-duration: 0.25s
    }
}

:where(:not(:active)):focus-visible {
    outline-offset: 5px
}

:where(button, button[type], input[type="button"], input[type="submit"], input[type="reset"]),
:where(input[type="file"])::-webkit-file-upload-button,
:where(input[type="file"])::file-selector-button {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
    text-align: center
}

:where(button, button[type], input[type="button"], input[type="submit"], input[type="reset"])[disabled] {
    cursor: not-allowed
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}

h1,h2,h3,h4,h5,h6,div,pre, p {
    margin:0;
    text-align:left;
}

/** customer: BUTTON; **/
button, button:hover, button:focus, select:hover, select:focus, textarea:hover, textarea:focus  {
    outline:0 !important;
    /*-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.35);*/
    /*-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.35);*/
    /*box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.35);*/
}

.button,button:active {
    /*background-color: #3e8e41;*/
    /*box-shadow: 0 5px #666;*/
    transform: translateY(1px);
    /*color:red !important;*/
}

/** customer: BUTTON; **/
input, input:hover, input:focus {
    outline:0 !important;
    /*-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.35);*/
    /*-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.35);*/
    /*box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.35);*/
}