2019-06-25 21:28:56 -07:00
|
|
|
#navigation {
|
|
|
|
@apply .w-full .bg-neutral-900 .shadow-md;
|
2018-05-26 17:20:36 -07:00
|
|
|
|
2019-06-25 21:28:56 -07:00
|
|
|
& > div {
|
|
|
|
@apply .mx-auto .w-full .flex .items-center;
|
2018-05-26 17:20:36 -07:00
|
|
|
}
|
|
|
|
|
2019-06-25 21:28:56 -07:00
|
|
|
& #logo {
|
|
|
|
@apply .flex-1;
|
2018-06-02 23:15:10 -07:00
|
|
|
|
2019-02-03 16:29:08 -08:00
|
|
|
& > a {
|
2019-06-25 21:28:56 -07:00
|
|
|
@apply .text-2xl .font-header .px-4 .no-underline .text-neutral-200;
|
|
|
|
transition: color 150ms linear;
|
2018-06-02 23:15:10 -07:00
|
|
|
|
2019-02-03 16:29:08 -08:00
|
|
|
&:hover {
|
2019-06-25 21:28:56 -07:00
|
|
|
@apply .text-neutral-100;
|
2019-02-03 16:29:08 -08:00
|
|
|
}
|
2018-06-02 23:15:10 -07:00
|
|
|
}
|
2018-05-26 17:20:36 -07:00
|
|
|
}
|
2019-02-03 17:27:19 -08:00
|
|
|
|
2019-06-25 21:28:56 -07:00
|
|
|
& .right-navigation {
|
|
|
|
@apply .flex .h-full .items-center .justify-center;
|
2019-02-03 17:27:19 -08:00
|
|
|
|
2020-04-03 22:39:53 -07:00
|
|
|
& > a, & > .navigation-link {
|
|
|
|
@apply .flex .items-center .h-full .no-underline .text-neutral-300 .px-6 .cursor-pointer;
|
2019-06-25 21:28:56 -07:00
|
|
|
transition: background-color 150ms linear, color 150ms linear, box-shadow 150ms ease-in;
|
2019-05-27 16:32:27 -07:00
|
|
|
|
2019-12-22 14:33:08 -08:00
|
|
|
/*! purgecss start ignore */
|
2019-06-25 21:28:56 -07:00
|
|
|
&.active, &:hover {
|
|
|
|
@apply .text-neutral-100 .bg-black;
|
|
|
|
box-shadow: inset 0 -2px config('colors.cyan-700');
|
2019-02-09 14:32:18 -08:00
|
|
|
}
|
2019-02-09 17:26:08 -08:00
|
|
|
|
2019-06-25 21:28:56 -07:00
|
|
|
&.active {
|
|
|
|
box-shadow: inset 0 -2px config('colors.cyan-500');
|
2019-02-09 17:26:08 -08:00
|
|
|
}
|
2019-12-22 14:33:08 -08:00
|
|
|
/*! purgecss end ignore */
|
2019-02-03 17:27:19 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-06-28 22:49:08 -07:00
|
|
|
|
|
|
|
#sub-navigation {
|
|
|
|
@apply .w-full .bg-neutral-700 .shadow;
|
|
|
|
|
|
|
|
.items {
|
2019-12-22 21:22:08 -08:00
|
|
|
@apply .flex .items-center .text-sm .mx-auto .px-2;
|
|
|
|
max-width: 1200px;
|
2019-06-28 22:49:08 -07:00
|
|
|
|
2019-12-22 14:33:08 -08:00
|
|
|
/*! purgecss start ignore */
|
2019-06-28 22:49:08 -07:00
|
|
|
& > a, & > div {
|
|
|
|
@apply .inline-block .py-3 .px-4 .text-neutral-300 .no-underline;
|
|
|
|
transition: color 150ms linear, box-shadow 150ms ease-in;
|
|
|
|
|
|
|
|
&:not(:first-of-type) {
|
|
|
|
@apply .ml-2;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active, &:hover {
|
|
|
|
@apply .text-neutral-100;
|
|
|
|
box-shadow: inset 0 -2px config('colors.cyan-700');
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
box-shadow: inset 0 -2px config('colors.cyan-500');
|
|
|
|
}
|
|
|
|
}
|
2019-12-22 14:33:08 -08:00
|
|
|
/*! purgecss end ignore */
|
2019-06-28 22:49:08 -07:00
|
|
|
}
|
|
|
|
}
|