Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16825 efrain 1
// Icons
2
 
3
.icons-list {
4
  border-left: 1px solid $border-color;
5
  border-top: 1px solid $border-color;
6
  > div {
7
    border-bottom: 1px solid $border-color;
8
    border-right: 1px solid $border-color;
9
    background: $body-bg;
10
    display: flex;
11
    align-items: center;
12
    padding:15px 20px;
13
    font-weight: 400;
14
    transition: all .3s ease-in-out;
15
 
16
    i {
17
      display: inline-block;
18
      font-size: 20px;
19
      text-align: left;
20
      margin-right: 12px;
21
      color: $secondary;
22
      transition: all .3s ease-in-out;
23
    }
24
 
25
    svg {
26
      width: 20px;
27
      margin-right: 12px;
28
      color: $secondary;
29
      transition: all .3s ease-in-out;
30
    }
31
 
32
    &:hover {
33
      cursor: text;
34
      i,
35
      svg {
36
        transform: scale(1.3);
37
        color: $primary;
38
      }
39
    }
40
  }
41
}