blob: 7a2d33c110c0e297cc4fc714ded0c9779737765d [file] [log] [blame]
Michael Davis19475752017-02-23 18:30:23 -06001$nav__toplvlWidth: 120px;
2$nav__seclvlWidth: 240px;
3
4// Top level navigation
Michael Daviscb8bb192017-02-09 15:45:13 -06005#nav__top-level {
Michael Davis19475752017-02-23 18:30:23 -06006 background: $nav__top-level-color;
Michael Daviscb8bb192017-02-09 15:45:13 -06007 height: 100%;
8 position: fixed;
9 left: 0;
10 top: 0;
11 bottom: 0;
12 z-index: 99;
13 list-style-type: none;
14 margin: 0;
Michael Davis19475752017-02-23 18:30:23 -060015 padding: 0;
16 width: $nav__toplvlWidth;
17 li {
18 margin: 0;
19 }
Michael Daviscb8bb192017-02-09 15:45:13 -060020 .button, button, a {
21 background: transparent;
22 height: auto;
23 border: 0;
24 color: $white;
25 fill: $white;
26 width: 100%;
27 padding: 1em;
28 display: block;
29 text-align: center;
30 margin-bottom: 0;
31 white-space: normal;
Michael Davis19475752017-02-23 18:30:23 -060032 border-radius: 0;
Michael Daviscb8bb192017-02-09 15:45:13 -060033 .nav__icon {
34 color: $white;
35 max-height: 40px;
36 stroke-width: .5;
37 margin-bottom: -.5em;
38 }
39 a {
40 margin-bottom: 5px;
41 }
Michael Davis0f03ad12017-02-27 16:54:18 -060042 span {
43 margin: 1em 0 0 0;
44 display: block;
Michael Daviscb8bb192017-02-09 15:45:13 -060045 font-size: .9em;
Michael Davis0f03ad12017-02-27 16:54:18 -060046 font-weight: normal;
47 line-height: 1rem;
Michael Daviscb8bb192017-02-09 15:45:13 -060048 }
49
50 .nav__icon-help__outer {
51 fill: transparent;
52 stroke: $white;
53 stroke-miterlimit: 10;
54 stroke-width: 1px;
55 }
56 .nav__icon-help__Inner {
57 fill: $white;
58 }
59 &:hover {
Michael Davis19475752017-02-23 18:30:23 -060060 background: $nav__second-level-color;
Michael Daviscb8bb192017-02-09 15:45:13 -060061 fill: $black;
62 color: $black;
63 padding: 1em;
64 border-radius: 0;
65 .nav__icon-help__outer {
66 stroke: $black;
67 }
68 .nav__icon-help__inner {
Michael Davis19475752017-02-23 18:30:23 -060069 fill: $lightbg__primary;
Michael Daviscb8bb192017-02-09 15:45:13 -060070 }
71 }
72 }
73 .opened {
Michael Davis19475752017-02-23 18:30:23 -060074 background: $nav__second-level-color;
Michael Daviscb8bb192017-02-09 15:45:13 -060075 fill: $black;
76 color: $black;
Michael Davis19475752017-02-23 18:30:23 -060077 .nav__icon-help__outer {
78 stroke: $lightbg__primary;
79 }
Michael Daviscb8bb192017-02-09 15:45:13 -060080 }
81}
82
Michael Davis19475752017-02-23 18:30:23 -060083// Second Level Navigation
Michael Daviscb8bb192017-02-09 15:45:13 -060084.nav__second-level {
85 position: fixed;
Michael Davis19475752017-02-23 18:30:23 -060086 background: $nav__second-level-color;
Michael Daviscb8bb192017-02-09 15:45:13 -060087 top: 0;
88 bottom: 0;
Michael Davis19475752017-02-23 18:30:23 -060089 left: -$nav__toplvlWidth;
90 width: $nav__seclvlWidth;
Michael Daviscb8bb192017-02-09 15:45:13 -060091 z-index: 97;
Michael Davis19475752017-02-23 18:30:23 -060092 padding: 0;
Michael Daviscb8bb192017-02-09 15:45:13 -060093 margin: 0;
Michael Davis0f03ad12017-02-27 16:54:18 -060094 display: none;
Michael Daviscb8bb192017-02-09 15:45:13 -060095 list-style-type: none;
Michael Davis19475752017-02-23 18:30:23 -060096 transition: left .5s ease;
97 @include mediaQuery(medium) {
98 left: $nav__toplvlWidth;
99 }
Michael Davis0f03ad12017-02-27 16:54:18 -0600100 &.btn-overview {
Michael Davis19475752017-02-23 18:30:23 -0600101 display: block;
102 }
Michael Daviscb8bb192017-02-09 15:45:13 -0600103 &.opened {
Michael Davis19475752017-02-23 18:30:23 -0600104 left: $nav__toplvlWidth;
Michael Davis0f03ad12017-02-27 16:54:18 -0600105 display: block;
Michael Davis19475752017-02-23 18:30:23 -0600106 @include fastTransition-all;
107 }
108 a {
Michael Davis0f03ad12017-02-27 16:54:18 -0600109 padding: 1.2em .6em 1.2em 1em;
Michael Davis19475752017-02-23 18:30:23 -0600110 display: block;
111 color: $black;
112 text-decoration: none;
113 position: relative;
Michael Davis0f03ad12017-02-27 16:54:18 -0600114 font-weight: 400;
Michael Davis19475752017-02-23 18:30:23 -0600115 }
Michael Daviscb8bb192017-02-09 15:45:13 -0600116
Michael Davis19475752017-02-23 18:30:23 -0600117 li {
118 a:after{
119 content: '\203A';
120 position: absolute;
121 font-size: 2em;
122 font-weight: 700;
123 top: 50%;
Michael Davis0f03ad12017-02-27 16:54:18 -0600124 right: .6em;
Michael Davis19475752017-02-23 18:30:23 -0600125 transform: translateY(-59%);
126 color: #4b5d78;
127 opacity: 0;
128 }
Michael Davis0f03ad12017-02-27 16:54:18 -0600129 &.active {background: $white;}
Michael Davis19475752017-02-23 18:30:23 -0600130 &.active,
131 &:focus,
132 &:hover {
Michael Davis0f03ad12017-02-27 16:54:18 -0600133 a {color: #4b5d78;}
Michael Davis19475752017-02-23 18:30:23 -0600134 a:after {
135 opacity: 1;
Michael Davis0f03ad12017-02-27 16:54:18 -0600136 right: .3em;
Michael Davis19475752017-02-23 18:30:23 -0600137 @include fastTransition-all;
138 }
139 }
Michael Daviscb8bb192017-02-09 15:45:13 -0600140 }
141}