Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 4211 | Ir a la última revisión | | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
3580 stevensc 1
.iconContainer {
2
  display: flex;
3
  justify-content: center;
4
  align-items: center;
5
}
6
.statusIcon {
7
  font-size: 0.7rem;
8
  margin-left: 0.2rem;
9
  &_offline {
10
    color: $gray;
11
  }
12
  &_online {
13
    color: $online-green;
14
  }
15
}
16
 
17
.entity {
18
  display: flex;
19
  font-size: 1.2rem;
20
  border-radius: 10px;
21
  width: 90%;
22
  margin: .5rem auto;
23
  padding: 1rem;
24
  &_unread {
25
    background-color: $light-gray;
26
  }
27
  &:hover {
28
    background: var(--background-light-gray);
29
  }
30
  & ~ hr {
31
    width: 90%;
32
    margin: auto;
33
  }
34
  & + & {
35
    border-top: 1px solid $light-gray;
36
  }
37
  img {
38
    clip-path: circle(50%);
39
    width: 50px;
40
    height: 50px;
41
    object-fit: contain;
42
  }
43
  .entityInfo {
44
    display: flex;
45
    margin-left: 1rem;
46
    flex-direction: column;
47
  }
48
 
49
  .nameContainer {
50
    display: flex;
51
    align-items: center;
52
  }
53
 
54
  .newMessage {
55
    margin-top: 0.5rem;
56
    font-size: 1rem;
57
  }
58
}
59
.addGroup {
60
  align-items: center;
61
  justify-content: center;
62
  height: 4rem;
63
  background-color: $dark-white;
64
  i {
65
    margin-right: 0.5rem;
66
  }
67
}