forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpositioning.styl
More file actions
84 lines (75 loc) · 1.34 KB
/
positioning.styl
File metadata and controls
84 lines (75 loc) · 1.34 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
.pull-left
float left !important
.pull-right
float right !important
.relative-position
position relative !important
.fixed,
.fixed-bottom,
.fixed-left,
.fixed-right,
.fixed-top,
.fixed-top-left,
.fixed-top-right,
.fixed-bottom-left,
.fixed-bottom-right
position fixed !important
.absolute-bottom,
.absolute-left,
.absolute-right,
.absolute-top,
.absolute-top-left,
.absolute-top-right,
.absolute-bottom-left,
.absolute-bottom-right
position absolute !important
.fixed-top, .absolute-top
top 0
left 0
right 0
.fixed-right, .absolute-right
top 0
right 0
bottom 0
.fixed-bottom, .absolute-bottom
right 0
bottom 0
left 0
.fixed-left, .absolute-left
top 0
bottom 0
left 0
.fixed-top-left, .absolute-top-left
top 0
left 0
.fixed-top-right, .absolute-top-right
top 0
right 0
.fixed-bottom-left, .absolute-bottom-left
bottom 0
left 0
.fixed-bottom-right, .absolute-bottom-right
bottom 0
right 0
.fullscreen
position fixed !important
top 0
right 0
bottom 0
left 0
+prefix-classes('float-')
.left
float left !important
.right
float right !important
+prefix-classes('vertical-')
.top
vertical-align top !important
.middle
vertical-align middle !important
.bottom
vertical-align bottom !important
&.on-left
margin-right .5rem !important
&.on-right
margin-left .5rem !important