tentcss
tentcss copied to clipboard
:herb: A CSS survival kit. Includes only the essentials to make camp.
```html body{background:azure} main aside main aside main aside ````
[This package](https://www.jsdelivr.com/package/npm/tent-css) doesn't have a [default file](https://www.jsdelivr.com/features#publishing-packages) set. You can set it via `jsdelivr`, `browser`, or `main` field in `package.json`
some people are not free to use the internet so to learn this css framework with offline documentation is very helpful.
Currently, when we use a dark background and the `.inverse` class on an element, it makes the text lighter, to be more visible. That's great. However, if there is a...
At first, thank you and congrats for this awesome little project. I was looking for a variable in [`01_settings/_variables.defaults.scss`](https://github.com/sitetent/tentcss/blob/master/src/01_settings/_variables.defaults.scss) allowing me to reduce the `transition` time of the changes when...
Hi, I would like to use grid with this structure ``` +-----------+-----------+ + + + +-----------+ + + + + +-----------+ + + + + +-----------+-----------+ ``` Is it possible...
I added a [jsDelivr CDN link](https://www.jsdelivr.com/package/npm/tent-css) to your readme to make it easier to use. jsDelivr is the fastest opensource CDN available and built specifically for production usage.
Currently rem and em functions are returning a string, because the unit is incorrectly appended. See: https://css-tricks.com/snippets/sass/correctly-adding-unit-number/ https://github.com/sitetent/tentcss/blob/bac3d003a7c45a5b8be59bef50328e50bd99256c/src/02_tools/_scaling.scss#L15-L17 ``` $return: append($return, ($val / $root + rem)); } @else { $return:...
After recently upgrading to gulp-sass 3.2.1 which uses node-sass 4.8.3, the math to subtract 1px no longer works leaving me things like: `max-width(48em - 0.0625em)` in the processed CSS which...