@import url(fonts.css);

html {
    --color-accent: 0 118 17;
}

/* input file ad-hoc */

input[type="file"] {
    display: block;
    width: 100%;
    max-width: 42rem;
    min-width: 5rem;
    appearance: none;
    border-radius: .375rem;
    border: 1px solid #e5e7eb;
    margin-top: .5rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: .75rem;
    padding-right: .75rem;
    font-size: .875rem;
    line-height: 1.25rem;
}

input[type="file"]:hover {
    cursor: pointer;
    background-color: #f9fafb;

    &::-webkit-file-upload-button {
        cursor: pointer;
        background-color: white;
        border: 0;
    }

    &::-webkit-file-upload-button {
        background-color: #f9fafb;
    }
}

input[type="file"]::-webkit-file-upload-button {
    background-color: white;
    border: 0;
}
