Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6707 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 6707 Rev 6753
Línea 1... Línea 1...
1
.responsiveNavbar {
1
.responsive_navbar {
2
  display: flex;
2
  display: flex;
3
  flex-direction: column;
3
  flex-direction: column;
4
  gap: 1rem;
4
  gap: 1rem;
5
  position: fixed;
5
  position: fixed;
6
  top: 0;
6
  top: 0;
-
 
7
  left: -70vw;
7
  width: 70vw;
8
  width: 70vw;
8
  height: 100vh;
9
  height: 100vh;
9
  background: $bg-color;
10
  background: $bg-color;
10
  overflow-y: scroll;
11
  overflow-y: scroll;
11
  z-index: 1000;
12
  z-index: 1000;
-
 
13
  transition: all 300ms ease;
Línea 12... Línea 14...
12
 
14
 
13
  ul {
-
 
14
    display: flex;
-
 
15
    flex-direction: column;
-
 
16
    justify-content: center;
15
  &.show {
17
    gap: 0.5rem;
-
 
18
 
-
 
19
    a {
-
 
20
      color: $font-color;
-
 
21
      font-size: 1rem;
-
 
22
 
-
 
23
      &:hover {
-
 
24
        font-weight: bold;
-
 
25
      }
-
 
26
    }
16
    left: 0;
27
  }
17
  }
Línea 28... Línea 18...
28
}
18
}
29
 
19
 
Línea 41... Línea 31...
41
 
31
 
42
    i {
32
    i {
43
      margin-right: 1rem;
33
      margin-right: 1rem;
44
    }
34
    }
45
  }
-
 
46
}
-
 
47
 
-
 
48
.slideIn {
-
 
49
  transform: translateX(0);
-
 
50
}
-
 
51
 
-
 
52
.slideOut {
-
 
53
  transform: translateX(-100%);
35
  }
54
}
36
}