Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

APB CSS - Atomic Parts Base CSS -

NotificationsYou must be signed in to change notification settings

webcyou/apbcss

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

screen_shot_ogp.png

APB CSS - Atomic Parts Base CSS -

http://apbcss.com/


What is Atomic Parts Base CSS(APB CSS)

Atomic Design + OOCSS + SMACSS =

Atomic Parts Base CSS (APB CSS)

Atomic Parts Base CSS

Point

  • Simple
  • Predictable
  • General versatility
  • Reusable
  • Maintainable
  • Scalable
  • Interactive

Atoms Style Sheet

Atomic Design

Atomic Design

AtomicDesign

Atoms

Button

Atoms

button

HTML

<p><a href="#">Button</a></p>

CSS

.btn {  position: relative;  width: 200px;  height: 40px;  border-radius: 6px;  a {    display: block;    line-height: 40px;    text-align: center;    text-decoration: none;    color: #fff;    font-size: 18px;  }  &.primary {    background: #404040;    @include background(linear-gradient(top, #404040, #282828));    &:hover { background: #303030; }  }}

Icon

Atoms

Icon

HTML

<p></p>

CSS

.icon {  display: inline-block;  &.social {    width: 34px;    height: 34px;    background: url(SpriteImagePath) no-repeat;    @include background-size(205px auto);    &.github { background-position: -171px top; }  }}

Properties of the layout style is not included.


Molecules Style Sheet

Molecules

Molecules

Button + Icon

Button + Icon

HTML

<p><a href="#"><span></span>Button</a></p>

CSS

.btn {    .icon {        &.social {            margin: 0px 6px -11px -34px;        }    }}

Molecules

Text + Icon

Text + Icon

HTML

<p><span></span>text</p>

CSS

.text {  .icon.ban {    margin: 0 4px -10px 0;  }}

Layout property is generated when you became a molecule.


Multi Class (object-oriented)

OOCSS + SMACSS

OOCSS + SMACSS

Excerpts from the 「OOCSS」,「SMACSS 」

CSS Class Type

CSS Class Type

  • Atomic:Class name of atom
  • Module:UI package name
  • Skin:Class name of decoration
  • Number:Numbering of the class name
  • State:Class name that represents the state
  • Other:Other class name

Based on the atom name or module name,and grant the six types of class name.

CSS Class Type ~ Atomic ~

Atomicexample Class Name

  • text
  • icon
  • btn
  • thumbnail
  • label
  • input
  • code
  • separate

CSS Class Type ~ Module ~

Moduleexample Class Name

  • header
  • footer
  • contents
  • mainLogo
  • title
  • column
  • thumbnailList
  • textList
  • detailBox
  • modalWindow

CSS Class Type ~ Skin ~

Skinexample Class NameSkin

  • red
  • blue
  • wide
  • high
  • low
  • stripe
  • subdued
  • small
  • middle

CSS Class Type ~ Number ~

Numberexample Class NameNumber

  • one
  • two
  • no[nth]
  • type[nth]
  • first
  • last
  • odd
  • even

CSS Class Type ~ State ~

Stateexample Class NameState

  • active
  • disable
  • tapped
  • success
  • error
  • highlight
  • checked
  • note
  • center
  • right

CSS Class Type ~ Other ~

Otherexample Class NameOther

  • Semantic name
  • wrap
  • Service name
  • Page name
  • Controller name
  • Namespace

etc..


Directory structure

SCSS Directory

SCSS

scss  |- base  |- pages  |- parts  _common_inc.scss  _parts.scss  style.scss
  • _common_inc.scss: import base and pages
  • _parts.scss: import parts files

base Directory

base

scss  |- base    |- _base.scss    |- _mixin.scss    |- _reset.scss    |- _setting.scss
  • _base.scss: Define -based style of application
  • _mixin.scss: Define mixin style
  • _reset.scss: Initialize the style
  • _setting.scss: Define such as variables and prefix

parts Directory

parts

scss  |- parts    |- _button.scss    |- _icon.scss    |- _list.scss    |- _paragraph.scss    ....

File group that defines the atom and modules.

pages Directory

pages

scss  |- pages    |- _top.scss    |- _info.scss    |- _profile.scss    |- _main_contents.scss    ....

Defines page-specific layout style.

name space

HTML

<section>

ID is the controller name(pages Directory name)The class name is the action name, provide a name space.


Sample

It is this page.

OfficalPage

http://apbcss.com/

Document

slideshare

Blog

web帳


Other

Author

Name :Daisuke Takayama

Country :Japan

Job :FrontEnd Engineer

twitter

@webcyou@panicdragon


[8]ページ先頭

©2009-2025 Movatter.jp