-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathfunctional-classes.css
More file actions
140 lines (120 loc) · 3.57 KB
/
functional-classes.css
File metadata and controls
140 lines (120 loc) · 3.57 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/**
*** FLOAT E CLEAR
**/
.noFloat {float: none !important;}
.fRight {float: right !important;}
.fLeft {float: left !important;}
.cBoth {clear: both !important;}
.cRight {clear: right !important;}
.cLeft {clear: left !important;}
.overflowHidden { overflow: hidden !important;}
.overflowVisible {overflow: visible !important;}
/**
*** BLOCO E LINHA
**/
.dBlock {display: block !important;}
.dInline {display: inline !important; float: none !important;}
.dInlineBlock {display: inline-block !important; float: none !important;}
.dNone {display: none !important;}
/**
*** TAMANHO
**/
.widthAuto {width: auto !important;}
.widthInherit {width: inherit !important;}
.heightInherit {height: inherit !important;}
.heightAuto {height: auto !important;}
/**
*** MARGIN E PADDING
**/
.noMargin {margin: 0 !important;}
.noMarginLeft {margin-left: 0 !important;}
.noMarginRight {margin-right: 0 !important;}
.noMarginTop {margin-top: 0 !important;}
.noMarginBottom {margin-bottom: 0 !important;}
.noPadding {padding: 0 !important;}
.noPaddingLeft {padding-left: 0 !important;}
.noPaddingRight {padding-right: 0 !important;}
.noPaddingTop {padding-top: 0 !important;}
.noPaddingBottom {padding-bottom: 0 !important;}
.marginAuto {
margin-left: auto !important;
margin-right: auto !important;
}
/**
*** ALINHAMENTO DE TEXTO
**/
.txtLeft {text-align: left !important;}
.txtRight {text-align: right !important;}
.txtJustify {text-align: justify !important;}
.txtCenter {text-align: center !important;}
table.txtLeft td, table.txtLeft th {text-align: left;}
table.txtRight td, table.txtRight th {text-align: right;}
/**
*** ALINHAMENTO VERTICAL
**/
.vAlignTop {vertical-align: top !important;}
.vAlignMiddle {vertical-align: middle !important;}
.vAlignBottom {vertical-align: bottom !important;}
.vAlignTopImportant {vertical-align: top !important;}
.vAlignMiddleImportant {vertical-align: middle !important;}
.vAlignBottomImportant {vertical-align: bottom !important;}
/**
*** BACKGROUND, BORDA E OUTLINE
**/
.noBackground {background: none !important;}
.noShadow {box-shadow: none !important;}
.noBorder {border: none !important;}
.noBorderRight {border-right: none !important;}
.noBorderLeft {border-left: none !important;}
.noBorderBottom {border-bottom: none !important;}
.noBorderTop {border-top: none !important;}
.noOutline {outline:none !important;}
.noBullet, .noListStyle {list-style: none !important;}
/**
*** CURSOR DE MOUSE
**/
.cursorPointer {cursor: pointer !important;}
.cursorDefault {cursor: default !important;}
.cursorCrosshair {cursor: crosshair !important;}
.cursorMove {cursor: move !important;}
.cursorHelp {cursor: help !important;}
.cursorWait {cursor: wait !important;}
.cursorInherit {cursor: inherit !important;}
.cursorText {cursor: text !important;}
.cursorProgress {cursor: progress !important;}
.cursorGrab {
cursor: hand;
cursor: grab;
cursor: -o-grab;
cursor: -ms-grab;
cursor: -moz-grab;
cursor: -webkit-grab;
}
.cursorGrabbing {
cursor: grabbing;
cursor: -o-grabbing;
cursor: -ms-grabbing;
cursor: -moz-grabbing;
cursor: -webkit-grabbing;
}
.ellipsis {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: inline-block !important;
}
.noBold {font-weight: normal!important;}
.noBgHover {background: none!important;}
.noRadius{
border-radius: 0!important;
-moz-border-radius: 0!important;
-webkit-border-radius: 0!important;
}
/** COLORS **/
.bgWhite {background: white!important;}
.colorBlack {color: #000;}
/**
*** INPUTS
**/
/** Remove arrows of input fields like type number **/
.noSpin::-webkit-inner-spin-button {-webkit-appearance: none;}