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