Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev Autor Línea Nro. Línea
3564 stevensc 1
.description {
2
  background-color: $bg-color;
3
  display: flex;
4
  flex-direction: column;
5
  min-height: 100%;
6
  justify-content: center;
7
  padding: 2rem;
8
  border-radius: 5px;
9
  box-shadow: $light-shadow;
10
  .header {
11
    border-bottom: $border-primary;
12
    padding-bottom: 1rem;
5000 stevensc 13
    position: relative;
3564 stevensc 14
  }
15
  .infoContainer {
16
    display: flex;
17
    flex-direction: column;
18
  }
19
  .descpContainer {
20
    display: flex;
21
    flex-direction: column;
22
  }
23
}
24
 
25
.locationContainer {
26
  display: flex;
27
  padding: 1rem 0;
28
  align-items: center;
29
  color: $font-color;
30
  img {
31
    width: 1rem;
32
  }
33
}
34
 
35
.likeContainer {
36
  display: flex;
37
  padding: 1rem 0;
38
  align-items: center;
39
  .heart {
40
    font-size: 1.5rem;
41
  }
42
}
43
 
44
@include maxwidth("medium") {
5000 stevensc 45
  .description .descpContainer {
46
    flex-direction: row;
47
    flex-wrap: wrap;
48
    justify-content: space-between;
3564 stevensc 49
  }
50
}