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.s.selected
53 {
54   @extend .button;
55   @extend .is-primary;
56   @extend .is-rounded;
57   @extend .has-text-weight-bold;
58   @extend .mb-3;
59 }
60 #navigation li.s > a.s.selected:after
61 {
62   content: "\f0ab";
63   padding-left: .5em;
64   margin-right: -.5em;
65   font-family: 'Font Awesome 5 Free';
66   font-weight: 900;
67   font-size: 2em;
68   -webkit-font-smoothing: antialiased;
69   display: inline-block;
70   font-style: normal;
71   font-variant: normal;
72   text-rendering: auto;
73   line-height: 1;
74 }
75 #navigation li.s > a.s.selected,
76 #navigation li.s > strong.s
77 {
78   color: $primary;
79 }