PluginProbe ʕ •ᴥ•ʔ
Booking for Appointments and Events Calendar – Amelia / 1.2.20
Booking for Appointments and Events Calendar – Amelia v1.2.20
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 / assets / less / common / _base.less
ameliabooking / assets / less / common Last commit date
_animations.less 7 years ago _base.less 7 years ago _country-flags.less 5 years ago _elements.less 1 year ago _overrides.less 1 year ago _variables.less 4 years ago font.less 4 years ago rtl.less 3 years ago
_base.less
89 lines
1 @import "_variables";
2
3 .am-wrap {
4 margin: 20px 20px 20px 2px;
5
6 * {
7 -webkit-font-smoothing: antialiased;
8 -moz-osx-font-smoothing: grayscale;
9 }
10
11 @media only screen and ( max-width: 782px) {
12 margin: 16px 0;
13 }
14 }
15
16 .am-body {
17
18 font-family: @roboto;
19
20 h1 {
21 font-size: @h1-fs;
22 line-height: @h1-lh;
23 font-weight: @h1-fw;
24 color: @h1-color;
25 margin: 0;
26 }
27
28 h2 {
29 font-size: @h2-fs;
30 line-height: @h2-lh;
31 font-weight: @h2-fw;
32 color: @h2-color;
33 margin: 0;
34 }
35
36 h3 {
37 font-size: @h3-fs;
38 line-height: @h3-lh;
39 font-weight: @h3-fw;
40 color: @h3-color;
41 }
42
43 h4 {
44 font-size: @h4-fs;
45 line-height: @h4-lh;
46 font-weight: @h4-fw;
47 color: @h4-color;
48 }
49
50 div {
51 color: @color-text-prime;
52 }
53
54 p {
55 color: @color-text-prime;
56 font-size: @regular-fs;
57
58 }
59
60 section {
61 padding: @section-padding;
62 position: relative;
63 }
64
65 ul {
66 padding-left: 0;
67 }
68
69 main {
70 & section:first-child {
71 padding-top: 120px;
72 margin-top: -83px;
73 }
74
75 ul {
76 padding-left: 20px;
77
78 }
79 }
80
81 a:hover {
82 text-decoration: none;
83 }
84
85 }
86
87
88
89