- https://www.figma.com/blog/desperately-seeking-squircles
- https://github.com/PavelLaptev/css-houdini-squircle
- https://pavellaptev.medium.com/squircles-on-the-web-houdini-to-the-rescue-5ef11f646b72
- https://github.com/jsnkuhn/corner-shape
- https://onotakehiko.com/clothoid
- https://gist.github.com/pouyakary/136fafc75a14abd867e0100856add5a0
- https://path-to-shape.netlify.app
- https://somonoco.com
Should I use HTML5 sectionning (aka Document Outline Algorithm) and use several h1 per page/document?
There are no implementations of the proposed outline algorithm in web browsers nor assistive technology; it was never part of a final W3C specification. Therefore the outline algorithm should not be used to convey document structure to users. Authors are advised to use heading rank (h1-h6) to convey document structure.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'use strict'; | |
| var gulp = require('gulp'); | |
| var postcss = require('gulp-postcss'); | |
| gulp.task('styles', function () { | |
| var opts = { | |
| basePath: 'input/', | |
| maps: [ 'whatever.yml' ], | |
| }; |
SassDoc allows to document Sass items: functions, mixins, variables, placeholders.
No CSS selectors.
It uses a similar system as JSDoc, based on comments and annotations.
You can choose between two types of comments.
Inline comments (3 slashes):
///
///
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Programmatically install npm packages. | |
| function npmInstall(pkgs, cb) { | |
| var npm = require('npm'); | |
| npm.load({}, function (err) { | |
| if (err) { | |
| throw err; | |
| } | |
| console.log(chalk.red( |
NewerOlder