@acorex/styles 5.1.2 → 5.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/_calendar.scss +6 -1
- package/src/components/_carousel.scss +4 -4
- package/src/components/_dropdown.scss +8 -4
- package/src/components/_list.scss +68 -52
- package/src/components/_menu.scss +8 -2
- package/src/components/_picker.scss +67 -7
- package/src/icons/demo-files/demo.css +152 -152
- package/src/icons/demo-files/demo.js +30 -30
- package/src/icons/demo.html +500 -500
- package/src/icons/fonts/acorex-icon.svg +42 -42
- package/src/icons/style.css +126 -126
- package/src/icons/style.scss +195 -195
- package/src/icons/variables.scss +37 -37
package/package.json
CHANGED
|
@@ -155,7 +155,12 @@
|
|
|
155
155
|
@apply ax-flex ax-justify-center ax-p-2 ax-bg-light-100 dark:ax-bg-transparent dark:ax-border-transparent;
|
|
156
156
|
}
|
|
157
157
|
}
|
|
158
|
-
|
|
158
|
+
.ax-calendar-picker{
|
|
159
|
+
@apply ax-flex ax-w-full;
|
|
160
|
+
ax-picker{
|
|
161
|
+
@apply ax-flex-1;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
159
164
|
.ax-overlay-pane
|
|
160
165
|
{
|
|
161
166
|
ax-calendar
|
|
@@ -7,26 +7,26 @@
|
|
|
7
7
|
@apply ax-border-none ax-cursor-pointer ax-bg-transparent ax-text-white ax-visible;
|
|
8
8
|
.ax-ic {
|
|
9
9
|
@apply ax-text-4xl;
|
|
10
|
+
text-shadow: 0px 0px 2px #000000;
|
|
10
11
|
}
|
|
11
12
|
}
|
|
12
|
-
.ax-vertical-arrow{
|
|
13
|
+
.ax-vertical-arrow {
|
|
13
14
|
@apply ax-absolute ax-left-1/2 ax-block;
|
|
14
15
|
transform: translate(-50%, -50%);
|
|
15
16
|
&.ax-top-arrow {
|
|
16
17
|
@apply ax-top-5;
|
|
17
18
|
.ax-ic {
|
|
18
|
-
@apply ax-block ax-rotate-90
|
|
19
|
+
@apply ax-block ax-rotate-90;
|
|
19
20
|
}
|
|
20
21
|
}
|
|
21
22
|
&.ax-bottom-arrow {
|
|
22
23
|
@apply -ax-bottom-5;
|
|
23
24
|
transform: translate(-50%, -50%);
|
|
24
25
|
.ax-ic {
|
|
25
|
-
@apply ax-block -ax-rotate-90
|
|
26
|
+
@apply ax-block -ax-rotate-90;
|
|
26
27
|
}
|
|
27
28
|
}
|
|
28
29
|
}
|
|
29
|
-
|
|
30
30
|
}
|
|
31
31
|
.ax-carousel-pager {
|
|
32
32
|
@apply ax-flex ax-my-3 ax-justify-center;
|
|
@@ -37,16 +37,20 @@
|
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
&.ax-overlay-actionsheet {
|
|
40
|
-
@apply ax-w-full;
|
|
41
|
-
height:
|
|
42
|
-
|
|
40
|
+
@apply ax-w-full ax-h-auto ax-bg-white;
|
|
41
|
+
max-height: 85vh;
|
|
42
|
+
&.ax-full
|
|
43
|
+
{
|
|
44
|
+
max-height: 95vh;
|
|
45
|
+
height:95vh;
|
|
46
|
+
}
|
|
43
47
|
}
|
|
44
48
|
|
|
45
49
|
&.ax-overlay-full {
|
|
46
50
|
@apply ax-w-screen ax-h-screen;
|
|
47
51
|
}
|
|
48
52
|
|
|
49
|
-
.ax-
|
|
53
|
+
.ax-header {
|
|
50
54
|
@apply ax-p-4 ax-border-b ax-border-light-300 dark:ax-border-light-700 ax-flex ax-justify-between ax-items-center;
|
|
51
55
|
|
|
52
56
|
span {
|
|
@@ -1,80 +1,96 @@
|
|
|
1
1
|
@layer components {
|
|
2
2
|
.ax-list {
|
|
3
3
|
display: block;
|
|
4
|
-
|
|
4
|
+
@apply ax-h-full ax-flex ax-flex-col ax-overflow-hidden md:ax-max-h-80;
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
.ax-header {
|
|
7
|
+
@apply ax-flex ax-items-center ax-justify-between ax-px-3 ax-py-2.5;
|
|
8
|
+
}
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
@apply ax-grid ax-grid-cols-1;
|
|
10
|
+
.ax-content {
|
|
12
11
|
|
|
13
|
-
&.ax-divide {
|
|
14
|
-
@apply ax-divide-y ax-divide-x-0 ax-divide-light-600 ax-divide-opacity-30 ax-divide-solid;
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
12
|
|
|
18
|
-
|
|
19
|
-
@apply ax-cursor-pointer;
|
|
13
|
+
@apply ax-flex-1 ax-overflow-y-auto ax-overflow-x-hidden;
|
|
20
14
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
15
|
+
&.ax-list-items-container {
|
|
16
|
+
@apply ax-py-1 ax-rounded ax-overflow-y-auto ax-h-full dark:ax-border-transparent;
|
|
17
|
+
|
|
18
|
+
&.ax-vertical {
|
|
19
|
+
@apply ax-grid ax-grid-cols-1;
|
|
20
|
+
|
|
21
|
+
&.ax-divide {
|
|
22
|
+
@apply ax-divide-y ax-divide-x-0 ax-divide-light-600 ax-divide-opacity-30 ax-divide-solid;
|
|
28
23
|
}
|
|
29
24
|
}
|
|
30
25
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
@apply ax-text-sm ax-flex ax-items-center ax-px-3 ax-text-light-700;
|
|
26
|
+
&.ax-default {
|
|
27
|
+
@apply ax-cursor-pointer;
|
|
34
28
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
29
|
+
.ax-list-item-group {
|
|
30
|
+
&>span {
|
|
31
|
+
@apply ax-font-bold ax-flex ax-items-center ax-px-3 ax-text-sm ax-text-light-900;
|
|
32
|
+
height: calc(var(--ax-base-size) * var(--ax-base-ratio)) !important;
|
|
33
|
+
}
|
|
39
34
|
|
|
40
|
-
|
|
41
|
-
|
|
35
|
+
&>ul {
|
|
36
|
+
@apply ax-px-3;
|
|
37
|
+
}
|
|
42
38
|
}
|
|
43
39
|
|
|
44
|
-
|
|
40
|
+
.ax-list-item {
|
|
41
|
+
height: calc(var(--ax-base-size) * var(--ax-base-ratio)) !important;
|
|
42
|
+
@apply ax-text-sm ax-flex ax-items-center ax-px-3 ax-text-light-700;
|
|
43
|
+
|
|
44
|
+
&:focus,
|
|
45
|
+
&:focus-visible {
|
|
46
|
+
@apply ax-outline-none;
|
|
47
|
+
}
|
|
48
|
+
|
|
45
49
|
&.ax-state-selected {
|
|
46
|
-
@apply ax-bg-light-200 ax-text-light-900 dark:ax-
|
|
50
|
+
@apply ax-bg-light-200 ax-text-light-900 ax-font-medium dark:ax-text-primary-50;
|
|
47
51
|
}
|
|
48
|
-
}
|
|
49
52
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
+
&:not(.ax-check-box) {
|
|
54
|
+
&.ax-state-selected {
|
|
55
|
+
@apply ax-bg-light-200 ax-text-light-900 dark:ax-bg-white/[0.16];
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
&.ax-state-disabled {
|
|
60
|
+
@apply ax-cursor-not-allowed ax-opacity-70;
|
|
61
|
+
}
|
|
53
62
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
63
|
+
&:focus,
|
|
64
|
+
&:hover,
|
|
65
|
+
&.ax-state-focus {
|
|
66
|
+
&:not(.ax-state-selected) {
|
|
67
|
+
@apply ax-outline-none ax-bg-light-100 dark:ax-bg-white/[0.16] dark:ax-text-white;
|
|
68
|
+
}
|
|
59
69
|
}
|
|
60
70
|
}
|
|
61
71
|
}
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
.ax-list-loading-container {
|
|
75
|
+
@apply ax-flex ax-justify-center ax-p-2;
|
|
76
|
+
}
|
|
62
77
|
}
|
|
63
78
|
}
|
|
64
79
|
|
|
65
|
-
.ax-
|
|
66
|
-
@apply ax-flex ax-justify-center ax-p-2;
|
|
67
|
-
}
|
|
80
|
+
.ax-footer {}
|
|
68
81
|
}
|
|
69
82
|
|
|
70
|
-
.cdk-overlay-container {
|
|
71
|
-
.ax-list-items-container {
|
|
72
|
-
max-height: 25vh;
|
|
73
83
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
// .ax-list {
|
|
87
|
+
// @apply ax-h-full ax-flex ax-flex-col;
|
|
88
|
+
|
|
89
|
+
// .ax-list-header {}
|
|
90
|
+
|
|
91
|
+
// .ax-list-body {
|
|
92
|
+
// @apply ax-flex-1 ax-overflow-y-auto ax-overflow-x-hidden;
|
|
93
|
+
// }
|
|
94
|
+
|
|
95
|
+
// .ax-list-footer {}
|
|
96
|
+
// }
|
|
@@ -2,8 +2,14 @@
|
|
|
2
2
|
ax-menu,
|
|
3
3
|
.ax-menu {
|
|
4
4
|
> ul {
|
|
5
|
-
@apply ax-flex
|
|
6
|
-
|
|
5
|
+
@apply ax-flex ax-text-sm;
|
|
6
|
+
&.vertical-mode {
|
|
7
|
+
@apply ax-flex-col
|
|
8
|
+
}
|
|
9
|
+
&.horizontal-mode{
|
|
10
|
+
@apply ax-flex-row ax-whitespace-nowrap
|
|
11
|
+
}
|
|
12
|
+
|
|
7
13
|
li {
|
|
8
14
|
@apply ax-cursor-pointer;
|
|
9
15
|
|
|
@@ -1,11 +1,71 @@
|
|
|
1
|
+
// @layer components {
|
|
2
|
+
// ax-picker,
|
|
3
|
+
// .ax-picker {
|
|
4
|
+
// @apply ax-relative;
|
|
5
|
+
// ax-carousel {
|
|
6
|
+
// &::before {
|
|
7
|
+
// @apply ax-top-0;
|
|
8
|
+
// /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.08+0,0+100;Neutral+Density */
|
|
9
|
+
// background: -moz-linear-gradient(
|
|
10
|
+
// top,
|
|
11
|
+
// rgba(226, 232, 240, 0.08) 0%,
|
|
12
|
+
// rgba(226, 232, 240, 0) 100%
|
|
13
|
+
// ); /* FF3.6-15 */
|
|
14
|
+
// background: -webkit-linear-gradient(
|
|
15
|
+
// top,
|
|
16
|
+
// rgba(226, 232, 240, 0.70) 0%,
|
|
17
|
+
// rgba(226, 232, 240, 0) 100%
|
|
18
|
+
// ); /* Chrome10-25,Safari5.1-6 */
|
|
19
|
+
// background: linear-gradient(
|
|
20
|
+
// to bottom,
|
|
21
|
+
// rgba(226, 232, 240, 0.70) 0%,
|
|
22
|
+
// rgba(226, 232, 240, 0) 100%
|
|
23
|
+
// ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
|
24
|
+
// filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#14000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
|
|
25
|
+
// }
|
|
26
|
+
// &::after {
|
|
27
|
+
// @apply ax-bottom-0;
|
|
28
|
+
// /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.70+0,0+100;Neutral+Density */
|
|
29
|
+
// background: -moz-linear-gradient(
|
|
30
|
+
// bottom,
|
|
31
|
+
// rgba(226, 232, 240, 0.70) 0%,
|
|
32
|
+
// rgba(226, 232, 240, 0) 100%
|
|
33
|
+
// ); /* FF3.6-15 */
|
|
34
|
+
// background: -webkit-linear-gradient(
|
|
35
|
+
// bottom,
|
|
36
|
+
// rgba(226, 232, 240, 0.70) 0%,
|
|
37
|
+
// rgba(226, 232, 240, 0) 100%
|
|
38
|
+
// ); /* Chrome10-25,Safari5.1-6 */
|
|
39
|
+
// background: linear-gradient(
|
|
40
|
+
// to top,
|
|
41
|
+
// rgba(226, 232, 240, 0.70) 0%,
|
|
42
|
+
// rgba(226, 232, 240, 0) 100%
|
|
43
|
+
// ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
|
44
|
+
// filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#14000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
|
|
45
|
+
// }
|
|
46
|
+
// &::before,
|
|
47
|
+
// &::after {
|
|
48
|
+
// @apply ax-absolute ax-h-1/2 ax-w-full ax-start-0 ax-pointer-events-none;
|
|
49
|
+
// content: "";
|
|
50
|
+
// }
|
|
51
|
+
// }
|
|
52
|
+
// .ax-picker-item {
|
|
53
|
+
// @apply ax-block ax-p-4 ax-text-sm;
|
|
54
|
+
// &.is-active {
|
|
55
|
+
// @apply ax-text-base ax-text-primary-500 ax-transition-all;
|
|
56
|
+
// }
|
|
57
|
+
// }
|
|
58
|
+
// }
|
|
59
|
+
// }
|
|
60
|
+
|
|
1
61
|
@layer components {
|
|
2
|
-
ax-picker
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
62
|
+
ax-picker {
|
|
63
|
+
@apply ax-max-h-full ax-overflow-y-scroll;
|
|
64
|
+
scroll-snap-type: mandatory;
|
|
65
|
+
scroll-snap-points-y: repeat(1rem);
|
|
66
|
+
scroll-snap-type: y mandatory;
|
|
67
|
+
li {
|
|
68
|
+
@apply ax-py-4 ax-flex ax-flex-col ax-items-center ax-justify-center ax-snap-start ax-text-sm;
|
|
9
69
|
}
|
|
10
70
|
}
|
|
11
71
|
}
|
|
@@ -1,152 +1,152 @@
|
|
|
1
|
-
body {
|
|
2
|
-
padding: 0;
|
|
3
|
-
margin: 0;
|
|
4
|
-
font-family: sans-serif;
|
|
5
|
-
font-size: 1em;
|
|
6
|
-
line-height: 1.5;
|
|
7
|
-
color: #555;
|
|
8
|
-
background: #fff;
|
|
9
|
-
}
|
|
10
|
-
h1 {
|
|
11
|
-
font-size: 1.5em;
|
|
12
|
-
font-weight: normal;
|
|
13
|
-
}
|
|
14
|
-
small {
|
|
15
|
-
font-size: .66666667em;
|
|
16
|
-
}
|
|
17
|
-
a {
|
|
18
|
-
color: #e74c3c;
|
|
19
|
-
text-decoration: none;
|
|
20
|
-
}
|
|
21
|
-
a:hover, a:focus {
|
|
22
|
-
box-shadow: 0 1px #e74c3c;
|
|
23
|
-
}
|
|
24
|
-
.bshadow0, input {
|
|
25
|
-
box-shadow: inset 0 -2px #e7e7e7;
|
|
26
|
-
}
|
|
27
|
-
input:hover {
|
|
28
|
-
box-shadow: inset 0 -2px #ccc;
|
|
29
|
-
}
|
|
30
|
-
input, fieldset {
|
|
31
|
-
font-family: sans-serif;
|
|
32
|
-
font-size: 1em;
|
|
33
|
-
margin: 0;
|
|
34
|
-
padding: 0;
|
|
35
|
-
border: 0;
|
|
36
|
-
}
|
|
37
|
-
input {
|
|
38
|
-
color: inherit;
|
|
39
|
-
line-height: 1.5;
|
|
40
|
-
height: 1.5em;
|
|
41
|
-
padding: .25em 0;
|
|
42
|
-
}
|
|
43
|
-
input:focus {
|
|
44
|
-
outline: none;
|
|
45
|
-
box-shadow: inset 0 -2px #449fdb;
|
|
46
|
-
}
|
|
47
|
-
.glyph {
|
|
48
|
-
font-size: 16px;
|
|
49
|
-
width: 15em;
|
|
50
|
-
padding-bottom: 1em;
|
|
51
|
-
margin-right: 4em;
|
|
52
|
-
margin-bottom: 1em;
|
|
53
|
-
float: left;
|
|
54
|
-
overflow: hidden;
|
|
55
|
-
}
|
|
56
|
-
.liga {
|
|
57
|
-
width: 80%;
|
|
58
|
-
width: calc(100% - 2.5em);
|
|
59
|
-
}
|
|
60
|
-
.talign-right {
|
|
61
|
-
text-align: right;
|
|
62
|
-
}
|
|
63
|
-
.talign-center {
|
|
64
|
-
text-align: center;
|
|
65
|
-
}
|
|
66
|
-
.bgc1 {
|
|
67
|
-
background: #f1f1f1;
|
|
68
|
-
}
|
|
69
|
-
.fgc1 {
|
|
70
|
-
color: #999;
|
|
71
|
-
}
|
|
72
|
-
.fgc0 {
|
|
73
|
-
color: #000;
|
|
74
|
-
}
|
|
75
|
-
p {
|
|
76
|
-
margin-top: 1em;
|
|
77
|
-
margin-bottom: 1em;
|
|
78
|
-
}
|
|
79
|
-
.mvm {
|
|
80
|
-
margin-top: .75em;
|
|
81
|
-
margin-bottom: .75em;
|
|
82
|
-
}
|
|
83
|
-
.mtn {
|
|
84
|
-
margin-top: 0;
|
|
85
|
-
}
|
|
86
|
-
.mtl, .mal {
|
|
87
|
-
margin-top: 1.5em;
|
|
88
|
-
}
|
|
89
|
-
.mbl, .mal {
|
|
90
|
-
margin-bottom: 1.5em;
|
|
91
|
-
}
|
|
92
|
-
.mal, .mhl {
|
|
93
|
-
margin-left: 1.5em;
|
|
94
|
-
margin-right: 1.5em;
|
|
95
|
-
}
|
|
96
|
-
.mhmm {
|
|
97
|
-
margin-left: 1em;
|
|
98
|
-
margin-right: 1em;
|
|
99
|
-
}
|
|
100
|
-
.mls {
|
|
101
|
-
margin-left: .25em;
|
|
102
|
-
}
|
|
103
|
-
.ptl {
|
|
104
|
-
padding-top: 1.5em;
|
|
105
|
-
}
|
|
106
|
-
.pbs, .pvs {
|
|
107
|
-
padding-bottom: .25em;
|
|
108
|
-
}
|
|
109
|
-
.pvs, .pts {
|
|
110
|
-
padding-top: .25em;
|
|
111
|
-
}
|
|
112
|
-
.unit {
|
|
113
|
-
float: left;
|
|
114
|
-
}
|
|
115
|
-
.unitRight {
|
|
116
|
-
float: right;
|
|
117
|
-
}
|
|
118
|
-
.size1of2 {
|
|
119
|
-
width: 50%;
|
|
120
|
-
}
|
|
121
|
-
.size1of1 {
|
|
122
|
-
width: 100%;
|
|
123
|
-
}
|
|
124
|
-
.clearfix:before, .clearfix:after {
|
|
125
|
-
content: " ";
|
|
126
|
-
display: table;
|
|
127
|
-
}
|
|
128
|
-
.clearfix:after {
|
|
129
|
-
clear: both;
|
|
130
|
-
}
|
|
131
|
-
.hidden-true {
|
|
132
|
-
display: none;
|
|
133
|
-
}
|
|
134
|
-
.textbox0 {
|
|
135
|
-
width: 3em;
|
|
136
|
-
background: #f1f1f1;
|
|
137
|
-
padding: .25em .5em;
|
|
138
|
-
line-height: 1.5;
|
|
139
|
-
height: 1.5em;
|
|
140
|
-
}
|
|
141
|
-
#testDrive {
|
|
142
|
-
display: block;
|
|
143
|
-
padding-top: 24px;
|
|
144
|
-
line-height: 1.5;
|
|
145
|
-
}
|
|
146
|
-
.fs0 {
|
|
147
|
-
font-size: 16px;
|
|
148
|
-
}
|
|
149
|
-
.fs1 {
|
|
150
|
-
font-size: 32px;
|
|
151
|
-
}
|
|
152
|
-
|
|
1
|
+
body {
|
|
2
|
+
padding: 0;
|
|
3
|
+
margin: 0;
|
|
4
|
+
font-family: sans-serif;
|
|
5
|
+
font-size: 1em;
|
|
6
|
+
line-height: 1.5;
|
|
7
|
+
color: #555;
|
|
8
|
+
background: #fff;
|
|
9
|
+
}
|
|
10
|
+
h1 {
|
|
11
|
+
font-size: 1.5em;
|
|
12
|
+
font-weight: normal;
|
|
13
|
+
}
|
|
14
|
+
small {
|
|
15
|
+
font-size: .66666667em;
|
|
16
|
+
}
|
|
17
|
+
a {
|
|
18
|
+
color: #e74c3c;
|
|
19
|
+
text-decoration: none;
|
|
20
|
+
}
|
|
21
|
+
a:hover, a:focus {
|
|
22
|
+
box-shadow: 0 1px #e74c3c;
|
|
23
|
+
}
|
|
24
|
+
.bshadow0, input {
|
|
25
|
+
box-shadow: inset 0 -2px #e7e7e7;
|
|
26
|
+
}
|
|
27
|
+
input:hover {
|
|
28
|
+
box-shadow: inset 0 -2px #ccc;
|
|
29
|
+
}
|
|
30
|
+
input, fieldset {
|
|
31
|
+
font-family: sans-serif;
|
|
32
|
+
font-size: 1em;
|
|
33
|
+
margin: 0;
|
|
34
|
+
padding: 0;
|
|
35
|
+
border: 0;
|
|
36
|
+
}
|
|
37
|
+
input {
|
|
38
|
+
color: inherit;
|
|
39
|
+
line-height: 1.5;
|
|
40
|
+
height: 1.5em;
|
|
41
|
+
padding: .25em 0;
|
|
42
|
+
}
|
|
43
|
+
input:focus {
|
|
44
|
+
outline: none;
|
|
45
|
+
box-shadow: inset 0 -2px #449fdb;
|
|
46
|
+
}
|
|
47
|
+
.glyph {
|
|
48
|
+
font-size: 16px;
|
|
49
|
+
width: 15em;
|
|
50
|
+
padding-bottom: 1em;
|
|
51
|
+
margin-right: 4em;
|
|
52
|
+
margin-bottom: 1em;
|
|
53
|
+
float: left;
|
|
54
|
+
overflow: hidden;
|
|
55
|
+
}
|
|
56
|
+
.liga {
|
|
57
|
+
width: 80%;
|
|
58
|
+
width: calc(100% - 2.5em);
|
|
59
|
+
}
|
|
60
|
+
.talign-right {
|
|
61
|
+
text-align: right;
|
|
62
|
+
}
|
|
63
|
+
.talign-center {
|
|
64
|
+
text-align: center;
|
|
65
|
+
}
|
|
66
|
+
.bgc1 {
|
|
67
|
+
background: #f1f1f1;
|
|
68
|
+
}
|
|
69
|
+
.fgc1 {
|
|
70
|
+
color: #999;
|
|
71
|
+
}
|
|
72
|
+
.fgc0 {
|
|
73
|
+
color: #000;
|
|
74
|
+
}
|
|
75
|
+
p {
|
|
76
|
+
margin-top: 1em;
|
|
77
|
+
margin-bottom: 1em;
|
|
78
|
+
}
|
|
79
|
+
.mvm {
|
|
80
|
+
margin-top: .75em;
|
|
81
|
+
margin-bottom: .75em;
|
|
82
|
+
}
|
|
83
|
+
.mtn {
|
|
84
|
+
margin-top: 0;
|
|
85
|
+
}
|
|
86
|
+
.mtl, .mal {
|
|
87
|
+
margin-top: 1.5em;
|
|
88
|
+
}
|
|
89
|
+
.mbl, .mal {
|
|
90
|
+
margin-bottom: 1.5em;
|
|
91
|
+
}
|
|
92
|
+
.mal, .mhl {
|
|
93
|
+
margin-left: 1.5em;
|
|
94
|
+
margin-right: 1.5em;
|
|
95
|
+
}
|
|
96
|
+
.mhmm {
|
|
97
|
+
margin-left: 1em;
|
|
98
|
+
margin-right: 1em;
|
|
99
|
+
}
|
|
100
|
+
.mls {
|
|
101
|
+
margin-left: .25em;
|
|
102
|
+
}
|
|
103
|
+
.ptl {
|
|
104
|
+
padding-top: 1.5em;
|
|
105
|
+
}
|
|
106
|
+
.pbs, .pvs {
|
|
107
|
+
padding-bottom: .25em;
|
|
108
|
+
}
|
|
109
|
+
.pvs, .pts {
|
|
110
|
+
padding-top: .25em;
|
|
111
|
+
}
|
|
112
|
+
.unit {
|
|
113
|
+
float: left;
|
|
114
|
+
}
|
|
115
|
+
.unitRight {
|
|
116
|
+
float: right;
|
|
117
|
+
}
|
|
118
|
+
.size1of2 {
|
|
119
|
+
width: 50%;
|
|
120
|
+
}
|
|
121
|
+
.size1of1 {
|
|
122
|
+
width: 100%;
|
|
123
|
+
}
|
|
124
|
+
.clearfix:before, .clearfix:after {
|
|
125
|
+
content: " ";
|
|
126
|
+
display: table;
|
|
127
|
+
}
|
|
128
|
+
.clearfix:after {
|
|
129
|
+
clear: both;
|
|
130
|
+
}
|
|
131
|
+
.hidden-true {
|
|
132
|
+
display: none;
|
|
133
|
+
}
|
|
134
|
+
.textbox0 {
|
|
135
|
+
width: 3em;
|
|
136
|
+
background: #f1f1f1;
|
|
137
|
+
padding: .25em .5em;
|
|
138
|
+
line-height: 1.5;
|
|
139
|
+
height: 1.5em;
|
|
140
|
+
}
|
|
141
|
+
#testDrive {
|
|
142
|
+
display: block;
|
|
143
|
+
padding-top: 24px;
|
|
144
|
+
line-height: 1.5;
|
|
145
|
+
}
|
|
146
|
+
.fs0 {
|
|
147
|
+
font-size: 16px;
|
|
148
|
+
}
|
|
149
|
+
.fs1 {
|
|
150
|
+
font-size: 32px;
|
|
151
|
+
}
|
|
152
|
+
|