UNPKG
css-atoms
Version:
latest (1.1.2)
1.1.2
1.1.1
1.1.0
1.0.0
A legal way of doing inline css
github.com/kersh/css-atoms
kersh/css-atoms
css-atoms
/
src
/
stylus
/
layout.atom.styl
23 lines
(18 loc)
•
220 B
text/stylus
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.inline
{
display
: inline; }
.block
{
display
: block; }
.none
{
display
: none; }
.inline-block
{
display
: inline-block; }
.border-box
{
box-sizing
: border-box; }
.content-box
{
box-sizing
: content-box; }