Custom UI

Reset

El reset CSS es un conjunto de reglas que se aplican a todos los elementos HTML para que tengan un aspecto más consistente en todos los navegadores.
css
* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    vertical-align: baseline;
}

a {
    text-decoration: none;
    color: inherit;
    font-size: inherit;
}

html {
    scroll-behavior: auto;
    -webkit-text-size-adjust: 100%;
}

img {
    vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
strong,
blockquote,
i,
b,
u,
em {
    font-size: 1em;
    font-weight: inherit;
    font-style: inherit;
    text-decoration: none;
    color: inherit;
    text-wrap: balance;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

form,
input,
textarea,
select,
button,
label {
    font-family: inherit;
    font-size: inherit;
    hyphens: auto;
    background-color: transparent;
    color: inherit;
    display: block;
    outline: none;
    text-wrap: balance;
}

button {
    cursor: pointer;
}

table,
tr,
td {
    border-collapse: collapse;
    border-spacing: 0;
}

svg {
    width: 100%;
    display: block;
    fill: currentColor;
}