|
@@ -69,9 +69,9 @@ a {
|
|
|
.site-branding {
|
|
|
margin: 0;
|
|
|
margin-right: auto;
|
|
|
- padding-bottom: #{0.27 * map-deep-get($config-global, "spacing", "vertical")};
|
|
|
+ padding-bottom: #{0.25 * map-deep-get($config-global, "spacing", "vertical")};
|
|
|
padding-right: #{map-deep-get($config-global, "spacing", "horizontal")};
|
|
|
- padding-top: #{0.27 * map-deep-get($config-global, "spacing", "vertical")};
|
|
|
+ padding-top: #{0.25 * map-deep-get($config-global, "spacing", "vertical")};
|
|
|
text-align: inherit;
|
|
|
|
|
|
@include media(mobile) {
|
|
@@ -182,11 +182,37 @@ a {
|
|
|
}
|
|
|
|
|
|
// Toggle Menu
|
|
|
-.main-navigation #toggle:focus + #toggle-menu,
|
|
|
+#site-navigation #toggle:focus + #toggle-menu,
|
|
|
#toggle-menu {
|
|
|
text-decoration: none;
|
|
|
}
|
|
|
|
|
|
+#site-navigation #toggle-menu {
|
|
|
+ align-items: center;
|
|
|
+ display: flex;
|
|
|
+ padding: #{0.5 * map-deep-get($config-global, "spacing", "unit")} #{map-deep-get($config-global, "spacing", "unit")};
|
|
|
+
|
|
|
+ &:after {
|
|
|
+ content: "";
|
|
|
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z'/%3E%3C/svg%3E");
|
|
|
+ display: block;
|
|
|
+ height: 24px;
|
|
|
+ margin: 0;
|
|
|
+ margin-left: #{0.25 * map-deep-get($config-global, "spacing", "unit")};
|
|
|
+ width: 24px;
|
|
|
+ }
|
|
|
+
|
|
|
+ @include media(mobile) {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+#site-navigation #toggle:checked + #toggle-menu {
|
|
|
+ &:after {
|
|
|
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'%3E%3C/path%3E%3C/svg%3E");
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
/**
|
|
|
* Content Area
|
|
|
*/
|