Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5455 | Rev 5458 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 5455 Rev 5456
Línea 30... Línea 30...
30
  border: 1px solid $border-primary;
30
  border: 1px solid $border-primary;
31
  padding: 1rem;
31
  padding: 1rem;
32
  position: absolute;
32
  position: absolute;
33
  right: 0;
33
  right: 0;
34
  top: calc(100% + 0.5rem);
34
  top: calc(100% + 0.5rem);
-
 
35
  transition: transform 200ms;
35
  z-index: 200;
36
  z-index: 200;
Línea 36... Línea 37...
36
 
37
 
37
  ul {
38
  ul {
38
    display: flex;
39
    display: flex;
Línea 43... Línea 44...
43
      color: $font-color;
44
      color: $font-color;
Línea 44... Línea 45...
44
 
45
 
45
      &:hover {
46
      &:hover {
46
        text-shadow: 0 0 0 $font-color;
47
        text-shadow: 0 0 0 $font-color;
-
 
48
      }
Línea 47... Línea 49...
47
      }
49
    }
48
 
50
 
Línea 49... Línea 51...
49
      &:is(:last-child) {
51
    li:is(:last-child) a {
50
        font-weight: 600;
52
      font-weight: 600;
51
 
-
 
52
        &:hover {
53
 
53
          color: $danger;
54
      &:hover {
54
        }
55
        text-shadow: 0 0 0 $danger;
55
      }
56
      }
Línea 56... Línea 57...
56
    }
57
    }
57
  }
58
  }
58
}
-
 
59
 
59
}
Línea 60... Línea 60...
60
.fadeIn {
60
 
61
  transform-origin: top;
-
 
62
  animation: fadeIn 0.3s;
-
 
63
}
-
 
64
 
-
 
65
.fadeOut {
-
 
66
  transform-origin: bottom;
-
 
67
  animation: fadeOut 0.3s;
61
.fadeIn {
68
}
-
 
69
 
-
 
70
@keyframes fadeIn {
-
 
71
  0% {
-
 
72
    transform: scaleY(0);
-
 
73
  }
-
 
74
 
-
 
75
  100% {
-
 
76
    transform: scaleY(1);
-
 
77
  }
-
 
78
}
-
 
79
 
-
 
80
@keyframes fadeOut {
-
 
81
  0% {
-
 
82
    transform: scaleY(1);
-
 
83
  }
62
  transform: scaleY(1);
84
 
63
}