Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 5462 Rev 5463
Línea 75... Línea 75...
75
      }
75
      }
76
    }
76
    }
77
  }
77
  }
78
}
78
}
Línea 79... Línea -...
79
 
-
 
80
.aditional_links {
-
 
81
  display: none;
-
 
82
  position: absolute;
-
 
83
  top: 100%;
-
 
84
  left: 50%;
-
 
85
  transform: translateX(-50%);
-
 
86
  z-index: 1000;
-
 
87
  background-color: $bg-color;
-
 
88
  border-radius: $border-radius;
-
 
89
  box-shadow: $shadow;
-
 
90
 
-
 
91
  ul {
-
 
92
    display: flex;
-
 
93
    flex-direction: column;
-
 
94
    padding: 1rem;
-
 
95
    gap: 0.5rem;
-
 
96
 
-
 
97
    li {
-
 
98
      position: relative;
-
 
99
 
-
 
100
      a {
-
 
101
        font-size: 1.1rem;
-
 
102
        display: flex;
-
 
103
 
-
 
104
        &:hover {
-
 
105
          font-weight: bold;
-
 
106
        }
-
 
107
      }
-
 
108
    }
-
 
109
  }
-
 
110
}
-
 
111
 
79
 
112
.navLinkDropdown,
80
.navLinkDropdown,
-
 
81
.navigation-level_three,
113
.navigation-level_three {
82
.aditional_links {
114
  background-color: $bg-color;
83
  background-color: $bg-color;
115
  border-radius: $border-radius;
84
  border-radius: $border-radius;
116
  box-shadow: $shadow;
85
  box-shadow: $shadow;
117
  display: none;
86
  display: none;
Línea 129... Línea 98...
129
    li {
98
    li {
130
      display: flex;
99
      display: flex;
131
      gap: 1rem;
100
      gap: 1rem;
132
      position: relative;
101
      position: relative;
Línea 133... Línea -...
133
 
-
 
134
      a {
-
 
135
        max-width: 30ch;
-
 
136
 
102
 
137
        &:hover {
103
      a:hover {
138
          text-shadow: 0 0 0 $font-color;
-
 
139
        }
104
        text-shadow: 0 0 0 $font-color;
140
      }
105
      }
141
    }
106
    }
142
  }
107
  }
Línea 143... Línea 108...
143
}
108
}
144
 
109
 
145
.navigation-level_three {
110
.navigation-level_three {
146
  top: -10%;
111
  top: -10%;
147
  left: 100%;
112
  left: 100%;
-
 
113
  max-height: 20rem;
-
 
114
  overflow: auto;
-
 
115
 
-
 
116
  a {
148
  max-height: 20rem;
117
    max-width: 30ch;
Línea 149... Línea 118...
149
  overflow: auto;
118
  }
150
}
119
}
Línea 151... Línea 120...
151
 
120
 
152
.navLinkDropdown {
121
.navLinkDropdown {
153
  transform: translateX(-35%);
122
  transform: translateX(-35%);
154
 
123
 
Línea -... Línea 124...
-
 
124
  li:hover .navigation-level_three {
-
 
125
    display: block;
-
 
126
  }
-
 
127
}
155
  li:hover .navigation-level_three {
128
 
156
    display: block;
129
.aditional_links {
157
  }
130
  transform: translateX(-50%);
158
}
131
}
159
 
132