Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16848 Rev 16849
Línea 27466... Línea 27466...
27466
 
27466
 
27467
.pac-container {
27467
.pac-container {
27468
  z-index: 1200;
27468
  z-index: 1200;
Línea -... Línea 27469...
-
 
27469
}
-
 
27470
 
-
 
27471
.feed-container {
-
 
27472
  background-color: var(--bg-color);
-
 
27473
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
-
 
27474
  height: fit-content;
-
 
27475
  width: -moz-available;
-
 
27476
  width: -webkit-fill-available;
-
 
27477
  width: fill-available;
-
 
27478
  overflow: hidden;
-
 
27479
  position: relative;
-
 
27480
}
-
 
27481
 
-
 
27482
.feed-container span {
-
 
27483
  font-size: 0.9rem;
-
 
27484
}
-
 
27485
 
-
 
27486
.feed-container p {
-
 
27487
  color: var(--font-color);
-
 
27488
  font-size: 14px;
-
 
27489
  text-align: justify;
-
 
27490
  margin-bottom: 0.5rem;
-
 
27491
}
-
 
27492
 
-
 
27493
.feed-container h2 {
-
 
27494
  font-size: 1rem;
-
 
27495
}
-
 
27496
 
-
 
27497
.feed-header {
-
 
27498
  display: flex;
-
 
27499
  gap: 0.5rem;
-
 
27500
  padding: 10px 1rem;
-
 
27501
  align-items: center;
-
 
27502
  justify-content: space-between;
-
 
27503
  position: relative;
-
 
27504
}
-
 
27505
 
-
 
27506
.feed_body {
-
 
27507
  padding: 10px 1rem;
-
 
27508
  display: flex;
-
 
27509
  flex-direction: column;
-
 
27510
}
-
 
27511
 
-
 
27512
.feed-actions {
-
 
27513
  display: flex;
-
 
27514
  justify-content: space-around;
-
 
27515
  border-top: 1px solid rgb(211, 211, 211);
-
 
27516
  padding: 5px;
-
 
27517
}
-
 
27518
 
-
 
27519
.feed-actions>button {
-
 
27520
  align-items: center;
-
 
27521
  border-radius: var(--border-radius);
-
 
27522
  cursor: pointer;
-
 
27523
  display: inline-flex;
-
 
27524
  flex-direction: column;
-
 
27525
  font-size: 0.9rem;
-
 
27526
  padding: 5px;
-
 
27527
  position: relative;
-
 
27528
}
-
 
27529
 
-
 
27530
.feed-actions>button:hover {
-
 
27531
  background-color: whitesmoke;
-
 
27532
}
-
 
27533
 
-
 
27534
@media (max-width: 768px) {
-
 
27535
  .feed-container {
-
 
27536
    border-radius: var(--border-radius);
-
 
27537
  }
-
 
27538
 
-
 
27539
  .feed-actions {
-
 
27540
    flex-direction: row;
-
 
27541
    gap: 0.5rem;
-
 
27542
    font-size: 1rem;
-
 
27543
  }
27469
}
27544
}
27470
 
27545