vcomply-design-system 1.0.0
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/README.md +22 -0
- package/css-build/css/alignment/alignment.css +33 -0
- package/css-build/css/animate/animate-fade-in-left.css +28 -0
- package/css-build/css/animate/animate-fade-in-right.css +28 -0
- package/css-build/css/animate/animate-fade-in.css +20 -0
- package/css-build/css/animate/animate-fade-out.css +20 -0
- package/css-build/css/animate/animate-slide-down.css +26 -0
- package/css-build/css/animate/animate-slide-left.css +26 -0
- package/css-build/css/animate/animate-slide-right.css +26 -0
- package/css-build/css/animate/animate-slide-up.css +26 -0
- package/css-build/css/animate/animation.css +58 -0
- package/css-build/css/animate/index.css +258 -0
- package/css-build/css/avatars/avatars.css +83 -0
- package/css-build/css/button/button.css +237 -0
- package/css-build/css/color/color.css +152 -0
- package/css-build/css/dialog/dialog.css +421 -0
- package/css-build/css/display/display.css +24 -0
- package/css-build/css/forms/check-box.css +97 -0
- package/css-build/css/forms/forms.css +336 -0
- package/css-build/css/forms/index.css +862 -0
- package/css-build/css/forms/radio.css +116 -0
- package/css-build/css/forms/range-slider.css +203 -0
- package/css-build/css/forms/switch.css +124 -0
- package/css-build/css/header/header.css +344 -0
- package/css-build/css/icons/icons.css +53 -0
- package/css-build/css/index.css +548 -0
- package/css-build/css/index2.css +313 -0
- package/css-build/css/layout/layout.css +19 -0
- package/css-build/css/left-menu/main-menu.css +98 -0
- package/css-build/css/left-menu/sub-menu.css +323 -0
- package/css-build/css/list/list.css +3 -0
- package/css-build/css/loader/v-loader.css +183 -0
- package/css-build/css/margin/index.css +112 -0
- package/css-build/css/margin/margin-bottom.css +25 -0
- package/css-build/css/margin/margin-left.css +25 -0
- package/css-build/css/margin/margin-right.css +40 -0
- package/css-build/css/margin/margin-top.css +25 -0
- package/css-build/css/margin/margin.css +25 -0
- package/css-build/css/mixin/mixin.css +7 -0
- package/css-build/css/mixin.css +0 -0
- package/css-build/css/no-data/no-data.css +36 -0
- package/css-build/css/padding/index.css +97 -0
- package/css-build/css/padding/padding-bottom.css +25 -0
- package/css-build/css/padding/padding-left.css +25 -0
- package/css-build/css/padding/padding-right.css +25 -0
- package/css-build/css/padding/padding-top.css +25 -0
- package/css-build/css/padding/padding.css +25 -0
- package/css-build/css/pagination/pagination.css +131 -0
- package/css-build/css/panel/panel.css +76 -0
- package/css-build/css/popover/popover.css +237 -0
- package/css-build/css/quick-links/quick-links.css +84 -0
- package/css-build/css/smiley/smiley.css +353 -0
- package/css-build/css/snack-bar/snack-bar.css +77 -0
- package/css-build/css/table/table.css +191 -0
- package/css-build/css/table-card/table-card.css +242 -0
- package/css-build/css/text/text.css +157 -0
- package/css-build/css/user-panel/user-panel.css +115 -0
- package/css-build/css/vx.css +4254 -0
- package/css-build/css/width/width.css +43 -0
- package/css-build/fonts/icon.eot +0 -0
- package/css-build/fonts/icon.svg +583 -0
- package/css-build/fonts/icon.ttf +0 -0
- package/css-build/fonts/icon.woff +0 -0
- package/css-build/images/1.jpg +0 -0
- package/css-build/images/2.jpg +0 -0
- package/css-build/images/3.jpg +0 -0
- package/css-build/images/4.jpg +0 -0
- package/css-build/images/example/graph-sec-menu.JPG +0 -0
- package/css-build/images/example/layout.svg +388 -0
- package/css-build/images/example/menu-icon-m.svg +56 -0
- package/css-build/images/example/primary-menu.svg +66 -0
- package/css-build/images/example/vcomply-icon-m.svg +43 -0
- package/css-build/images/favicon.ico +0 -0
- package/css-build/images/grid.JPG +0 -0
- package/css-build/images/no-data.svg +268 -0
- package/css-build/images/open-arrow-left.svg +3 -0
- package/css-build/images/plus-create-icon.svg +23 -0
- package/css-build/images/plus-incident-icon.svg +44 -0
- package/css-build/images/plus-risk-icon.svg +45 -0
- package/css-build/images/v-icon.svg +1 -0
- package/css-build/index.html +188 -0
- package/css-build/js/table.js +72 -0
- package/css-build/js/toolbar.js +48 -0
- package/css-build/less/alignment/alignment.less +43 -0
- package/css-build/less/animate/animate-fade-in-left.less +32 -0
- package/css-build/less/animate/animate-fade-in-right.less +32 -0
- package/css-build/less/animate/animate-fade-in.less +24 -0
- package/css-build/less/animate/animate-fade-out.less +24 -0
- package/css-build/less/animate/animate-slide-down.less +30 -0
- package/css-build/less/animate/animate-slide-left.less +30 -0
- package/css-build/less/animate/animate-slide-right.less +30 -0
- package/css-build/less/animate/animate-slide-up.less +30 -0
- package/css-build/less/animate/animation.less +58 -0
- package/css-build/less/animate/index.less +9 -0
- package/css-build/less/avatars/avatars.less +96 -0
- package/css-build/less/button/button.less +201 -0
- package/css-build/less/color/color.less +209 -0
- package/css-build/less/dialog/dialog.less +502 -0
- package/css-build/less/display/display.less +31 -0
- package/css-build/less/forms/check-box.less +117 -0
- package/css-build/less/forms/forms.less +386 -0
- package/css-build/less/forms/index.less +5 -0
- package/css-build/less/forms/radio.less +139 -0
- package/css-build/less/forms/range-slider.less +69 -0
- package/css-build/less/forms/switch.less +166 -0
- package/css-build/less/header/header.less +236 -0
- package/css-build/less/icons/icons.less +50 -0
- package/css-build/less/index.less +74 -0
- package/css-build/less/index2.less +396 -0
- package/css-build/less/layout/layout.less +16 -0
- package/css-build/less/left-menu/main-menu.less +123 -0
- package/css-build/less/left-menu/sub-menu.less +326 -0
- package/css-build/less/list/list.less +5 -0
- package/css-build/less/loader/v-loader.less +219 -0
- package/css-build/less/margin/index.less +5 -0
- package/css-build/less/margin/margin-bottom.less +25 -0
- package/css-build/less/margin/margin-left.less +25 -0
- package/css-build/less/margin/margin-right.less +40 -0
- package/css-build/less/margin/margin-top.less +25 -0
- package/css-build/less/margin/margin.less +25 -0
- package/css-build/less/mixin/mixin.less +27 -0
- package/css-build/less/mixin.less +1 -0
- package/css-build/less/no-data/no-data.less +52 -0
- package/css-build/less/padding/index.less +5 -0
- package/css-build/less/padding/padding-bottom.less +25 -0
- package/css-build/less/padding/padding-left.less +20 -0
- package/css-build/less/padding/padding-right.less +20 -0
- package/css-build/less/padding/padding-top.less +25 -0
- package/css-build/less/padding/padding.less +25 -0
- package/css-build/less/pagination/pagination.less +144 -0
- package/css-build/less/panel/panel.less +116 -0
- package/css-build/less/popover/popover.less +273 -0
- package/css-build/less/quick-links/quick-links.less +90 -0
- package/css-build/less/smiley/smiley.less +422 -0
- package/css-build/less/snack-bar/snack-bar.less +86 -0
- package/css-build/less/table/table.less +293 -0
- package/css-build/less/table-card/table-card.less +116 -0
- package/css-build/less/text/text.less +179 -0
- package/css-build/less/user-panel/user-panel.less +123 -0
- package/css-build/less/vx.less +28 -0
- package/css-build/less/width/width.less +37 -0
- package/css-build/less.js +11 -0
- package/css-build/pages/alignment.html +102 -0
- package/css-build/pages/avatars.html +555 -0
- package/css-build/pages/button.html +993 -0
- package/css-build/pages/checkbox.html +560 -0
- package/css-build/pages/color-palette.html +358 -0
- package/css-build/pages/common-layout.html +125 -0
- package/css-build/pages/dialog.html +738 -0
- package/css-build/pages/display.html +67 -0
- package/css-build/pages/font-family.html +281 -0
- package/css-build/pages/header.html +590 -0
- package/css-build/pages/icons.html +3715 -0
- package/css-build/pages/mein-menu-active.html +67 -0
- package/css-build/pages/mein-menu-sub-menu.html +110 -0
- package/css-build/pages/mein-menu-tooltip.html +70 -0
- package/css-build/pages/mein-menu.html +321 -0
- package/css-build/pages/no-data.html +277 -0
- package/css-build/pages/panel.html +423 -0
- package/css-build/pages/popover.html +666 -0
- package/css-build/pages/radio.html +418 -0
- package/css-build/pages/range-slider.html +279 -0
- package/css-build/pages/select-box.html +933 -0
- package/css-build/pages/smiley.html +355 -0
- package/css-build/pages/sub-menu.html +396 -0
- package/css-build/pages/switch.html +349 -0
- package/css-build/pages/tab-menu.html +301 -0
- package/css-build/pages/table-card.html +510 -0
- package/css-build/pages/table.html +2218 -0
- package/css-build/pages/text-box.html +325 -0
- package/css-build/pages/text.html +106 -0
- package/css-build/pages/v-loader.html +163 -0
- package/css-build/sw/pwabuilder-sw-register.js +14 -0
- package/css-build/sw/pwabuilder-sw.js +47 -0
- package/css-build/utility/code-prev.css +19 -0
- package/css-build/utility/prism.css +130 -0
- package/css-build/utility/prism.js +8 -0
- package/index.js +66 -0
- package/nodemon.json +4 -0
- package/package.json +24 -0
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
body {
|
|
2
|
+
font-size: 16px;
|
|
3
|
+
}
|
|
4
|
+
a,
|
|
5
|
+
button {
|
|
6
|
+
cursor: pointer;
|
|
7
|
+
}
|
|
8
|
+
.vx-popover {
|
|
9
|
+
width: 220px;
|
|
10
|
+
box-shadow: 0px 3px 6px #1c5bd140;
|
|
11
|
+
}
|
|
12
|
+
.vx-popover ul.popover-items {
|
|
13
|
+
padding: 0;
|
|
14
|
+
margin: 0;
|
|
15
|
+
display: block;
|
|
16
|
+
-webkit-animation: scale-up-center 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
|
|
17
|
+
animation: scale-up-center 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
|
|
18
|
+
background: #FFFFFF;
|
|
19
|
+
box-shadow: 0 3px 6px rgba(28, 91, 209, 0.25);
|
|
20
|
+
border-radius: 4px;
|
|
21
|
+
max-height: 220px;
|
|
22
|
+
overflow: auto;
|
|
23
|
+
}
|
|
24
|
+
.vx-popover ul.popover-items li {
|
|
25
|
+
list-style: none;
|
|
26
|
+
border: none;
|
|
27
|
+
border-bottom: 1px solid #F1F1F1;
|
|
28
|
+
display: block;
|
|
29
|
+
width: 100%;
|
|
30
|
+
padding: 0;
|
|
31
|
+
background: transparent;
|
|
32
|
+
border-radius: 0;
|
|
33
|
+
margin: 0;
|
|
34
|
+
height: auto;
|
|
35
|
+
justify-content: flex-start;
|
|
36
|
+
box-shadow: none;
|
|
37
|
+
}
|
|
38
|
+
.vx-popover ul.popover-items li button {
|
|
39
|
+
color: #747576;
|
|
40
|
+
text-align: left;
|
|
41
|
+
text-decoration: none;
|
|
42
|
+
cursor: pointer;
|
|
43
|
+
background: transparent;
|
|
44
|
+
font-size: 12px;
|
|
45
|
+
text-transform: capitalize;
|
|
46
|
+
display: flex;
|
|
47
|
+
width: 100%;
|
|
48
|
+
padding: 8px 12px;
|
|
49
|
+
border: none;
|
|
50
|
+
margin: 0;
|
|
51
|
+
}
|
|
52
|
+
.vx-popover ul.popover-items li button i {
|
|
53
|
+
font-size: 17px;
|
|
54
|
+
margin-right: 10px;
|
|
55
|
+
color: #1E5DD3;
|
|
56
|
+
}
|
|
57
|
+
.vx-popover ul.popover-items li button:hover {
|
|
58
|
+
background: #F1F1F1;
|
|
59
|
+
}
|
|
60
|
+
.vx-popover ul.popover-items li .avatar-card {
|
|
61
|
+
display: flex;
|
|
62
|
+
align-items: center;
|
|
63
|
+
width: 100%;
|
|
64
|
+
padding: 8px;
|
|
65
|
+
}
|
|
66
|
+
.vx-popover ul.popover-items li .avatar-card.within-con {
|
|
67
|
+
display: block;
|
|
68
|
+
}
|
|
69
|
+
.vx-popover ul.popover-items li .avatar-card .avatar {
|
|
70
|
+
height: 24px;
|
|
71
|
+
width: 24px !important;
|
|
72
|
+
overflow: hidden;
|
|
73
|
+
background: #1E5DD3;
|
|
74
|
+
color: #FFFFFF;
|
|
75
|
+
font-size: 10px;
|
|
76
|
+
display: inline-flex;
|
|
77
|
+
margin-right: 4px;
|
|
78
|
+
border-radius: 50%;
|
|
79
|
+
align-items: center;
|
|
80
|
+
justify-content: center;
|
|
81
|
+
text-transform: uppercase;
|
|
82
|
+
}
|
|
83
|
+
.vx-popover ul.popover-items li .avatar-card .avatar img {
|
|
84
|
+
width: 100%;
|
|
85
|
+
}
|
|
86
|
+
.vx-popover ul.popover-items li .avatar-card .avatar + span.value {
|
|
87
|
+
width: calc(100% - 28px);
|
|
88
|
+
}
|
|
89
|
+
.vx-popover ul.popover-items li .avatar-card span.value {
|
|
90
|
+
width: 100%;
|
|
91
|
+
color: #6E717E;
|
|
92
|
+
text-decoration: none;
|
|
93
|
+
background: transparent;
|
|
94
|
+
font-size: 12px;
|
|
95
|
+
text-transform: capitalize;
|
|
96
|
+
display: block;
|
|
97
|
+
font-weight: 400;
|
|
98
|
+
text-align-last: left;
|
|
99
|
+
white-space: nowrap;
|
|
100
|
+
overflow: hidden;
|
|
101
|
+
text-overflow: ellipsis;
|
|
102
|
+
line-height: 20px;
|
|
103
|
+
}
|
|
104
|
+
.vx-popover ul.popover-items li .avatar-card span.value i {
|
|
105
|
+
font-size: 8px;
|
|
106
|
+
color: #1C5BD1;
|
|
107
|
+
cursor: pointer;
|
|
108
|
+
margin-right: 4px;
|
|
109
|
+
}
|
|
110
|
+
.vx-popover ul.popover-items li .avatar-card.no-image {
|
|
111
|
+
display: block;
|
|
112
|
+
}
|
|
113
|
+
.vx-popover ul.popover-items li .avatar-card.no-image span.value {
|
|
114
|
+
width: 100%;
|
|
115
|
+
display: block;
|
|
116
|
+
}
|
|
117
|
+
.vx-popover ul.popover-items li .chip-item {
|
|
118
|
+
color: #1E5DD3;
|
|
119
|
+
padding: 10px;
|
|
120
|
+
display: flex;
|
|
121
|
+
align-items: center;
|
|
122
|
+
}
|
|
123
|
+
.vx-popover ul.popover-items li .chip-item i {
|
|
124
|
+
margin-right: 8px;
|
|
125
|
+
font-size: 10px;
|
|
126
|
+
cursor: pointer;
|
|
127
|
+
display: inline-flex;
|
|
128
|
+
}
|
|
129
|
+
.vx-popover ul.popover-items li .chip-item span {
|
|
130
|
+
display: block;
|
|
131
|
+
width: auto;
|
|
132
|
+
max-width: calc(100% - 16px);
|
|
133
|
+
font-size: 12px;
|
|
134
|
+
font-weight: 500;
|
|
135
|
+
white-space: nowrap;
|
|
136
|
+
overflow: hidden;
|
|
137
|
+
text-overflow: ellipsis;
|
|
138
|
+
}
|
|
139
|
+
.vx-popover ul.popover-items li .chip-item span.chip-block {
|
|
140
|
+
display: block;
|
|
141
|
+
width: 100%;
|
|
142
|
+
}
|
|
143
|
+
.vx-popover ul.popover-items li .chip-item span.id {
|
|
144
|
+
font-size: 8px;
|
|
145
|
+
}
|
|
146
|
+
.vx-popover ul.popover-items li .within {
|
|
147
|
+
display: flex;
|
|
148
|
+
align-items: center;
|
|
149
|
+
justify-content: flex-start;
|
|
150
|
+
}
|
|
151
|
+
.vx-popover ul.popover-items li .within .block {
|
|
152
|
+
background: #F1F1F1;
|
|
153
|
+
border-radius: 2px;
|
|
154
|
+
padding: 0 2px;
|
|
155
|
+
line-height: 14px;
|
|
156
|
+
font-size: 10px;
|
|
157
|
+
font-weight: 500;
|
|
158
|
+
color: #042E7D;
|
|
159
|
+
margin-right: 6px;
|
|
160
|
+
display: block;
|
|
161
|
+
text-transform: uppercase;
|
|
162
|
+
}
|
|
163
|
+
.vx-popover ul.popover-items li .within .data {
|
|
164
|
+
width: 100%;
|
|
165
|
+
display: block;
|
|
166
|
+
overflow: hidden;
|
|
167
|
+
text-overflow: ellipsis;
|
|
168
|
+
white-space: nowrap;
|
|
169
|
+
color: #747576;
|
|
170
|
+
font-size: 11px;
|
|
171
|
+
font-weight: 400;
|
|
172
|
+
line-height: 17px;
|
|
173
|
+
}
|
|
174
|
+
.vx-popover ul.popover-items li:first-child {
|
|
175
|
+
animation: action-list-open 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
176
|
+
}
|
|
177
|
+
.vx-popover ul.popover-items li:nth-child(2) {
|
|
178
|
+
animation: action-list-open 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
179
|
+
}
|
|
180
|
+
.vx-popover ul.popover-items li:nth-child(3) {
|
|
181
|
+
animation: action-list-open 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
182
|
+
}
|
|
183
|
+
.vx-popover ul.popover-items li:nth-child(4) {
|
|
184
|
+
animation: action-list-open 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
185
|
+
}
|
|
186
|
+
.vx-popover ul.popover-items li:nth-child(5) {
|
|
187
|
+
animation: action-list-open 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
188
|
+
}
|
|
189
|
+
.vx-popover ul.popover-items li:nth-child(6) {
|
|
190
|
+
animation: action-list-open 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
191
|
+
}
|
|
192
|
+
.vx-popover ul.popover-items li:nth-child(7) {
|
|
193
|
+
animation: action-list-open 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
194
|
+
}
|
|
195
|
+
.vx-popover ul.popover-items li:nth-child(8) {
|
|
196
|
+
animation: action-list-open 0.95s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
197
|
+
}
|
|
198
|
+
.vx-popover ul.popover-items li:nth-child(9) {
|
|
199
|
+
animation: action-list-open 1.05s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
200
|
+
}
|
|
201
|
+
.vx-popover ul.popover-items li:nth-child(10) {
|
|
202
|
+
animation: action-list-open 1.15s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
203
|
+
}
|
|
204
|
+
@-webkit-keyframes scale-up-center {
|
|
205
|
+
0% {
|
|
206
|
+
-webkit-transform: scale(0.5);
|
|
207
|
+
transform: scale(0.5);
|
|
208
|
+
opacity: 0;
|
|
209
|
+
}
|
|
210
|
+
100% {
|
|
211
|
+
-webkit-transform: scale(1);
|
|
212
|
+
transform: scale(1);
|
|
213
|
+
opacity: 1;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
@keyframes scale-up-center {
|
|
217
|
+
0% {
|
|
218
|
+
-webkit-transform: scale(0.5);
|
|
219
|
+
transform: scale(0.5);
|
|
220
|
+
opacity: 0;
|
|
221
|
+
}
|
|
222
|
+
100% {
|
|
223
|
+
-webkit-transform: scale(1);
|
|
224
|
+
transform: scale(1);
|
|
225
|
+
opacity: 1;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
@keyframes action-list-open {
|
|
229
|
+
0% {
|
|
230
|
+
-webkit-transform: translateY(50px);
|
|
231
|
+
transform: translateY(50px);
|
|
232
|
+
}
|
|
233
|
+
100% {
|
|
234
|
+
-webkit-transform: translateY(0);
|
|
235
|
+
transform: translateY(0);
|
|
236
|
+
}
|
|
237
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
body {
|
|
2
|
+
font-size: 16px;
|
|
3
|
+
}
|
|
4
|
+
a,
|
|
5
|
+
button {
|
|
6
|
+
cursor: pointer;
|
|
7
|
+
}
|
|
8
|
+
.vx-quick-links {
|
|
9
|
+
background: #fff;
|
|
10
|
+
border-top: 4px solid #1E5DD3;
|
|
11
|
+
border-radius: 5px;
|
|
12
|
+
position: absolute;
|
|
13
|
+
transition: all 0.5s ease-in-out;
|
|
14
|
+
width: 328px;
|
|
15
|
+
top: calc(100% + 12px);
|
|
16
|
+
box-shadow: 0 0 10px rgba(30, 93, 211, 0.27);
|
|
17
|
+
right: -72px;
|
|
18
|
+
z-index: 2;
|
|
19
|
+
padding: 0;
|
|
20
|
+
}
|
|
21
|
+
.vx-quick-links:before {
|
|
22
|
+
border-bottom: 8px solid #1E5DD3;
|
|
23
|
+
content: "";
|
|
24
|
+
position: absolute;
|
|
25
|
+
width: 0;
|
|
26
|
+
height: 0;
|
|
27
|
+
border-left: 8px solid transparent;
|
|
28
|
+
border-right: 8px solid transparent;
|
|
29
|
+
right: 52px;
|
|
30
|
+
top: -10px;
|
|
31
|
+
}
|
|
32
|
+
.vx-quick-links ul {
|
|
33
|
+
padding: 0;
|
|
34
|
+
margin: 0;
|
|
35
|
+
list-style: none;
|
|
36
|
+
}
|
|
37
|
+
.vx-quick-links ul li {
|
|
38
|
+
border-bottom: 1px solid #F1F1F1;
|
|
39
|
+
}
|
|
40
|
+
.vx-quick-links ul li a {
|
|
41
|
+
padding: 12px;
|
|
42
|
+
text-decoration: none;
|
|
43
|
+
align-items: center;
|
|
44
|
+
display: flex;
|
|
45
|
+
}
|
|
46
|
+
.vx-quick-links ul li a span {
|
|
47
|
+
display: block;
|
|
48
|
+
}
|
|
49
|
+
.vx-quick-links ul li a span.icon {
|
|
50
|
+
width: 44px;
|
|
51
|
+
height: 44px;
|
|
52
|
+
display: flex;
|
|
53
|
+
border-radius: 4px;
|
|
54
|
+
align-items: center;
|
|
55
|
+
justify-content: center;
|
|
56
|
+
margin-right: 8px;
|
|
57
|
+
background: #F1F1F1;
|
|
58
|
+
}
|
|
59
|
+
.vx-quick-links ul li a span.icon img {
|
|
60
|
+
width: 36px;
|
|
61
|
+
height: 36px;
|
|
62
|
+
}
|
|
63
|
+
.vx-quick-links ul li a span.text span.title {
|
|
64
|
+
font-size: 14px;
|
|
65
|
+
color: #161B2F;
|
|
66
|
+
margin: 0;
|
|
67
|
+
font-weight: 500;
|
|
68
|
+
text-transform: uppercase;
|
|
69
|
+
transition: all 0.2s ease-in-out;
|
|
70
|
+
}
|
|
71
|
+
.vx-quick-links ul li a span.text span.paragraph {
|
|
72
|
+
font-size: 12px;
|
|
73
|
+
color: #161B2F;
|
|
74
|
+
transition: all 0.2s ease-in-out;
|
|
75
|
+
margin: 0;
|
|
76
|
+
font-weight: 400;
|
|
77
|
+
}
|
|
78
|
+
.vx-quick-links ul li:hover a span.text span.title,
|
|
79
|
+
.vx-quick-links ul li:hover a span.text span.paragraph {
|
|
80
|
+
color: #1E5DD3;
|
|
81
|
+
}
|
|
82
|
+
.vx-quick-links ul li:last-child {
|
|
83
|
+
border-bottom: none;
|
|
84
|
+
}
|
|
@@ -0,0 +1,353 @@
|
|
|
1
|
+
.vx-smiley-popup {
|
|
2
|
+
background: #d93b41;
|
|
3
|
+
position: relative;
|
|
4
|
+
}
|
|
5
|
+
.vx-smiley-popup::before {
|
|
6
|
+
content: "";
|
|
7
|
+
position: absolute;
|
|
8
|
+
z-index: 0;
|
|
9
|
+
background: #fff;
|
|
10
|
+
top: 0;
|
|
11
|
+
right: 0;
|
|
12
|
+
bottom: 0;
|
|
13
|
+
left: 0;
|
|
14
|
+
transition-delay: 1s;
|
|
15
|
+
border-top-right-radius: 0;
|
|
16
|
+
transition: all 0.3s ease-in-out;
|
|
17
|
+
}
|
|
18
|
+
.vx-smiley-popup.with-close::before {
|
|
19
|
+
border-top-right-radius: 180px;
|
|
20
|
+
}
|
|
21
|
+
.vx-smiley-popup button.close {
|
|
22
|
+
color: #fff;
|
|
23
|
+
font-size: 22px;
|
|
24
|
+
position: absolute;
|
|
25
|
+
top: 14px;
|
|
26
|
+
right: 20px;
|
|
27
|
+
z-index: 10;
|
|
28
|
+
background: none;
|
|
29
|
+
border: none;
|
|
30
|
+
padding: 0;
|
|
31
|
+
cursor: pointer;
|
|
32
|
+
}
|
|
33
|
+
.vx-smiley-container {
|
|
34
|
+
width: 550px;
|
|
35
|
+
position: relative;
|
|
36
|
+
z-index: 10;
|
|
37
|
+
}
|
|
38
|
+
.vx-smiley-container .vx-smiley {
|
|
39
|
+
display: block;
|
|
40
|
+
width: 550px;
|
|
41
|
+
height: 250px;
|
|
42
|
+
overflow: hidden;
|
|
43
|
+
position: relative;
|
|
44
|
+
-webkit-animation: slide-fwd-center 0.45s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
|
|
45
|
+
animation: slide-fwd-center 0.45s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
|
|
46
|
+
margin: 0 auto 24px;
|
|
47
|
+
}
|
|
48
|
+
.vx-smiley-container .vx-smiley::before {
|
|
49
|
+
position: absolute;
|
|
50
|
+
background: #ffedc5;
|
|
51
|
+
width: 110px;
|
|
52
|
+
height: 110px;
|
|
53
|
+
content: "";
|
|
54
|
+
border-radius: 50%;
|
|
55
|
+
top: 100px;
|
|
56
|
+
right: 92px;
|
|
57
|
+
}
|
|
58
|
+
.vx-smiley-container .vx-smiley::after {
|
|
59
|
+
position: absolute;
|
|
60
|
+
background: #ffbf15;
|
|
61
|
+
width: 36px;
|
|
62
|
+
height: 36px;
|
|
63
|
+
border-radius: 50%;
|
|
64
|
+
content: "";
|
|
65
|
+
top: 200px;
|
|
66
|
+
left: 92px;
|
|
67
|
+
}
|
|
68
|
+
.vx-smiley-container .vx-smiley-circle {
|
|
69
|
+
background: #ffd83d;
|
|
70
|
+
border-radius: 100%;
|
|
71
|
+
padding: 24px;
|
|
72
|
+
position: relative;
|
|
73
|
+
width: 250px;
|
|
74
|
+
height: 250px;
|
|
75
|
+
margin: 0 auto;
|
|
76
|
+
box-shadow: inset -20px -14px 0 #f4c337;
|
|
77
|
+
}
|
|
78
|
+
.vx-smiley-container .vx-smiley-circle::before {
|
|
79
|
+
width: 24px;
|
|
80
|
+
height: 4px;
|
|
81
|
+
background: #ffbf15;
|
|
82
|
+
position: absolute;
|
|
83
|
+
content: "";
|
|
84
|
+
top: 116px;
|
|
85
|
+
left: -66px;
|
|
86
|
+
}
|
|
87
|
+
.vx-smiley-container .vx-smiley-circle::after {
|
|
88
|
+
width: 4px;
|
|
89
|
+
height: 24px;
|
|
90
|
+
background: #ffbf15;
|
|
91
|
+
position: absolute;
|
|
92
|
+
content: "";
|
|
93
|
+
top: 108px;
|
|
94
|
+
left: -56px;
|
|
95
|
+
}
|
|
96
|
+
.vx-smiley-container .vx-smiley-circle-inner {
|
|
97
|
+
height: 182px;
|
|
98
|
+
width: 100%;
|
|
99
|
+
margin: 0 auto;
|
|
100
|
+
}
|
|
101
|
+
.vx-smiley-container .vx-smiley-circle-inner .eyes {
|
|
102
|
+
width: 164px;
|
|
103
|
+
margin: 40px auto 0;
|
|
104
|
+
box-sizing: border-box;
|
|
105
|
+
padding: 0 4px;
|
|
106
|
+
transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
107
|
+
}
|
|
108
|
+
.vx-smiley-container .vx-smiley-circle-inner .eyes::before {
|
|
109
|
+
width: 4px;
|
|
110
|
+
height: 20px;
|
|
111
|
+
background: #ffbf15;
|
|
112
|
+
position: absolute;
|
|
113
|
+
content: "";
|
|
114
|
+
top: 0;
|
|
115
|
+
right: -20px;
|
|
116
|
+
}
|
|
117
|
+
.vx-smiley-container .vx-smiley-circle-inner .eyes::after {
|
|
118
|
+
width: 20px;
|
|
119
|
+
height: 4px;
|
|
120
|
+
background: #ffbf15;
|
|
121
|
+
position: absolute;
|
|
122
|
+
content: "";
|
|
123
|
+
top: 8px;
|
|
124
|
+
right: -28px;
|
|
125
|
+
}
|
|
126
|
+
.vx-smiley-container .vx-smiley-circle-inner .eyes .eye {
|
|
127
|
+
width: 40px;
|
|
128
|
+
height: 40px;
|
|
129
|
+
background: #404549;
|
|
130
|
+
float: left;
|
|
131
|
+
border-radius: 100%;
|
|
132
|
+
overflow: hidden;
|
|
133
|
+
position: relative;
|
|
134
|
+
}
|
|
135
|
+
.vx-smiley-container .vx-smiley-circle-inner .eyes .eye::before {
|
|
136
|
+
position: absolute;
|
|
137
|
+
width: 10px;
|
|
138
|
+
height: 10px;
|
|
139
|
+
content: "";
|
|
140
|
+
background: #ffe9b0;
|
|
141
|
+
border-radius: 50%;
|
|
142
|
+
top: 8px;
|
|
143
|
+
left: 1px;
|
|
144
|
+
}
|
|
145
|
+
.vx-smiley-container .vx-smiley-circle-inner .eyes .eye::after {
|
|
146
|
+
display: block;
|
|
147
|
+
content: "";
|
|
148
|
+
position: absolute;
|
|
149
|
+
width: 0;
|
|
150
|
+
height: 0;
|
|
151
|
+
background: #fed800;
|
|
152
|
+
transform: rotate(0deg);
|
|
153
|
+
top: -16px;
|
|
154
|
+
left: 4px;
|
|
155
|
+
transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
156
|
+
}
|
|
157
|
+
.vx-smiley-container .vx-smiley-circle-inner .eyes .eye:nth-of-type(2) {
|
|
158
|
+
float: right;
|
|
159
|
+
}
|
|
160
|
+
.vx-smiley-container .vx-smiley-circle-inner .mouth {
|
|
161
|
+
border-top-left-radius: 100px;
|
|
162
|
+
border-top-right-radius: 100px;
|
|
163
|
+
border-bottom-left-radius: 100px;
|
|
164
|
+
border-bottom-right-radius: 100px;
|
|
165
|
+
height: 76px;
|
|
166
|
+
width: 150px;
|
|
167
|
+
margin: 0 auto;
|
|
168
|
+
box-sizing: border-box;
|
|
169
|
+
position: absolute;
|
|
170
|
+
left: 0;
|
|
171
|
+
right: 0;
|
|
172
|
+
background: #404549;
|
|
173
|
+
transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
174
|
+
}
|
|
175
|
+
.vx-smiley-container .vx-smiley-circle-inner .mouth::before {
|
|
176
|
+
width: 94px;
|
|
177
|
+
height: 94px;
|
|
178
|
+
position: absolute;
|
|
179
|
+
opacity: 0;
|
|
180
|
+
bottom: -508px;
|
|
181
|
+
left: -6px;
|
|
182
|
+
background: #ffd83d;
|
|
183
|
+
content: "";
|
|
184
|
+
border-radius: 46px;
|
|
185
|
+
transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
186
|
+
}
|
|
187
|
+
.vx-smiley-container .vx-smiley-circle.happy .eyes .eye {
|
|
188
|
+
height: 40px;
|
|
189
|
+
margin-top: 0;
|
|
190
|
+
animation: wink 3s infinite;
|
|
191
|
+
}
|
|
192
|
+
.vx-smiley-container .vx-smiley-circle.happy .mouth {
|
|
193
|
+
animation: move-mouth-down 0.3s;
|
|
194
|
+
animation-delay: 0.3s;
|
|
195
|
+
animation-fill-mode: forwards;
|
|
196
|
+
}
|
|
197
|
+
.vx-smiley-container .vx-smiley-circle.sad .eyes .eye {
|
|
198
|
+
animation: wink2 3s infinite;
|
|
199
|
+
}
|
|
200
|
+
.vx-smiley-container .vx-smiley-circle.sad .vx-smiley-circle-inner {
|
|
201
|
+
animation: move-angry-head 0.6s;
|
|
202
|
+
animation-delay: 0.3s;
|
|
203
|
+
animation-fill-mode: forwards;
|
|
204
|
+
}
|
|
205
|
+
.vx-smiley-container .vx-smiley-circle.sad .vx-smiley-circle-inner .mouth {
|
|
206
|
+
width: 96px;
|
|
207
|
+
height: 50px;
|
|
208
|
+
border-top-left-radius: 100px;
|
|
209
|
+
border-top-right-radius: 100px;
|
|
210
|
+
border-bottom-left-radius: 0;
|
|
211
|
+
border-bottom-right-radius: 0;
|
|
212
|
+
top: 60px;
|
|
213
|
+
}
|
|
214
|
+
.vx-smiley-container .vx-smiley-circle.sad .vx-smiley-circle-inner .mouth::before {
|
|
215
|
+
background: #ffd83d;
|
|
216
|
+
content: "";
|
|
217
|
+
bottom: -66px;
|
|
218
|
+
left: 0;
|
|
219
|
+
opacity: 1;
|
|
220
|
+
transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
221
|
+
}
|
|
222
|
+
.vx-smiley-container h3 {
|
|
223
|
+
font-size: 26px;
|
|
224
|
+
color: #161b2f;
|
|
225
|
+
font-weight: 400;
|
|
226
|
+
margin: 0 0 40px;
|
|
227
|
+
}
|
|
228
|
+
.vx-smiley-container .successSmilyButton button {
|
|
229
|
+
width: 280px;
|
|
230
|
+
}
|
|
231
|
+
@-webkit-keyframes slide-fwd-center {
|
|
232
|
+
0% {
|
|
233
|
+
-webkit-transform: scale(0);
|
|
234
|
+
transform: scale(0);
|
|
235
|
+
}
|
|
236
|
+
100% {
|
|
237
|
+
-webkit-transform: scale(1);
|
|
238
|
+
transform: scale(1);
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
@keyframes slide-fwd-center {
|
|
242
|
+
0% {
|
|
243
|
+
-webkit-transform: scale(0);
|
|
244
|
+
transform: scale(0);
|
|
245
|
+
}
|
|
246
|
+
100% {
|
|
247
|
+
-webkit-transform: scale(1);
|
|
248
|
+
transform: scale(1);
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
@keyframes move-mouth-down {
|
|
252
|
+
0% {
|
|
253
|
+
border-top-left-radius: 100px;
|
|
254
|
+
border-top-right-radius: 100px;
|
|
255
|
+
border-bottom-left-radius: 100px;
|
|
256
|
+
border-bottom-right-radius: 100px;
|
|
257
|
+
height: 10%;
|
|
258
|
+
width: 40%;
|
|
259
|
+
bottom: 25%;
|
|
260
|
+
margin: 0 auto;
|
|
261
|
+
box-sizing: border-box;
|
|
262
|
+
position: absolute;
|
|
263
|
+
bottom: 18%;
|
|
264
|
+
left: 0;
|
|
265
|
+
right: 0;
|
|
266
|
+
background: #404549;
|
|
267
|
+
transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
268
|
+
}
|
|
269
|
+
100% {
|
|
270
|
+
width: 60%;
|
|
271
|
+
height: 30%;
|
|
272
|
+
border-top-left-radius: 0;
|
|
273
|
+
border-top-right-radius: 0;
|
|
274
|
+
border-bottom-left-radius: 100px;
|
|
275
|
+
border-bottom-right-radius: 100px;
|
|
276
|
+
box-sizing: border-box;
|
|
277
|
+
position: absolute;
|
|
278
|
+
bottom: 18%;
|
|
279
|
+
background: #404549;
|
|
280
|
+
transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
@keyframes wink {
|
|
284
|
+
0% {
|
|
285
|
+
height: 40px;
|
|
286
|
+
margin-top: 0;
|
|
287
|
+
}
|
|
288
|
+
10% {
|
|
289
|
+
height: 40px;
|
|
290
|
+
margin-top: 0;
|
|
291
|
+
}
|
|
292
|
+
15% {
|
|
293
|
+
height: 4px;
|
|
294
|
+
margin-top: 18px;
|
|
295
|
+
}
|
|
296
|
+
20% {
|
|
297
|
+
height: 40px;
|
|
298
|
+
margin-top: 0;
|
|
299
|
+
}
|
|
300
|
+
100% {
|
|
301
|
+
height: 40px;
|
|
302
|
+
margin-top: 0;
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
@keyframes wink2 {
|
|
306
|
+
0% {
|
|
307
|
+
height: 40px;
|
|
308
|
+
margin-top: 0;
|
|
309
|
+
}
|
|
310
|
+
10% {
|
|
311
|
+
height: 40px;
|
|
312
|
+
margin-top: 0;
|
|
313
|
+
}
|
|
314
|
+
15% {
|
|
315
|
+
height: 4px;
|
|
316
|
+
margin-top: 18px;
|
|
317
|
+
}
|
|
318
|
+
20% {
|
|
319
|
+
height: 40px;
|
|
320
|
+
margin-top: 0;
|
|
321
|
+
}
|
|
322
|
+
100% {
|
|
323
|
+
height: 40px;
|
|
324
|
+
margin-top: 0;
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
@keyframes move-angry-head {
|
|
328
|
+
0% {
|
|
329
|
+
transform: translateX(0%);
|
|
330
|
+
}
|
|
331
|
+
20% {
|
|
332
|
+
transform: translateX(-20%);
|
|
333
|
+
}
|
|
334
|
+
40% {
|
|
335
|
+
transform: translateX(15%);
|
|
336
|
+
}
|
|
337
|
+
60% {
|
|
338
|
+
transform: translateX(-10%);
|
|
339
|
+
}
|
|
340
|
+
80% {
|
|
341
|
+
transform: translateX(5%);
|
|
342
|
+
}
|
|
343
|
+
100% {
|
|
344
|
+
transform: translateX(0%);
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
h3.heading {
|
|
348
|
+
font-size: 20px;
|
|
349
|
+
margin-top: 10px;
|
|
350
|
+
font-weight: 500;
|
|
351
|
+
margin-bottom: 10px;
|
|
352
|
+
padding-left: 20px;
|
|
353
|
+
}
|