Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16873 | Rev 16875 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 16873 Rev 16874
Línea 109... Línea 109...
109
 
109
 
110
button {
110
button {
111
  margin: 0;
111
  margin: 0;
112
  padding: 0;
112
  padding: 0;
-
 
113
  background: transparent;
113
  background: transparent;
114
  outline: none;
114
  border: 0;
115
  border: 0;
Línea 115... Línea 116...
115
}
116
}
116
 
117
 
117
img {
118
img {
Línea 118... Línea -...
118
  max-width: 100%;
-
 
119
}
-
 
120
 
-
 
121
ul {
-
 
122
  list-style: none;
119
  max-width: 100%;
123
}
120
}
124
 
121
 
125
h6,
122
h6,
126
.h6,
123
.h6,
Línea 217... Línea 214...
217
  line-height: inherit;
214
  line-height: inherit;
218
}
215
}
Línea 219... Línea 216...
219
 
216
 
220
ol,
217
ol,
221
ul {
218
ul {
222
  padding-left: 2rem;
219
  list-style: none;
Línea 223... Línea 220...
223
}
220
}
224
 
221
 
225
ol,
222
ol,
226
ul,
223
ul,
227
dl {
224
dl {
228
  margin-top: 0;
225
  margin-top: 0;
Línea 229... Línea 226...
229
  margin-bottom: 1rem;
226
  margin-bottom: 0;
230
}
227
}
231
 
228
 
Línea 27659... Línea 27656...
27659
 
27656
 
27660
/* ============= user_profile ============= */
27657
/* ============= user_profile ============= */
27661
.user_profile {
27658
.user_profile {
27662
  display: flex;
27659
  display: flex;
27663
  flex-direction: column;
27660
  flex-direction: column;
-
 
27661
  gap: 0.5rem;
27664
  gap: .5rem;
27662
  padding: 0 1rem;
Línea 27665... Línea 27663...
27665
}
27663
}
27666
 
27664
 
27667
.user-pro-img {
27665
.user-pro-img {
Línea 27766... Línea 27764...
27766
  object-fit: cover;
27764
  object-fit: cover;
27767
}
27765
}
Línea 27768... Línea 27766...
27768
 
27766
 
Línea -... Línea 27767...
-
 
27767
/* ============= end user_profile ============= */
-
 
27768
 
-
 
27769
/* ============= buttons ============= */
-
 
27770
.btn {
-
 
27771
  font-size: 0.95rem;
-
 
27772
  height: fit-content;
-
 
27773
  line-height: 1;
-
 
27774
}
-
 
27775
 
-
 
27776
.btn-primary {
-
 
27777
  background-color: var(--button-bg);
-
 
27778
  border-radius: var(--border-radius);
-
 
27779
  color: var(--button-text-color) !important;
-
 
27780
  border: none !important;
-
 
27781
}
-
 
27782
 
-
 
27783
.btn-primary:hover {
-
 
27784
  background-color: var(--button-bg-hover);
-
 
27785
}
-
 
27786
 
-
 
27787
.btn-secondary {
-
 
27788
  background: var(--button-bg-secondary);
-
 
27789
  border: 1px solid var(--border-primary);
-
 
27790
  border-radius: var(--border-radius);
-
 
27791
  color: var(--button-text-color-secondary) !important;
-
 
27792
}
-
 
27793
 
-
 
27794
.btn-secondary:hover {
-
 
27795
  background-color: var(--button-bg-secondary-hover);
-
 
27796
  border-color: var(--border-trasnparent);
-
 
27797
}
-
 
27798
 
-
 
27799
.btn-tertiary {
-
 
27800
  background-color: var(--button-bg-tertiary);
-
 
27801
  border-radius: var(--border-radius);
-
 
27802
  border-color: #f4f4f4;
-
 
27803
  color: var(--button-text-color-tertiary) !important;
-
 
27804
}
-
 
27805
 
-
 
27806
.btn-tertiary:hover {
-
 
27807
  background: #d4d4d4;
-
 
27808
  border: 1px solid var(--border-primary);
-
 
27809
  color: var(--border-primary) !important;
-
 
27810
}
-
 
27811
 
-
 
27812
.btn-secondary:disabled,
-
 
27813
.btn-primary:disabled,
-
 
27814
.btn-tertiary:disabled {
-
 
27815
  cursor: no-drop;
-
 
27816
}
-
 
27817
 
27769
/* ============= end user_profile ============= */
27818
/* ============= end buttons ============= */
27770
 
27819