-
Notifications
You must be signed in to change notification settings - Fork 208
Expand file tree
/
Copy path_navbar_project.scss
More file actions
269 lines (247 loc) · 6.46 KB
/
Copy path_navbar_project.scss
File metadata and controls
269 lines (247 loc) · 6.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
.navbar-brand {
max-width: 280.06px;
width: 100%;
height: auto;
img {
max-width: 100%;
height: auto;
}
}
.navbar-dark {
min-height: 5rem;
padding: 0 1rem;
border-bottom: 1px solid #333;
background-color: $dark !important;
@include media-breakpoint-up(md) {
padding: 0 5rem;
}
.dropdown-menu {
background-color: $dark;
box-shadow: 0px 4px 20px 0px rgba(0, 211, 169, 0.2);
.dropdown-item {
color: $white;
&:hover {
box-shadow: $ecosystem-box-glow;
}
&:active {
background-color: "red";
}
}
.dropdown-item.active {
background-color: "black";
}
.dropdown-divider {
margin: 0.5rem 1rem;
border-top: 1px solid $primary;
}
}
}
.nav-link.active {
border-width: 1px;
// border-style: solid;
// border-image: linear-gradient(to bottom,
// rgba($dark, 0.2) 30%,
// rgba($primary, 0.3) 60%,
// $primary 90% 100%) 1;
padding-bottom: 0.3rem;
align-items: center;
justify-content: center;
align-self: center;
display: flex;
align-content: center;
padding: auto;
margin: auto;
// background-color: linear-gradient(to right, rgba($dark,.2) 30%, rgba($primary,.3) 60%, $primary 90% 100%) 1;
}
.nav-item {
margin-right: 0.75rem;
.current {
color: $primary;
}
// @media (min-width: 768px) {
// &:hover {
// .dropdown-menu {
// transform: translate(-15%, 0rem);
// }
// }
// }
.dropdown-menu {
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 180px;
justify-content: center;
padding: 0.5rem .2rem;
// padding: 0;
transform: translate(-15%, 2.5rem);
border-radius: 0.75rem;
// Hidden by default; the navbar script toggles `.show` to reveal. Animate
// via opacity + visibility (not display) so showing and hiding fade smoothly.
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
&.show {
opacity: 1;
visibility: visible;
pointer-events: auto;
transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s;
}
&::after{
content: "";
width: 5rem;
}
&--col{
flex-direction: column;
padding: 0.1rem .1rem;
}
.dropdown-item {
height: 5rem;
width: 5rem;
display: flex;
flex-direction: column;
align-items: center;
border-radius: 0.75rem;
// Smooth hover in/out for each application tile.
transition: background-color 0.25s ease, color 0.25s ease;
&:active {
background-color: "none";
}
.logo-container {
height: 2rem;
width: 2rem;
margin: 0.5rem 0;
display: flex;
align-items: center;
justify-content: center;
img {
width: 100%;
transition: filter 0.25s ease;
}
}
// span {
// margin-left: 1rem;
// }
&:hover {
color: $black;
box-shadow: $ecosystem-box-glow;
img {
filter: brightness(100) invert(1);
}
}
&--row{
flex-direction: row;
height: 3rem;
width: auto;
margin: 0.1rem 0rem;
.logo-container {
margin-right: 1rem;
}
}
}
}
}
.dropdown{
position: static;
}
// Apps/products switcher. The menu is anchored to the navbar itself (its
// nearest positioned ancestor) rather than the list item, so its containing
// block sits *above* the `.navbar-nav` scroll container. That lets it escape
// the `overflow: auto` clip that container applies below 992px, while staying
// right-aligned so the list is always fully on-screen, just below the navbar
// near the button - no matter how narrow the viewport is.
.apps-dropdown .dropdown-menu {
top: calc(100% + 0.25rem);
right: 4.5rem;
left: auto;
// Tidy 2-column tile grid with even spacing between each application.
display: grid;
grid-template-columns: repeat(2, 5rem);
gap: 1rem;
padding: 0.75rem;
width: auto;
max-width: calc(100vw - 1rem);
max-height: calc(100vh - 6rem);
overflow-y: auto;
// Slide down into place on show (overrides the shared positioning transform).
transform: translateY(-0.5rem);
&.show {
transform: translateY(0);
}
// The flex spacer and dividers are inert in this grid; gap handles spacing.
&::after { content: none; }
.dropdown-divider { display: none; }
}
.avatar-container {
cursor: pointer;
width: 2.5rem;
height: 2.5rem;
display: flex;
align-items: center;
border-radius: 50%;
background-color: #c5c5c5;
overflow: hidden;
border: 2px solid rgb(60, 73, 79);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
&:hover {
background-color: #ebebeb;
border: 2px solid rgb(0, 179, 159);
}
}
.avatar-container a img {
width: 100%;
height: 100%;
object-fit: cover;
}
// Button to toggle the apps/products switcher menu. The button is a square with a
// grid icon in the center. The icon is a single image with a transparent background
// and a grid of dots in the foreground. The button is styled to have a border and
// a background color that matches the navbar. The button is also styled to have a
// hover effect that changes the background color and the icon color. The button is
// also styled to have a focus effect that changes the border color and the icon color.
img.grid-icon {
transition: filter 0.15s ease-in-out;
&:hover {
filter: invert(.6);
}
}
// Shared ecosystem callout box (emitted by the `ecosystem-box` shortcode).
$ecosystem-box-glow: inset 0 0em 4em #ebc01766, 0 0 0 2px #ebc01766, 0.3em 0.3em 1em #ebc01733;
%ecosystem-box-base {
display: flex;
align-items: center;
font-style: italic;
gap: 0.5rem;
padding: 1rem;
margin: auto -1rem;
transition: box-shadow 0.3s ease;
text-decoration: none;
color: inherit;
img {
height: 65px;
width: 65px;
border: 0;
background: transparent;
}
}
.highlight-box {
@extend %ecosystem-box-base;
box-shadow: $ecosystem-box-glow;
/* Yield the glow when a following hidden box is hovered/focused */
&:has(~ .hidden-highlight-box:hover),
&:has(~ .hidden-highlight-box:focus) {
box-shadow: none;
}
}
.hidden-highlight-box {
@extend %ecosystem-box-base;
box-shadow: none;
&:hover {
box-shadow: $ecosystem-box-glow;
}
/* Hide the sibling highlight-box's shadow when this one is hovered/focused */
&:hover ~ .highlight-box,
&:focus ~ .highlight-box {
box-shadow: none;
}
}