forked from amcss/amcss.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_Example.scss
More file actions
36 lines (34 loc) · 751 Bytes
/
_Example.scss
File metadata and controls
36 lines (34 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[am-Example] {
@include trait(layout, "max720 p1 m0-auto mt2");
h3 {
@include trait(layout, "mb2");
@include trait(type, "h4 center");
}
p {
@include trait(layout, "m1-0");
@include trait(type, "h6 lh1.4");
}
em {
@include trait(type, "italic");
}
strong {
@include trait(type, "semibold");
}
pre {
@include trait(layout, "max840 mt1 mb2");
code {
@include trait(type, "small3 lh1.8");
@include trait(layout, "p0.5 m0");
@include trait(border, "none");
color: $grey;
}
}
code {
@include trait(type, "mono lh1.2 small3 unbroken");
@include trait(border, "simple");
@include trait(layout, "p0.2 m0.2");
}
a {
@include trait(link, "inline");
}
}