-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_is__this.sass
72 lines (54 loc) · 1.06 KB
/
_is__this.sass
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
///////////////////
//BORDER-STYLE:
//BORDER-WIDTH:
///////////////////
.is__this--bordered,
.is__bdr
border-width: $border-width-m
border-style: solid
&-b
border-bottom-width: $border-width-m
border-bottom-style: solid
&-t
border-top-width: $border-width-m
border-top-style: solid
&-l
border-left-width: $border-width-m
border-left-style: solid
&-r
border-right-width: $border-width-m
border-right-style: solid
///////////////////
//BORDER-RADIUS:
///////////////////
.is__this--border-radius,
.is__br
border-radius: $border-radius-m
&--thick
border-radius: $border-radius-l
&--thin
border-radius: $border-radius-s
///////////////////
//FlOAT:
///////////////////
.is__this--floating--left,
.is__fl
float: left
.is__this--floating--right,
.is__fr
float: right
.is__this--centered,
.is__ctr
margin: auto
///////////////////
//DISPLAY:
///////////////////
.is__this--display
&--block
display: block
&--inline
display: inline-block
&--flex
display: flex
&--hidden
display: none