All Projects โ†’ ilkeryilmaz โ†’ hyper

ilkeryilmaz / hyper

Licence: other
๐ŸŽจ Hyper: A component-first CSS design system.

Programming Languages

CSS
56736 projects

Projects that are alternatives of or similar to hyper

generator-smacss
Perfectionist generator that scaffolds out different types of Frontend apps
Stars: โœญ 60 (+130.77%)
Mutual labels:  smacss, scaffold, smacss-generator
Katana
Katana is CSS Layout System made with Flexbox
Stars: โœญ 57 (+119.23%)
Mutual labels:  scss-framework, scss-library
apbcss
APB CSS - Atomic Parts Base CSS -
Stars: โœญ 40 (+53.85%)
Mutual labels:  oocss, smacss
ekzo
๐Ÿ’ซ Functional Sass framework for rapid and painless development
Stars: โœญ 32 (+23.08%)
Mutual labels:  bem, oocss
dddplus-archetype-demo
โ™จ๏ธ Using dddplus-archetype build a WMS in 5 minutes. 5ๅˆ†้’Ÿๆญๅปบไธ€ไธชไป“ๅ‚จไธญๅฐWMS๏ผ
Stars: โœญ 56 (+115.38%)
Mutual labels:  scaffold
Enb
Tool for building web projects, BEM bundler.
Stars: โœญ 136 (+423.08%)
Mutual labels:  bem
Dress Code
The official style guide and framework for all Zalando Brand Solutions products
Stars: โœญ 123 (+373.08%)
Mutual labels:  bem
Bem Xjst
bem-xjst (eXtensible JavaScript Templates): declarative template engine for the browser and server
Stars: โœญ 115 (+342.31%)
Mutual labels:  bem
bem-react-boilerplate
DEPRECATED! A bare minimum frontend boilerplate based on create-react-app and bem-react-core.
Stars: โœญ 32 (+23.08%)
Mutual labels:  bem
generator-starterkit
Yeoman that scaffolds out a front end starterkit. ๐Ÿ“ฆ
Stars: โœญ 29 (+11.54%)
Mutual labels:  scaffold
Yandex Ui
Yandex UI Kit build on React and bem-react
Stars: โœญ 229 (+780.77%)
Mutual labels:  bem
Synergy
Synergy is a framework for building modular, configurable and scalable UI components for React-DOM projects
Stars: โœญ 146 (+461.54%)
Mutual labels:  bem
scaffold
WIP - Simplified PHP framework, using modern practices and techniques. Making use of the best components available.
Stars: โœญ 56 (+115.38%)
Mutual labels:  scaffold
Skin
Pure CSS framework designed & developed by eBay for a branded, e-commerce marketplace.
Stars: โœญ 126 (+384.62%)
Mutual labels:  bem
sass-smacss
Organized project ready SASS modules using SMACSS
Stars: โœญ 28 (+7.69%)
Mutual labels:  smacss
Atoms
Atoms for Blaze UI
Stars: โœญ 1,505 (+5688.46%)
Mutual labels:  bem
Holy Grail Markup
All CSS methodologies compared examples at one place.
Stars: โœญ 197 (+657.69%)
Mutual labels:  bem
Fluid
Modern, Stylish, Easier and Powerful Css framework for faster and hassle free web development
Stars: โœญ 24 (-7.69%)
Mutual labels:  scss-framework
Bolt
The Bolt Design System provides robust Twig and Web Component-powered UI components, reusable visual styles, and powerful tooling to help developers, designers, and content authors build, maintain, and scale best of class digital experiences.
Stars: โœญ 186 (+615.38%)
Mutual labels:  bem
Blog
่ฟ™ๆ˜ฏไธ€ไธชBlog๏ผŒ ๅฆ‚ๆžœๅ–œๆฌขๅฏไปฅ่ฎข้˜…๏ผŒๆ˜ฏWatch, ไธๆ˜ฏ Star ๅ“ˆใ€‚ใ€‚ใ€‚
Stars: โœญ 161 (+519.23%)
Mutual labels:  bem

Hyper

Build Status

logo

Hyper: A component-first CSS design system.

Folder Detail

  • 1. settings: Global variables, theme confing and typography settings, etc.
  • 2. base: Low-specificity, far-reaching rulesets (e.g. normalize, typography, fonts).
  • 3. tools: The style files are the main parts of the site is located in this folder.
  • 4. elements: Unclassed HTML elements. (eg. a { }, hr { },)
  • 5. objects: Objects, abstractions, and design patterns (e.g. .o-layout {}).
  • 6. components: Discrete, complete chunks of UI (e.g. .c-carousel {}).
  • 7. utilities: High-specificity, very explicit selectors. Overrides and helper classes (e.g. .u-hidden {}).
  • 8. vendors: Outside library files. (e.g magnific-popup, jquery-ui, )

hyper.scss: Home sass file. You can @import way of typing necessary to your project.

Depending on the structure of your project, you can add new scss files to expand the structure. You're free.

Scaffolding

hyper/
|
|โ€“ settings/
|   |โ€“ __all.scss
|   |โ€“ _core.scss   
|   |โ€“ _theme.scss
|   |โ€“ _typography.scss
|   โ€ฆ
|
|โ€“ tools/
|   |โ€“ __all.scss
|   |โ€“ _clearfix.scss    
|   |โ€“ _breakpoints.scss
|   |โ€“ _fonts-face.scss   
|   |โ€“ _rem.scss
|   |โ€“ _list.scss
|   |โ€“ _grid.scss
|   |โ€“ _visibility.scss
|   |โ€“ _transition-delay
|   |โ€“ _background-retina
|   โ€ฆ                     
|
|โ€“ base/
|   |โ€“ __all.scss
|   |โ€“ _normalize.scss      
|   |โ€“ _fonts.scss     
|   |โ€“ _typography.scss
|   |โ€“ _icons.scss   
|   |โ€“ _reboot.scss            
|   โ€ฆ  
|
|โ€“ elements/
|   |โ€“ __all.scss
|   |โ€“ _links.scss      
|   |โ€“ _hr.scss             
|   โ€ฆ  
|                   
|โ€“ objects/
|   |โ€“ __all.scss
|   |โ€“ _header.scss
|   |โ€“ _main-nav.scss
|   |โ€“ _breadcrumbs.scss
|   |โ€“ _list.scss
|   โ€ฆ                     
|
|โ€“ components/
|   |โ€“ __all.scss
|   |โ€“ _button.scss     
|   |โ€“ _accordion.scss
|   |โ€“ _carousel.scss
|   |โ€“ _modal.scss
|   |โ€“ _slider.scss
|   |โ€“ _table.scss
|   |โ€“ _box.scss
|   โ€ฆ                   
|
|โ€“ utilities/
|   |โ€“ __all.scss
|   |โ€“ _clearfix.scss 
|   |โ€“ _typography.scss 
|   |โ€“ _heading.scss 
|   |โ€“ _print.scss 
|   |โ€“ _visibility.scss 
|   |โ€“ _float.scss 
|   |โ€“ _gap.scss 
|   |โ€“ _responsive-img.scss 
|   |โ€“ _scroll.scss 
|   โ€ฆ 
|
|โ€“ vendors/
|   |โ€“ __all.scss
|   |โ€“ _library-file.scss  
|   โ€ฆ                     
|
โ€“ hyper.scss  # Hyper main scss file

License

MIT license

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].