Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16825 efrain 1
// Utilities
2
 
3
.grid-margin {
4
  margin-bottom: 1.5rem;
5
}
6
.grid-margin-sm-0 {
7
  @media (min-width: 576px) {
8
    margin-bottom: 0;
9
  }
10
}
11
.grid-margin-md-0 {
12
  @media (min-width: 768px) {
13
    margin-bottom: 0;
14
  }
15
}
16
.grid-margin-lg-0 {
17
  @media (min-width: 992px) {
18
    margin-bottom: 0;
19
  }
20
}
21
.grid-margin-xl-0 {
22
  @media (min-width: 1200px) {
23
    margin-bottom: 0;
24
  }
25
}
26
 
27
 
28
 
29
.stretch-card {
30
  display: flex;
31
  align-items: stretch;
32
  justify-content: stretch;
33
  >.card{
34
    width: 100%;
35
    min-width: 100%;
36
  }
37
}
38
 
39
 
40
 
41
.img-lg {
42
  width: 92px;
43
  height: 92px;
44
}
45
.img-md {
46
  width: 75px;
47
  height: 92px;
48
}
49
.img-sm {
50
  width: 43px;
51
  height: 43px;
52
}
53
.img-xs {
54
  width: 36px;
55
  height: 36px;
56
}
57
.img-ss {
58
  width: 26px;
59
  height: 26px;
60
}
61
 
62
 
63
 
64
 
65
.fw-boldest {
66
  font-weight: 900;
67
}
68
 
69
 
70
 
71
.tx-10 { font-size: 10px; }
72
.tx-11 { font-size: 11px; }
73
.tx-12 { font-size: 12px; }
74
.tx-13 { font-size: 13px; }
75
.tx-14 { font-size: 14px; }
76
.tx-16 { font-size: 16px; }
77
.tx-80 { font-size: 80px; }
78
 
79
 
80
 
81
svg.icon-xs {
82
  width: 12px;
83
  height: 12px;
84
}
85
svg.icon-sm {
86
  width: 14px;
87
  height: 14px;
88
}
89
svg.icon-md {
90
  width: 16px;
91
  height: 16px;
92
}
93
svg.icon-lg {
94
  width: 20px;
95
  height: 20px;
96
}
97
svg.icon-xl {
98
  width: 26px;
99
  height: 26px;
100
}
101
svg.icon-xxl {
102
  width: 40px;
103
  height: 40px;
104
}
105
 
106
 
107
 
108
.icon-xs {
109
  font-size: 14px;
110
}
111
.icon-sm {
112
  font-size: 16px;
113
}
114
.icon-md {
115
  font-size: 18px;
116
}
117
.icon-lg {
118
  font-size: 20px;
119
}
120
.icon-xl {
121
  font-size: 24px;
122
}
123
.icon-xxl {
124
  font-size: 30px;
125
}
126
 
127
 
128
 
129
.cursor-pointer {
130
  cursor: pointer;
131
}
132
.cursor-default {
133
  cursor: default;
134
}
135
 
136
 
137
 
138
// Small paddings and margins
139
.pt-1px { padding-top: 1px }
140
.pt-2px { padding-top: 2px }
141
.pt-3px { padding-top: 3px }
142
 
143
.pb-1px { padding-bottom: 1px }
144
.pb-2px { padding-bottom: 2px }
145
.pb-3px { padding-bottom: 3px }
146
 
147
.mt-1px { margin-top: 1px }
148
.mt-2px { margin-top: 2px }
149
.mt-3px { margin-top: 3px }
150
 
151
.mb-1px { margin-bottom: 1px }
152
.mb-2px { margin-bottom: 2px }
153
.mb-3px { margin-bottom: 3px }
154
 
155
 
156
 
157
// Height
158
.ht-5 { height: 5px; }
159
.ht-10 { height: 10px; }
160
.ht-15 { height: 15px; }
161
.ht-20 { height: 20px; }
162
.ht-30 { height: 30px; }
163
.ht-40 { height: 40px; }
164
.ht-50 { height: 50px; }
165
.ht-60 { height: 60px; }
166
.ht-70 { height: 70px; }
167
.ht-80 { height: 80px; }
168
.ht-90 { height: 90px; }
169
.ht-100 { height: 100px; }