Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16825 | Rev 16848 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16825 efrain 1
.text-right {
2
	text-align: right;
3
}
4
 
5
.text-center {
6
	text-align: center;
7
}
8
 
9
.text-vertical-middle {
10
	vertical-align: middle;
11
 
12
}
13
 
14
 
15
.mr-0 {
16
 margin-right: 0 !important;
17
}
18
 
19
.mr-1, .example .btn-group {
20
 margin-right: 0.25rem !important;
21
}
22
 
23
.mr-2 {
24
 margin-right: 0.5rem !important;
25
}
26
 
27
.mr-3 {
28
 margin-right: 1rem !important;
29
}
30
 
31
.mr-4 {
32
 margin-right: 1.5rem !important;
33
}
34
 
35
.mr-5 {
36
  margin-right: 3rem !important;
37
}
38
 
39
.mr-6 {
40
 margin-right: 4.5rem !important;
41
}
42
 
43
.mr-7 {
44
 margin-right: 6rem !important;
45
}
46
 
47
.mr-auto {
48
 margin-right: auto !important;
49
}
50
 
51
 
52
.ml-0 {
53
 margin-left: 0 !important;
54
}
55
 
56
.ml-1, .example .btn-group {
57
 margin-left: 0.25rem !important;
58
}
59
 
60
.ml-2 {
61
 margin-left: 0.5rem !important;
62
}
63
 
64
.ml-3 {
65
 margin-left: 1rem !important;
66
}
67
 
68
.ml-4 {
69
 margin-left: 1.5rem !important;
70
}
71
 
72
.ml-5 {
73
  margin-left: 3rem !important;
74
}
75
 
76
.ml-6 {
77
 margin-left: 4.5rem !important;
78
}
79
 
80
.ml-7 {
81
 margin-left: 6rem !important;
82
}
83
 
84
.ml-auto {
85
 margin-left: auto !important;
86
}
87
 
16844 efrain 88
.modal-backdrop  {
89
	z-index: 1000;
90
}
16825 efrain 91
 
16844 efrain 92
.modal {
93
   z-index: 1050;
94
}
95
.modal {
16825 efrain 96
 
16844 efrain 97
/*****  AJUSTES ****/
98
/*
99
:root {
100
    --bg-color: #fff;
101
    --body-bg-color: #f2f2f2;
102
    --bg-color-secondary: #D9D9D9;
103
    --font-color: #1d315c;
104
    --font-color-hover: #1d315c;
105
    --title-color: #000;
106
    --subtitle-color: #626d7a;
107
    --icons-color: #666666;
108
    --button-bg: #16283c;
109
    --button-bg-hover: #1d315c;
110
    --button-text-color: #fff;
111
    --button-bg-secondary: #16283c;
112
    --button-bg-secondary-hover: #1d315c;
113
    --button-text-color-secondary: #fff;
114
    --button-bg-tertiary: #b3b3b3;
115
    --button-text-color-tertiary: #fff;
116
    --border-primary: #e8e8e8;
117
    --border-trasnparent: #0000;
118
    --chat-received: #fff;
119
    --chat-send: #d8f1e4;
120
    --chat-color: #626d7a;
121
 
122
    --light-gray: #bebebe;
123
    --gray: #909090;
124
    --danger: #e20808;
125
    --danger-hover: #a10707;
126
    --online-green: #42b72a;
127
 
128
    --border-gray-primary: #b3b3b3;
129
    --white: #ffffff;
130
 
131
 
132
 
133
    --white-backdrop: rgba(255, 255, 255, 0.4);
134
    --border-radius: 10px;
135
    --light-shadow: 0px 0px 11px 0px rgb(0 0 0 / 5%);
136
    --shadow: 0px 4px 14px _2px rgb(0 0 0 / 12%);
137
}
138
*/
139
 
140
.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
141
    --bs-gutter-x: 0;
142
}
143
 
144
.padding-right-0 {
145
	padding-left: 0;
146
}
147
 
148
.padding-left-0 {
149
 	padding-left: 0;
150
}
151
 
152
.page-item:not(:first-child) .page-link {
153
    margin-left: -1px;
154
}
155
.page-link.active, .active > .page-link {
156
    z-index: 3;
157
    color: var( --button-text-color );
158
    background-color: var(--button-bg);
159
    border-color: var(--border-primary);
160
}
161
 
162