{"id":16432868,"url":"https://github.com/teles/css-para-gente-grande","last_synced_at":"2026-03-07T20:04:46.599Z","repository":{"id":144746669,"uuid":"46795135","full_name":"teles/css-para-gente-grande","owner":"teles","description":"Especificações de arquitetura css e melhores práticas.","archived":false,"fork":false,"pushed_at":"2015-12-10T13:32:49.000Z","size":3,"stargazers_count":6,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-10-09T05:08:46.237Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/teles.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-11-24T14:00:18.000Z","updated_at":"2018-03-07T03:12:21.000Z","dependencies_parsed_at":"2023-04-15T13:44:24.794Z","dependency_job_id":null,"html_url":"https://github.com/teles/css-para-gente-grande","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/teles/css-para-gente-grande","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teles%2Fcss-para-gente-grande","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teles%2Fcss-para-gente-grande/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teles%2Fcss-para-gente-grande/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teles%2Fcss-para-gente-grande/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/teles","download_url":"https://codeload.github.com/teles/css-para-gente-grande/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teles%2Fcss-para-gente-grande/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30229590,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T19:01:10.287Z","status":"ssl_error","status_checked_at":"2026-03-07T18:59:58.103Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-11T08:44:33.821Z","updated_at":"2026-03-07T20:04:46.579Z","avatar_url":"https://github.com/teles.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# CSS para gente grande\n\n## Tópicos\n\n### Diretórios e arquivos\n\n- [ ] O que tem no diretório base/?\n- [ ] O que tem no diretório base/properties/?\n- [ ] O que tem no diretório base/utilities/?\n- [ ] O que tem no diretório helpers/?\n- [ ] O que tem no diretório helpers/functions/?\n- [ ] O que tem no diretório helpers/mixin/s?\n- [ ] O que tem no diretório helpers/variables/?\n- [ ] O que tem no diretório modules/?\n- [ ] O que tem no diretório module/module-1/?\n- [ ] O que tem no arquivo-principal?\n \n### Boas práticas\n- [ ] - Declares seus imports em um único arquivo.\n- [ ] - Não tenha media-queries em arquivos separados.\n- [ ] - Defina seus breakpoints como variáveis.\n- [ ] - Tenha uma paleta de cores.\n- [ ] - Defina cores por contexto baseado na sua paleta.\n- [ ] - Crie um sistema de iconfont baseado em glifos.\n- [ ] - Padronize seus espaçamentos\n- [ ] - Documente seu css\n\n## Nomenclatura\n- [ ] - Nomenclatura para componentes, classes aninhadas, estados, e variações.\n\n## Zen do css\n- [ ] - Explícito é melhor que implícito\n- [ ] - Nomeei pelo contexto não pela aparência\n- [ ] - Escreva primeiro para mobile\n- [ ] - Renderize primeiro para mobile\n\n## Arquitetura de diretórios para projetos css\n\nA estrutura de um projeto css pode ser definida a partir da estrutura de diretórios e arquivos. A seguir um exemplo de estrutura de arquivos que segue o css-styleguide:\n\n    ├── base/\n    │   ├──icon-font\n    │   ├──reset\n    │   ├──typography\n    │   └── properties/\n    │   │   ├──float\n    │   │   ├──spacing\n    │   │   ├──other-property-1\n    │   │   ├──other-property-2        \n    │   │   └──other-property-n            \n    │   └── utilities/\n    │       ├──utility-1\n    │       ├──utility-2\n    │       └──utility-n    \n    ├── helpers/\n    │   ├── functions\n    │   │   └──spacing\n    │   ├── mixins/\n    │   │   ├──mixin-1\n    │   │   ├──mixin-2\n    │   │   ├──mixin-n\n    │   └── variables/\n    │       ├──icon-font\n    │       ├──grid\n    │       ├──pallete\n    │       ├──spacing\n    │       └──typography\n    └── modules/\n    │    ├──module-1/\n    │    │   ├──module-1\n    │    │   ├──module-1-state    \n    │    │   └──module-1-doc    \n    │    ├──module-2\n    │    └──module-n    \n    └─ arquivo-principal\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fteles%2Fcss-para-gente-grande","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fteles%2Fcss-para-gente-grande","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fteles%2Fcss-para-gente-grande/lists"}