WIP:bulma:neu
[website] / sass / juplo.scss
1 @charset "utf-8";
2
3 // Customization
4
5 // You can easily customize Bulma with your own variables.
6 // Just uncomment the following block to see the result.
7
8 /*
9 // 1. Import the initial variables
10 @import "../node_modules/bulma/sass/utilities/initial-variables";
11
12 // 2. Set your own initial variables
13 // Update the blue shade, used for links
14 $blue: #06bcef;
15 // Add pink and its invert
16 $pink: #ff8080;
17 $pink-invert: #fff;
18 // Update the sans-serif font family
19 $family-sans-serif: "Helvetica", "Arial", sans-serif;
20
21 // 3. Set the derived variables
22 // Use the new pink as the primary color
23 $primary: $pink;
24 $primary-invert: $pink-invert;
25
26 // 4. Import the rest of Bulma
27 */
28
29 $primary: #0ACF00;
30 $button-text-color: #FFF !important;
31 $button-border-color: #000 !important;
32 $button-hover-border-color: #000 !important;
33
34 @import "../node_modules/bulma/bulma";
35 @import "../node_modules/@fortawesome/fontawesome-free/scss/fontawesome";
36 @import "../node_modules/@fortawesome/fontawesome-free/scss/regular";
37 @import "../node_modules/@fortawesome/fontawesome-free/scss/solid";
38 @import "../node_modules/@fortawesome/fontawesome-free/scss/brands";
39
40 .navbar-item > .logo
41 {
42   max-height: none;
43 }
44
45
46 // Navigation
47
48 #navigation li.s.off
49 {
50   display: none;
51 }
52 #navigation li.s > a.selected,
53 #navigation li.s > a.leaf,
54 #navigation li.s > strong.selected,
55 #navigation li.s > strong.leaf
56 {
57   @extend .button;
58   @extend .is-primary;
59   @extend .is-rounded;
60   @extend .has-text-weight-bold;
61   @extend .mb-3;
62 }
63 #navigation li.s > a.leaf,
64 #navigation li.s > strong.leaf
65 {
66   color: #ccc;
67   background-color: #fff;
68 }
69 #navigation li.s > a.selected:after,
70 #navigation li.s > a.leaf:after,
71 #navigation li.s > strong.selected:after,
72 #navigation li.s > strong.leaf:after
73 {
74   content: "\f0a8";
75   padding-left: .5em;
76   margin-right: -.5em;
77   font-family: 'Font Awesome 5 Free';
78   font-weight: 900;
79   font-size: 2em;
80   -webkit-font-smoothing: antialiased;
81   display: inline-block;
82   font-style: normal;
83   font-variant: normal;
84   text-rendering: auto;
85   line-height: 1;
86 }
87 #navigation li.s > a.leaf:after,
88 #navigation li.s > strong.leaf:after
89 {
90   color: #fff;
91 }
92 #navigation li.s.sub > a.selected:after,
93 #navigation li.s.sub > a.selected:after,
94 #navigation li.s.sub > strong.leaf:after,
95 #navigation li.s.sub > strong.leaf:after
96 {
97   content: "\f0ab";
98 }