blob: 3baa2145a0b5fd0bcef0e742bc1728c199bde94d [file] [log] [blame]
Iftekharul Islamcd789502017-04-19 14:37:55 -05001$nav__toplvlWidth: 125px;
Michael Davis19475752017-02-23 18:30:23 -06002$nav__seclvlWidth: 240px;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -05003$nav__top-level-color: $base-01--01;
4$nav__second-level-color: $base-02--06;
5$nav__second-level-text-color: $base-02--01;
Michael Davis19475752017-02-23 18:30:23 -06006
Michael Davis44621a82017-07-31 18:18:32 -05007//Navigation icons
8@mixin navIcons {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -05009 color: $primary-light;
10 fill: $primary-light;
Michael Davis44621a82017-07-31 18:18:32 -050011 max-height: 40px;
12 stroke-width: .5;
13 display: block;
Yoshie Muranakac86ce3c2019-06-05 12:30:30 -050014 margin: .5em auto;
15 overflow: hidden;
Michael Davis44621a82017-07-31 18:18:32 -050016 .st0 {
17 fill: none;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050018 stroke: $primary-light;
Michael Davis44621a82017-07-31 18:18:32 -050019 stroke-width: 2;
20 stroke-miterlimit: 10;
21 }
22 .st1 {
23 fill: none;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050024 stroke: $primary-light;
Michael Davis44621a82017-07-31 18:18:32 -050025 stroke-width: 4;
26 stroke-miterlimit: 10;
27 }
28}
29
Iftekharul Islam8947e702017-07-27 10:28:07 -050030.nav__wrapper {
31 height: 100%;
32 position: fixed;
33 top: 0;
34 z-index: 100;
35}
36
Michael Davis19475752017-02-23 18:30:23 -060037// Top level navigation
Michael Daviscb8bb192017-02-09 15:45:13 -060038#nav__top-level {
Michael Davis19475752017-02-23 18:30:23 -060039 background: $nav__top-level-color;
Iftekharul Islam8947e702017-07-27 10:28:07 -050040 position: absolute;
Michael Daviscb8bb192017-02-09 15:45:13 -060041 left: 0;
42 top: 0;
43 bottom: 0;
Michael Daviscb8bb192017-02-09 15:45:13 -060044 list-style-type: none;
45 margin: 0;
Michael Davis19475752017-02-23 18:30:23 -060046 padding: 0;
47 width: $nav__toplvlWidth;
Iftekharul Islam8947e702017-07-27 10:28:07 -050048 overflow-y: auto;
Michael Davis19475752017-02-23 18:30:23 -060049 li {
50 margin: 0;
51 }
Yoshie Muranakac86ce3c2019-06-05 12:30:30 -050052 > li > a,
53 > li > button {
54 height: 120px;
55 }
Michael Davis51946552017-05-01 10:30:38 -050056 //svg icons
57 .nav-icon {
58 @include navIcons;
Yoshie Muranakac86ce3c2019-06-05 12:30:30 -050059 width: 100%;
60 svg {
61 width: 36px;
62 height: auto;
63 }
Michael Davis51946552017-05-01 10:30:38 -050064 }
Iftekharul Islamdb28a382017-11-02 13:16:17 -050065 .button, button, a {
Michael Daviscb8bb192017-02-09 15:45:13 -060066 background: transparent;
Michael Daviscb8bb192017-02-09 15:45:13 -060067 border: 0;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050068 color: $primary-light;
69 fill: $primary-light;
Michael Daviscb8bb192017-02-09 15:45:13 -060070 width: 100%;
Iftekharul Islamdb28a382017-11-02 13:16:17 -050071 padding: 1em;
Michael Daviscb8bb192017-02-09 15:45:13 -060072 display: block;
73 text-align: center;
74 margin-bottom: 0;
75 white-space: normal;
Michael Davis19475752017-02-23 18:30:23 -060076 border-radius: 0;
Michael Davis71ec7452017-04-24 16:28:57 -050077 text-decoration: none;
Michael Davis51946552017-05-01 10:30:38 -050078 border-top: 1px solid transparent;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050079 border-bottom: 1px solid $border-color-02;
Yoshie Muranakac86ce3c2019-06-05 12:30:30 -050080 font-weight: normal;
81 font-size: .9em;
82 line-height: 1.2;
Michael Daviscb8bb192017-02-09 15:45:13 -060083 &:hover {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050084 background: $primary-light;
85 fill: $primary-dark;
86 color: $primary-action;
Iftekharul Islamdb28a382017-11-02 13:16:17 -050087 padding: 1em;
Michael Daviscb8bb192017-02-09 15:45:13 -060088 border-radius: 0;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050089 border-bottom: 1px solid $border-color-01;
Michael Daviscb8bb192017-02-09 15:45:13 -060090 .nav__icon-help__outer {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050091 stroke: $primary-dark;
Michael Daviscb8bb192017-02-09 15:45:13 -060092 }
93 .nav__icon-help__inner {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050094 fill: $primary-action;
Michael Daviscb8bb192017-02-09 15:45:13 -060095 }
Michael Davis51946552017-05-01 10:30:38 -050096 .nav-icon {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050097 fill: $primary-action;
98 color: $primary-action;
Michael Davis51946552017-05-01 10:30:38 -050099 .st0 {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -0500100 stroke: $primary-action;
Michael Davis51946552017-05-01 10:30:38 -0500101 }
102 .st1 {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -0500103 fill: $primary-action;
104 color: $primary-action;
105 stroke: $primary-action;
Michael Davis51946552017-05-01 10:30:38 -0500106 }
107 }
Michael Daviscb8bb192017-02-09 15:45:13 -0600108 }
109 }
110 .opened {
Michael Davis19475752017-02-23 18:30:23 -0600111 background: $nav__second-level-color;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -0500112 fill: $primary-dark;
113 color: darken($primary-action, 10%);
114 border-bottom: 1px solid $border-color-01;
Michael Davis51946552017-05-01 10:30:38 -0500115 .nav-icon {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -0500116 fill: $primary-action;
117 color: $primary-action;
Michael Davis51946552017-05-01 10:30:38 -0500118 .st0 {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -0500119 stroke: $primary-action;
Michael Davis51946552017-05-01 10:30:38 -0500120 }
121 .st1 {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -0500122 fill: $primary-action;
123 color: $primary-action;
124 stroke: $primary-action;
Michael Davis51946552017-05-01 10:30:38 -0500125 }
126 }
Michael Daviscb8bb192017-02-09 15:45:13 -0600127 }
Michael Daviscb8bb192017-02-09 15:45:13 -0600128
Yoshie Muranaka21f8cb92019-05-22 10:02:52 -0500129 // Second Level Navigation
130 .nav__second-level {
131 position: fixed;
132 background: $nav__second-level-color;
133 top: 0;
134 bottom: 0;
135 left: -245px;
136 width: $nav__seclvlWidth;
137 z-index: -1;
138 padding: 0;
139 margin: 0;
140 list-style-type: none;
Michael Davis19475752017-02-23 18:30:23 -0600141 display: block;
Yoshie Muranaka21f8cb92019-05-22 10:02:52 -0500142 @include fastTransition-all;
143 &.opened {
144 left: $nav__toplvlWidth;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -0500145 box-shadow: 7px 0 28px -10px $base-02--02;
Yoshie Muranaka21f8cb92019-05-22 10:02:52 -0500146 @include fastTransition-all;
Ryan Arnellcc619bd2018-10-17 13:32:40 -0500147 }
Yoshie Muranaka21f8cb92019-05-22 10:02:52 -0500148 a {
149 padding: 1.2em 1em 1.2em 1em;
150 display: block;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -0500151 color: $primary-dark;
Yoshie Muranaka21f8cb92019-05-22 10:02:52 -0500152 text-decoration: none;
153 position: relative;
154 font-weight: 400;
155 text-align: left;
156 border-bottom: 1px solid transparent;
157 &:hover {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -0500158 background: $primary-light;
Yoshie Muranaka21f8cb92019-05-22 10:02:52 -0500159 }
160 }
Michael Daviscb8bb192017-02-09 15:45:13 -0600161
Yoshie Muranaka21f8cb92019-05-22 10:02:52 -0500162 li {
163 a:after{
164 content: '\203A';
165 position: absolute;
166 font-size: 2em;
167 font-weight: 700;
168 top: 50%;
169 right: .6em;
170 transform: translateY(-59%);
171 color: $nav__second-level-text-color;
172 opacity: 0;
173 }
174 &.active {
175 a {font-weight: 700;}
176 }
177 &.active,
178 &:focus,
179 &:hover {
180 a {color: $nav__second-level-text-color;}
181 a:after {
182 opacity: 1;
183 right: .3em;
184 @include fastTransition-all;
185 }
Michael Davis19475752017-02-23 18:30:23 -0600186 }
187 }
Michael Daviscb8bb192017-02-09 15:45:13 -0600188 }
Iftekharul Islamdb28a382017-11-02 13:16:17 -0500189}