Modesto CSS
Um framework CSS simples (fortemente inspirado pelo visual do CodyFrame), para estilizar minimamente um conteúdo tipo "texto" sem precisar adicionar nenhuma classe (ou o mínimo) aos elementos nativos.
👉 Documentação e demonstração: https://modesto.netlify.app/
modesto: dotado de modéstia; isento de vaidade; simples, despretensioso.
Utilização
Versão com o CSS aberto :
<link rel="stylesheet" href="https://unpkg.com/modesto@latest/modesto.css">
Versão com o CSS minificado :
<link rel="stylesheet" href="https://unpkg.com/modesto@latest/modesto.min.css">
Princípios
- 📖 Semântico
- 👋 Independente de qualquer conteúdo externo
- ♿️ Acessível
- 🤓 ClassLess: evitar ao máximo a necessidade colocar
class
nos elementos - ⚡️ Leve, MUITO leve para se "embedado" direto na página,
Development Scripts
This "bootstrap" is based on the awesome HTML SASS Jumpstart from 5t3ph.
npm run develop
Serve with hot reload at localhost:1337
npm run build
Generate minified, autoprefixed CSS for production
Use this as the "Publish command" if needed by hosting such as Netlify.
npm run dist
Replaces
__VERSION__
string inside html and css file for the version from package.json file, generates the CSS files and copy them into the root of the project.
In order publish a new version and documentation:
- Change the
version
inside thepackage.json
.
$ npm run dist
$ git add .
$ git commit -m ...
$ git push origin master
$ npm publish