de.base.css
v1.1.1
Published
Base css for the de.css set of css modules
Downloads
2
Maintainers
Readme
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;
}