PluginProbe ʕ •ᴥ•ʔ
Booking for Appointments and Events Calendar – Amelia / 2.4.8
Booking for Appointments and Events Calendar – Amelia v2.4.8
2.4.8 2.4.7 2.4.6 2.4.5 2.4.4 2.4.3 2.4.2 2.4.1 2.4 trunk 1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.15 1.2.16 1.2.17 1.2.18 1.2.19 1.2.2 1.2.20 1.2.21 1.2.22 1.2.23 1.2.24 1.2.25 1.2.26 1.2.27 1.2.28 1.2.29 1.2.3 1.2.30 1.2.31 1.2.32 1.2.33 1.2.34 1.2.35 1.2.36 1.2.37 1.2.38 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.1.3 2.2 2.2.1 2.3
ameliabooking / v3 / src / assets / scss / common / variables / _event-form-variables.scss
ameliabooking / v3 / src / assets / scss / common / variables Last commit date
_breakpoints.scss 1 month ago _event-form-variables.scss 1 month ago _variables-fonts.scss 1 month ago
_event-form-variables.scss
53 lines
1 :root {
2 // Colors
3 // shortcuts
4 // -c- color
5 // -bgr- background
6 // -prim- primary
7 // -sec- secondary
8 // primitive colors
9 --am-c-primary: #{$blue-1000};
10 --am-c-success: #{$green-1000};
11 --am-c-error: #{$red-900};
12 --am-c-warning: #{$yellow-1000};
13
14 // main container colors - right part of the form
15 --am-c-main-bgr: #{$am-white};
16 --am-c-main-heading-text: #{$shade-800};
17 --am-c-main-text: #{$shade-900};
18
19 // sidebar container colors - left part of the form
20 --am-c-sb-bgr: #17295a;
21 --am-c-sb-text: #{$am-white};
22
23 // input global colors - usage input, textarea, checkbox, radio button, select input, adv select input
24 --am-c-inp-bgr: #{$am-white};
25 --am-c-inp-border: #{$shade-250};
26 --am-c-inp-text: #{$shade-900};
27 --am-c-inp-placeholder: #{$shade-500};
28
29 // dropdown global colors - usage select dropdown, adv select dropdown
30 --am-c-drop-bgr: #{$am-white};
31 --am-c-drop-text: #{$shade-1000};
32
33 // button global colors
34 --am-c-btn-prim: #{$blue-900};
35 --am-c-btn-prim-text: #{$am-white};
36 --am-c-btn-sec: #{$am-white};
37 --am-c-btn-sec-text: #{$shade-900};
38
39 // Properties
40 // shortcuts
41 // -h- height
42 // -fs- font size
43 // -rad- border radius
44 --am-h-inp: 40px;
45 --am-fs-inp: 15px;
46 --am-rad-inp: 6px;
47 --am-fs-label: 15px;
48 --am-fs-btn: 15px;
49
50 // Font
51 --am-font-family: 'Amelia Roboto', sans-serif;
52 }
53