blob: 2568637f5f157ddf856842d4449ef622cb7058fd [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;
Michael Davis272297b2017-04-24 12:11:53 -050017 display: block;
Michael Davis19475752017-02-23 18:30:23 -060018 li {
19 margin: 0;
20 }
Michael Daviscb8bb192017-02-09 15:45:13 -060021 .button, button, a {
22 background: transparent;
23 height: auto;
24 border: 0;
25 color: $white;
26 fill: $white;
27 width: 100%;
28 padding: 1em;
29 display: block;
30 text-align: center;
31 margin-bottom: 0;
32 white-space: normal;
Michael Davis19475752017-02-23 18:30:23 -060033 border-radius: 0;
Michael Davis272297b2017-04-24 12:11:53 -050034 text-decoration: none;
Michael Daviscb8bb192017-02-09 15:45:13 -060035 .nav__icon {
36 color: $white;
37 max-height: 40px;
38 stroke-width: .5;
39 margin-bottom: -.5em;
40 }
41 a {
42 margin-bottom: 5px;
43 }
Michael Davis0f03ad12017-02-27 16:54:18 -060044 span {
45 margin: 1em 0 0 0;
46 display: block;
Michael Daviscb8bb192017-02-09 15:45:13 -060047 font-size: .9em;
Michael Davis0f03ad12017-02-27 16:54:18 -060048 font-weight: normal;
49 line-height: 1rem;
Michael Daviscb8bb192017-02-09 15:45:13 -060050 }
51
52 .nav__icon-help__outer {
53 fill: transparent;
54 stroke: $white;
55 stroke-miterlimit: 10;
56 stroke-width: 1px;
57 }
58 .nav__icon-help__Inner {
59 fill: $white;
60 }
61 &:hover {
Michael Davis19475752017-02-23 18:30:23 -060062 background: $nav__second-level-color;
Michael Daviscb8bb192017-02-09 15:45:13 -060063 fill: $black;
64 color: $black;
65 padding: 1em;
66 border-radius: 0;
67 .nav__icon-help__outer {
68 stroke: $black;
69 }
70 .nav__icon-help__inner {
Michael Davis19475752017-02-23 18:30:23 -060071 fill: $lightbg__primary;
Michael Daviscb8bb192017-02-09 15:45:13 -060072 }
73 }
74 }
75 .opened {
Michael Davis19475752017-02-23 18:30:23 -060076 background: $nav__second-level-color;
Michael Daviscb8bb192017-02-09 15:45:13 -060077 fill: $black;
78 color: $black;
Michael Davis19475752017-02-23 18:30:23 -060079 .nav__icon-help__outer {
80 stroke: $lightbg__primary;
81 }
Michael Daviscb8bb192017-02-09 15:45:13 -060082 }
83}
84
Michael Davis19475752017-02-23 18:30:23 -060085// Second Level Navigation
Michael Daviscb8bb192017-02-09 15:45:13 -060086.nav__second-level {
87 position: fixed;
Michael Davis19475752017-02-23 18:30:23 -060088 background: $nav__second-level-color;
Michael Daviscb8bb192017-02-09 15:45:13 -060089 top: 0;
90 bottom: 0;
Michael Davis272297b2017-04-24 12:11:53 -050091 left: 0;
Michael Davis19475752017-02-23 18:30:23 -060092 width: $nav__seclvlWidth;
Michael Davis272297b2017-04-24 12:11:53 -050093 z-index: 0;
Michael Davis19475752017-02-23 18:30:23 -060094 padding: 0;
Michael Daviscb8bb192017-02-09 15:45:13 -060095 margin: 0;
Michael Davis0f03ad12017-02-27 16:54:18 -060096 display: none;
Michael Daviscb8bb192017-02-09 15:45:13 -060097 list-style-type: none;
Michael Davisc5626182017-03-10 15:48:05 -060098 @include fastTransition-all;
Michael Davis19475752017-02-23 18:30:23 -060099 @include mediaQuery(medium) {
Michael Davis272297b2017-04-24 12:11:53 -0500100 left: 0;
Michael Davis57738ea2017-03-06 23:21:19 -0600101 &.btn-overview {
Michael Davis272297b2017-04-24 12:11:53 -0500102 display: none;
Michael Davis57738ea2017-03-06 23:21:19 -0600103 }
Michael Davis19475752017-02-23 18:30:23 -0600104 }
Michael Daviscb8bb192017-02-09 15:45:13 -0600105 &.opened {
Michael Davis19475752017-02-23 18:30:23 -0600106 left: $nav__toplvlWidth;
Michael Davis272297b2017-04-24 12:11:53 -0500107 z-index: 100;
Michael Davis0f03ad12017-02-27 16:54:18 -0600108 display: block;
Michael Davis19475752017-02-23 18:30:23 -0600109 @include fastTransition-all;
110 }
Michael Davis57738ea2017-03-06 23:21:19 -0600111
Michael Davis19475752017-02-23 18:30:23 -0600112 a {
Michael Davise15a9562017-03-03 14:30:24 -0600113 padding: 1.2em 1em 1.2em 1em;
Michael Davis19475752017-02-23 18:30:23 -0600114 display: block;
115 color: $black;
116 text-decoration: none;
117 position: relative;
Michael Davis0f03ad12017-02-27 16:54:18 -0600118 font-weight: 400;
Michael Davis19475752017-02-23 18:30:23 -0600119 }
Michael Davis19475752017-02-23 18:30:23 -0600120 li {
121 a:after{
122 content: '\203A';
123 position: absolute;
124 font-size: 2em;
125 font-weight: 700;
126 top: 50%;
Michael Davis0f03ad12017-02-27 16:54:18 -0600127 right: .6em;
Michael Davis19475752017-02-23 18:30:23 -0600128 transform: translateY(-59%);
129 color: #4b5d78;
130 opacity: 0;
131 }
Michael Davis0f03ad12017-02-27 16:54:18 -0600132 &.active {background: $white;}
Michael Davis19475752017-02-23 18:30:23 -0600133 &.active,
134 &:focus,
135 &:hover {
Michael Davis0f03ad12017-02-27 16:54:18 -0600136 a {color: #4b5d78;}
Michael Davis19475752017-02-23 18:30:23 -0600137 a:after {
138 opacity: 1;
Michael Davis0f03ad12017-02-27 16:54:18 -0600139 right: .3em;
Michael Davis19475752017-02-23 18:30:23 -0600140 @include fastTransition-all;
141 }
142 }
Michael Daviscb8bb192017-02-09 15:45:13 -0600143 }
144}