tmpl-cli
api
docs
env
git
hbs
html
husky
jest
lintstaged
lisp
node
prettier
python
react
readme
schema
style
style colorsstyle colors-tailwindstyle resetstyle sakurastyle water
util
vue
web

$ tmpl style reset

Creates a css reset file.

Files

project
└─src
└──styles
└───reset.css

reset.css

html {
box-sizing: border-box;
font-size: 16px;
color: #212121;
font-family: Arial, Helvetica, sans-serif;
font-weight: normal;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
margin: 0;
padding: 0;
}
ol,
ul {
list-style: none;
}
img {
max-width: 100%;
height: auto;
}
input {
padding: 0.5rem
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
button {
cursor: pointer;
}