PluginProbe
Forumax – AI Powered Advanced Community Forum Plugin / 2.4.3
Forumax – AI Powered Advanced Community Forum Plugin v2.4.3
2.4.4 2.4.3 2.4.2 2.4.1 2.4.0 trunk 1.0.8 1.1.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 2.0.0 2.1.0 All 29 releases
bbp-core / assets / admin / scss / abstracts / _variables.scss

_variables.scss in Forumax – AI Powered Advanced Community Forum Plugin 2.4.3, at assets/admin/scss/abstracts/_variables.scss

81 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 $container-widths: (
2 sm: 540px,
3 md: 720px,
4 lg: 960px,
5 xl: 1170px,
6 xxl: 1170px,
7 ) !default;
8
9 // Responsive Variables
10 $breakpoints: (
11 xs: 0,
12 sm: 576px,
13 md: 768px,
14 lg: 992px,
15 xl: 1200px,
16 xxl: 1441px,
17 ) !default;
18
19 $columns: 12 !default;
20 $gutter-width: 30px;
21
22 // Font Family
23
24 $font: var(--ff-roboto);
25 $global-font: $font;
26
27 //Heading H1 Responsive Font Size
28 $min_width: 20rem;
29 $max_width: 75rem;
30 $h1_min_font: 2rem;
31 $h1_max_font: 3.75rem;
32
33 //Heading H2 Responsive Font Size
34 $h2_min_font: 2rem;
35 $h2_max_font: 3rem;
36
37 //Heading H3 Responsive Font Size
38 $h3_min_font: 1.375rem;
39 $h3_max_font: 1.5rem;
40
41 //Heading H4 Responsive Font Size
42 $h4_min_font: 1rem;
43 $h4_max_font: 1.125rem;
44
45 // Global Font Size
46 $global-font-size: var(--fs-15);
47
48 // Global Color
49
50 // Colors ---------------
51 $black: var(--clr-black) !default;
52 $white: var(--clr-white) !default;
53 $blue: var(--frmx_brand_color);
54 $light-gree: var(--clr-light-green);
55 $sunshade: var(--clr-sunshade);
56
57 $global-color: $black !default;
58
59 $active-prefix: rem;
60
61 // Brand Color
62 $acc: #B97654;
63 $text-color: #14183E;
64 $st-color: #757575;
65 // Browser Prefixes - Which CSS prefixes should be used?
66 $webkit: true !default;
67 $moz: false !default;
68 $ms: false !default;
69 $o: false !default;
70
71 $nameSpace: true;
72
73 // Responsive Variables
74 $desktop: "(min-width: 1367px)";
75 $xl: "(min-width: 1200px)";
76 $lg: "(min-width: 992px)";
77 $md: "(min-width: 768px)";
78 $sm: "(min-width: 576px)";
79 $xsm: "(min-width: 425px)";
80 $mobile: "(max-width: 576)";
81 $xs: "(max-width: 767px)";