Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5000 | Ir a la última revisión | | 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
 
11
  .header {
12
    border-bottom: $border-primary;
13
    padding-bottom: 1rem;
14
  }
15
 
16
  .infoContainer {
17
    display: flex;
18
    flex-direction: column;
19
  }
20
 
21
  .descpContainer {
22
    display: flex;
23
    flex-direction: column;
24
  }
25
}
26
 
27
.locationContainer {
28
  display: flex;
29
  padding: 1rem 0;
30
  align-items: center;
31
  color: $font-color;
32
  img {
33
    width: 1rem;
34
  }
35
}
36
 
37
.likeContainer {
38
  display: flex;
39
  padding: 1rem 0;
40
  align-items: center;
41
 
42
  .heart {
43
    font-size: 1.5rem;
44
  }
45
}
46
 
47
@include maxwidth("medium") {
48
  .description {
49
    .descpContainer {
50
      flex-direction: row;
51
      flex-wrap: wrap;
52
      justify-content: space-between;
53
    }
54
  }
55
}