1.1.1 • Published 6 years ago

de.base.css v1.1.1

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

de.base.css

Build

npm run build command will build the project

Develop

npm run dev commmand for active development

Docs

de.base.css uses reset.css as a starting point to remove all browser styles

Box sizing is set to border-box and background-repeat is set to no-repeat

* {
    background-repeat: no-repeat;
    box-sizing: border-box;
}`

Cursor set to default

html {
    cursor: default;
}

Single taps should be dispatched immediately on clickable elements

a, area, button, input, label, select, summary, textarea, [tabindex] {
	-ms-touch-action: manipulation;
	touch-action: manipulation;
}