11---
22---
33
4- /*
5- * This file controls what is imported from /_sass
6- *
7- * Note that the files are processed in the order they are imported, so they are partly
8- sorted by the dependencies. Also, the first two lines of the file are required by Jekyll.
9- */
10-
11- @import
12- " vendor/breakpoint/breakpoint" ,
13-
14- " themes" ,
15- " theme/{{ site.site_theme | default: 'default' | append: '_light' }}" ,
16- " theme/{{ site.site_theme | default: 'default' | append: '_dark' }}" ,
17-
18- " include/mixins" ,
19- " vendor/susy/susy" ,
20-
21- " layout/reset" ,
22- " layout/base" ,
23-
24- " include/utilities" ,
25- " layout/tables" ,
26- " layout/buttons" ,
27- " layout/notices" ,
28- " layout/masthead" ,
29- " layout/navigation" ,
30- " layout/footer" ,
31- " syntax" ,
32-
33- " layout/forms" ,
34-
35- " layout/page" ,
36- " layout/archive" ,
37- " layout/sidebar" ,
38- " layout/json_cv" ,
39-
40- " vendor/font-awesome/fontawesome" ,
41- " vendor/font-awesome/solid" ,
42- " vendor/font-awesome/brands"
43- ;
4+ @import " vendor/breakpoint/breakpoint" ;
5+ @import " themes" ;
6+
7+ /* Using 'default' explicitly to avoid bracket errors */
8+ @import " theme/default_light" ;
9+ @import " theme/default_dark" ;
10+
11+ @import " include/mixins" ;
12+ @import " vendor/susy/susy" ;
13+
14+ @import " layout/reset" ;
15+ @import " layout/base" ;
16+ @import " include/utilities" ;
17+ @import " layout/tables" ;
18+ @import " layout/buttons" ;
19+ @import " layout/notices" ;
20+ @import " layout/masthead" ;
21+ @import " layout/navigation" ;
22+ @import " layout/footer" ;
23+ @import " syntax" ;
24+ @import " layout/forms" ;
25+ @import " layout/page" ;
26+ @import " layout/archive" ;
27+ @import " layout/sidebar" ;
28+ @import " layout/json_cv" ;
29+
30+ @import " vendor/font-awesome/fontawesome" ;
31+ @import " vendor/font-awesome/solid" ;
32+ @import " vendor/font-awesome/brands" ;
33+
34+ /* --- THE ICON FIX --- */
35+ .greedy-nav {
36+ display : flex !important ;
37+ flex-wrap : nowrap !important ; /* Forces the icon to stay on the header line */
38+ align-items : center !important ;
39+ }
40+
41+ .greedy-nav .nav-selector {
42+ margin-left : 10px !important ;
43+ display : flex !important ;
44+ align-items : center !important ;
45+ }
46+
47+ .map-container-fixed {
48+ clear : both !important ;
49+ margin-top : 3rem !important ;
50+ }
0 commit comments