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
package/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# VX Design System
|
|
2
|
+
|
|
3
|
+
This Design system is based on the design pattern used for all the Vcomply products.
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
## Usage
|
|
7
|
+
|
|
8
|
+
Add the package as a dependency to your project using:
|
|
9
|
+
|
|
10
|
+
npm i vx-design-system
|
|
11
|
+
|
|
12
|
+
Add the required less file in your stylesheet:
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
@import "~vx-design-system/css-build/less/vx.less";";
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
Usage Warning: An Attribution is required with permission in written.
|
|
22
|
+
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
.vx-text-left {
|
|
2
|
+
text-align: left;
|
|
3
|
+
}
|
|
4
|
+
.vx-text-center {
|
|
5
|
+
text-align: center;
|
|
6
|
+
}
|
|
7
|
+
.vx-text-right {
|
|
8
|
+
text-align: right;
|
|
9
|
+
}
|
|
10
|
+
.vx-justify-start {
|
|
11
|
+
justify-content: flex-start;
|
|
12
|
+
}
|
|
13
|
+
.vx-justify-center {
|
|
14
|
+
justify-content: center;
|
|
15
|
+
}
|
|
16
|
+
.vx-justify-end {
|
|
17
|
+
justify-content: flex-end;
|
|
18
|
+
}
|
|
19
|
+
.vx-justify-between {
|
|
20
|
+
justify-content: space-between;
|
|
21
|
+
}
|
|
22
|
+
.vx-justify-around {
|
|
23
|
+
justify-content: space-around;
|
|
24
|
+
}
|
|
25
|
+
.vx-align-start {
|
|
26
|
+
align-items: flex-start;
|
|
27
|
+
}
|
|
28
|
+
.vx-align-center {
|
|
29
|
+
align-items: center;
|
|
30
|
+
}
|
|
31
|
+
.vx-align-end {
|
|
32
|
+
align-items: flex-end;
|
|
33
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
@-webkit-keyframes fadeInLeft {
|
|
2
|
+
0% {
|
|
3
|
+
opacity: 0;
|
|
4
|
+
-webkit-transform: translate3d(-200px, 0, 0);
|
|
5
|
+
transform: translate3d(-200px, 0, 0);
|
|
6
|
+
}
|
|
7
|
+
to {
|
|
8
|
+
opacity: 1;
|
|
9
|
+
-webkit-transform: translateZ(0);
|
|
10
|
+
transform: translateZ(0);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
@keyframes fadeInLeft {
|
|
14
|
+
0% {
|
|
15
|
+
opacity: 0;
|
|
16
|
+
-webkit-transform: translate3d(-200px, 0, 0);
|
|
17
|
+
transform: translate3d(-200px, 0, 0);
|
|
18
|
+
}
|
|
19
|
+
to {
|
|
20
|
+
opacity: 1;
|
|
21
|
+
-webkit-transform: translateZ(0);
|
|
22
|
+
transform: translateZ(0);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
.animate-fadeInLeft {
|
|
26
|
+
-webkit-animation-name: fadeInLeft;
|
|
27
|
+
animation-name: fadeInLeft;
|
|
28
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
@-webkit-keyframes fadeInRight {
|
|
2
|
+
0% {
|
|
3
|
+
opacity: 0;
|
|
4
|
+
-webkit-transform: translate3d(200px, 0, 0);
|
|
5
|
+
transform: translate3d(200px, 0, 0);
|
|
6
|
+
}
|
|
7
|
+
to {
|
|
8
|
+
opacity: 1;
|
|
9
|
+
-webkit-transform: translateZ(0);
|
|
10
|
+
transform: translateZ(0);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
@keyframes fadeInRight {
|
|
14
|
+
0% {
|
|
15
|
+
opacity: 0;
|
|
16
|
+
-webkit-transform: translate3d(200px, 0, 0);
|
|
17
|
+
transform: translate3d(200px, 0, 0);
|
|
18
|
+
}
|
|
19
|
+
to {
|
|
20
|
+
opacity: 1;
|
|
21
|
+
-webkit-transform: translateZ(0);
|
|
22
|
+
transform: translateZ(0);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
.animate-fadeInRight {
|
|
26
|
+
-webkit-animation-name: fadeInRight;
|
|
27
|
+
animation-name: fadeInRight;
|
|
28
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
@-webkit-keyframes fadeIn {
|
|
2
|
+
0% {
|
|
3
|
+
opacity: 0;
|
|
4
|
+
}
|
|
5
|
+
to {
|
|
6
|
+
opacity: 1;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
@keyframes fadeIn {
|
|
10
|
+
0% {
|
|
11
|
+
opacity: 0;
|
|
12
|
+
}
|
|
13
|
+
to {
|
|
14
|
+
opacity: 1;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
.animate-fadeIn {
|
|
18
|
+
-webkit-animation-name: fadeIn;
|
|
19
|
+
animation-name: fadeIn;
|
|
20
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
@-webkit-keyframes fadeOut {
|
|
2
|
+
0% {
|
|
3
|
+
opacity: 1;
|
|
4
|
+
}
|
|
5
|
+
to {
|
|
6
|
+
opacity: 0;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
@keyframes fadeOut {
|
|
10
|
+
0% {
|
|
11
|
+
opacity: 1;
|
|
12
|
+
}
|
|
13
|
+
to {
|
|
14
|
+
opacity: 0;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
.animate-fadeOut {
|
|
18
|
+
-webkit-animation-name: fadeOut;
|
|
19
|
+
animation-name: fadeOut;
|
|
20
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
@-webkit-keyframes slideInDown {
|
|
2
|
+
0% {
|
|
3
|
+
-webkit-transform: translate3d(0, -200px, 0);
|
|
4
|
+
transform: translate3d(0, -200px, 0);
|
|
5
|
+
visibility: visible;
|
|
6
|
+
}
|
|
7
|
+
to {
|
|
8
|
+
-webkit-transform: translateZ(0);
|
|
9
|
+
transform: translateZ(0);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
@keyframes slideInDown {
|
|
13
|
+
0% {
|
|
14
|
+
-webkit-transform: translate3d(0, -200px, 0);
|
|
15
|
+
transform: translate3d(0, -200px, 0);
|
|
16
|
+
visibility: visible;
|
|
17
|
+
}
|
|
18
|
+
to {
|
|
19
|
+
-webkit-transform: translateZ(0);
|
|
20
|
+
transform: translateZ(0);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
.animate-slideInDown {
|
|
24
|
+
-webkit-animation-name: slideInDown;
|
|
25
|
+
animation-name: slideInDown;
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
@-webkit-keyframes slideInLeft {
|
|
2
|
+
0% {
|
|
3
|
+
-webkit-transform: translate3d(-100%, 0, 0);
|
|
4
|
+
transform: translate3d(-100%, 0, 0);
|
|
5
|
+
visibility: visible;
|
|
6
|
+
}
|
|
7
|
+
to {
|
|
8
|
+
-webkit-transform: translateZ(0);
|
|
9
|
+
transform: translateZ(0);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
@keyframes slideInLeft {
|
|
13
|
+
0% {
|
|
14
|
+
-webkit-transform: translate3d(-100%, 0, 0);
|
|
15
|
+
transform: translate3d(-100%, 0, 0);
|
|
16
|
+
visibility: visible;
|
|
17
|
+
}
|
|
18
|
+
to {
|
|
19
|
+
-webkit-transform: translateZ(0);
|
|
20
|
+
transform: translateZ(0);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
.animate-slideInLeft {
|
|
24
|
+
-webkit-animation-name: slideInLeft;
|
|
25
|
+
animation-name: slideInLeft;
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
@-webkit-keyframes slideInRight {
|
|
2
|
+
0% {
|
|
3
|
+
-webkit-transform: translate3d(100%, 0, 0);
|
|
4
|
+
transform: translate3d(100%, 0, 0);
|
|
5
|
+
visibility: visible;
|
|
6
|
+
}
|
|
7
|
+
to {
|
|
8
|
+
-webkit-transform: translateZ(0);
|
|
9
|
+
transform: translateZ(0);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
@keyframes slideInRight {
|
|
13
|
+
0% {
|
|
14
|
+
-webkit-transform: translate3d(100%, 0, 0);
|
|
15
|
+
transform: translate3d(100%, 0, 0);
|
|
16
|
+
visibility: visible;
|
|
17
|
+
}
|
|
18
|
+
to {
|
|
19
|
+
-webkit-transform: translateZ(0);
|
|
20
|
+
transform: translateZ(0);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
.animate-slideInRight {
|
|
24
|
+
-webkit-animation: slideInRight 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
25
|
+
animation: slideInRight 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
@-webkit-keyframes slideInUp {
|
|
2
|
+
0% {
|
|
3
|
+
-webkit-transform: translate3d(0, 200px, 0);
|
|
4
|
+
transform: translate3d(0, 200px, 0);
|
|
5
|
+
visibility: visible;
|
|
6
|
+
}
|
|
7
|
+
to {
|
|
8
|
+
-webkit-transform: translateZ(0);
|
|
9
|
+
transform: translateZ(0);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
@keyframes slideInUp {
|
|
13
|
+
0% {
|
|
14
|
+
-webkit-transform: translate3d(0, 200px, 0);
|
|
15
|
+
transform: translate3d(0, 200px, 0);
|
|
16
|
+
visibility: visible;
|
|
17
|
+
}
|
|
18
|
+
to {
|
|
19
|
+
-webkit-transform: translateZ(0);
|
|
20
|
+
transform: translateZ(0);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
.animate-slideInUp {
|
|
24
|
+
-webkit-animation-name: slideInUp;
|
|
25
|
+
animation-name: slideInUp;
|
|
26
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
.animate {
|
|
2
|
+
-webkit-animation-duration: 1s;
|
|
3
|
+
animation-duration: 1s;
|
|
4
|
+
-webkit-animation-fill-mode: both;
|
|
5
|
+
animation-fill-mode: both;
|
|
6
|
+
}
|
|
7
|
+
.animate.animate-infinite {
|
|
8
|
+
-webkit-animation-iteration-count: infinite;
|
|
9
|
+
animation-iteration-count: infinite;
|
|
10
|
+
}
|
|
11
|
+
.animate.animate-repeat-1 {
|
|
12
|
+
-webkit-animation-iteration-count: 1;
|
|
13
|
+
animation-iteration-count: 1;
|
|
14
|
+
}
|
|
15
|
+
.animate.animate-repeat-2 {
|
|
16
|
+
-webkit-animation-iteration-count: 2;
|
|
17
|
+
animation-iteration-count: 2;
|
|
18
|
+
}
|
|
19
|
+
.animate.animate-repeat-3 {
|
|
20
|
+
-webkit-animation-iteration-count: 3;
|
|
21
|
+
animation-iteration-count: 3;
|
|
22
|
+
}
|
|
23
|
+
.animate.animate-delay-1s {
|
|
24
|
+
-webkit-animation-delay: 1s;
|
|
25
|
+
animation-delay: 1s;
|
|
26
|
+
}
|
|
27
|
+
.animate.animate-delay-2s {
|
|
28
|
+
-webkit-animation-delay: 2s;
|
|
29
|
+
animation-delay: 2s;
|
|
30
|
+
}
|
|
31
|
+
.animate.animate-delay-3s {
|
|
32
|
+
-webkit-animation-delay: 3s;
|
|
33
|
+
animation-delay: 3s;
|
|
34
|
+
}
|
|
35
|
+
.animate.animate-delay-4s {
|
|
36
|
+
-webkit-animation-delay: 4s;
|
|
37
|
+
animation-delay: 4s;
|
|
38
|
+
}
|
|
39
|
+
.animate.animate-delay-5s {
|
|
40
|
+
-webkit-animation-delay: 5s;
|
|
41
|
+
animation-delay: 5s;
|
|
42
|
+
}
|
|
43
|
+
.animate.animate-faster {
|
|
44
|
+
-webkit-animation-duration: 0.2s;
|
|
45
|
+
animation-duration: 0.2s;
|
|
46
|
+
}
|
|
47
|
+
.animate.animate-fast {
|
|
48
|
+
-webkit-animation-duration: 0.5s;
|
|
49
|
+
animation-duration: 0.5s;
|
|
50
|
+
}
|
|
51
|
+
.animate.animate-slow {
|
|
52
|
+
-webkit-animation-duration: 2s;
|
|
53
|
+
animation-duration: 2s;
|
|
54
|
+
}
|
|
55
|
+
.animate.animate-slower {
|
|
56
|
+
-webkit-animation-duration: 3s;
|
|
57
|
+
animation-duration: 3s;
|
|
58
|
+
}
|
|
@@ -0,0 +1,258 @@
|
|
|
1
|
+
@-webkit-keyframes fadeInLeft {
|
|
2
|
+
0% {
|
|
3
|
+
opacity: 0;
|
|
4
|
+
-webkit-transform: translate3d(-200px, 0, 0);
|
|
5
|
+
transform: translate3d(-200px, 0, 0);
|
|
6
|
+
}
|
|
7
|
+
to {
|
|
8
|
+
opacity: 1;
|
|
9
|
+
-webkit-transform: translateZ(0);
|
|
10
|
+
transform: translateZ(0);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
@keyframes fadeInLeft {
|
|
14
|
+
0% {
|
|
15
|
+
opacity: 0;
|
|
16
|
+
-webkit-transform: translate3d(-200px, 0, 0);
|
|
17
|
+
transform: translate3d(-200px, 0, 0);
|
|
18
|
+
}
|
|
19
|
+
to {
|
|
20
|
+
opacity: 1;
|
|
21
|
+
-webkit-transform: translateZ(0);
|
|
22
|
+
transform: translateZ(0);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
.animate-fadeInLeft {
|
|
26
|
+
-webkit-animation-name: fadeInLeft;
|
|
27
|
+
animation-name: fadeInLeft;
|
|
28
|
+
}
|
|
29
|
+
@-webkit-keyframes fadeInRight {
|
|
30
|
+
0% {
|
|
31
|
+
opacity: 0;
|
|
32
|
+
-webkit-transform: translate3d(200px, 0, 0);
|
|
33
|
+
transform: translate3d(200px, 0, 0);
|
|
34
|
+
}
|
|
35
|
+
to {
|
|
36
|
+
opacity: 1;
|
|
37
|
+
-webkit-transform: translateZ(0);
|
|
38
|
+
transform: translateZ(0);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
@keyframes fadeInRight {
|
|
42
|
+
0% {
|
|
43
|
+
opacity: 0;
|
|
44
|
+
-webkit-transform: translate3d(200px, 0, 0);
|
|
45
|
+
transform: translate3d(200px, 0, 0);
|
|
46
|
+
}
|
|
47
|
+
to {
|
|
48
|
+
opacity: 1;
|
|
49
|
+
-webkit-transform: translateZ(0);
|
|
50
|
+
transform: translateZ(0);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
.animate-fadeInRight {
|
|
54
|
+
-webkit-animation-name: fadeInRight;
|
|
55
|
+
animation-name: fadeInRight;
|
|
56
|
+
}
|
|
57
|
+
@-webkit-keyframes fadeIn {
|
|
58
|
+
0% {
|
|
59
|
+
opacity: 0;
|
|
60
|
+
}
|
|
61
|
+
to {
|
|
62
|
+
opacity: 1;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
@keyframes fadeIn {
|
|
66
|
+
0% {
|
|
67
|
+
opacity: 0;
|
|
68
|
+
}
|
|
69
|
+
to {
|
|
70
|
+
opacity: 1;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
.animate-fadeIn {
|
|
74
|
+
-webkit-animation-name: fadeIn;
|
|
75
|
+
animation-name: fadeIn;
|
|
76
|
+
}
|
|
77
|
+
@-webkit-keyframes fadeOut {
|
|
78
|
+
0% {
|
|
79
|
+
opacity: 1;
|
|
80
|
+
}
|
|
81
|
+
to {
|
|
82
|
+
opacity: 0;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
@keyframes fadeOut {
|
|
86
|
+
0% {
|
|
87
|
+
opacity: 1;
|
|
88
|
+
}
|
|
89
|
+
to {
|
|
90
|
+
opacity: 0;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
.animate-fadeOut {
|
|
94
|
+
-webkit-animation-name: fadeOut;
|
|
95
|
+
animation-name: fadeOut;
|
|
96
|
+
}
|
|
97
|
+
@-webkit-keyframes slideInDown {
|
|
98
|
+
0% {
|
|
99
|
+
-webkit-transform: translate3d(0, -200px, 0);
|
|
100
|
+
transform: translate3d(0, -200px, 0);
|
|
101
|
+
visibility: visible;
|
|
102
|
+
}
|
|
103
|
+
to {
|
|
104
|
+
-webkit-transform: translateZ(0);
|
|
105
|
+
transform: translateZ(0);
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
@keyframes slideInDown {
|
|
109
|
+
0% {
|
|
110
|
+
-webkit-transform: translate3d(0, -200px, 0);
|
|
111
|
+
transform: translate3d(0, -200px, 0);
|
|
112
|
+
visibility: visible;
|
|
113
|
+
}
|
|
114
|
+
to {
|
|
115
|
+
-webkit-transform: translateZ(0);
|
|
116
|
+
transform: translateZ(0);
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
.animate-slideInDown {
|
|
120
|
+
-webkit-animation-name: slideInDown;
|
|
121
|
+
animation-name: slideInDown;
|
|
122
|
+
}
|
|
123
|
+
@-webkit-keyframes slideInLeft {
|
|
124
|
+
0% {
|
|
125
|
+
-webkit-transform: translate3d(-100%, 0, 0);
|
|
126
|
+
transform: translate3d(-100%, 0, 0);
|
|
127
|
+
visibility: visible;
|
|
128
|
+
}
|
|
129
|
+
to {
|
|
130
|
+
-webkit-transform: translateZ(0);
|
|
131
|
+
transform: translateZ(0);
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
@keyframes slideInLeft {
|
|
135
|
+
0% {
|
|
136
|
+
-webkit-transform: translate3d(-100%, 0, 0);
|
|
137
|
+
transform: translate3d(-100%, 0, 0);
|
|
138
|
+
visibility: visible;
|
|
139
|
+
}
|
|
140
|
+
to {
|
|
141
|
+
-webkit-transform: translateZ(0);
|
|
142
|
+
transform: translateZ(0);
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
.animate-slideInLeft {
|
|
146
|
+
-webkit-animation-name: slideInLeft;
|
|
147
|
+
animation-name: slideInLeft;
|
|
148
|
+
}
|
|
149
|
+
@-webkit-keyframes slideInRight {
|
|
150
|
+
0% {
|
|
151
|
+
-webkit-transform: translate3d(100%, 0, 0);
|
|
152
|
+
transform: translate3d(100%, 0, 0);
|
|
153
|
+
visibility: visible;
|
|
154
|
+
}
|
|
155
|
+
to {
|
|
156
|
+
-webkit-transform: translateZ(0);
|
|
157
|
+
transform: translateZ(0);
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
@keyframes slideInRight {
|
|
161
|
+
0% {
|
|
162
|
+
-webkit-transform: translate3d(100%, 0, 0);
|
|
163
|
+
transform: translate3d(100%, 0, 0);
|
|
164
|
+
visibility: visible;
|
|
165
|
+
}
|
|
166
|
+
to {
|
|
167
|
+
-webkit-transform: translateZ(0);
|
|
168
|
+
transform: translateZ(0);
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
.animate-slideInRight {
|
|
172
|
+
-webkit-animation: slideInRight 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
173
|
+
animation: slideInRight 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
174
|
+
}
|
|
175
|
+
@-webkit-keyframes slideInUp {
|
|
176
|
+
0% {
|
|
177
|
+
-webkit-transform: translate3d(0, 200px, 0);
|
|
178
|
+
transform: translate3d(0, 200px, 0);
|
|
179
|
+
visibility: visible;
|
|
180
|
+
}
|
|
181
|
+
to {
|
|
182
|
+
-webkit-transform: translateZ(0);
|
|
183
|
+
transform: translateZ(0);
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
@keyframes slideInUp {
|
|
187
|
+
0% {
|
|
188
|
+
-webkit-transform: translate3d(0, 200px, 0);
|
|
189
|
+
transform: translate3d(0, 200px, 0);
|
|
190
|
+
visibility: visible;
|
|
191
|
+
}
|
|
192
|
+
to {
|
|
193
|
+
-webkit-transform: translateZ(0);
|
|
194
|
+
transform: translateZ(0);
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
.animate-slideInUp {
|
|
198
|
+
-webkit-animation-name: slideInUp;
|
|
199
|
+
animation-name: slideInUp;
|
|
200
|
+
}
|
|
201
|
+
.animate {
|
|
202
|
+
-webkit-animation-duration: 1s;
|
|
203
|
+
animation-duration: 1s;
|
|
204
|
+
-webkit-animation-fill-mode: both;
|
|
205
|
+
animation-fill-mode: both;
|
|
206
|
+
}
|
|
207
|
+
.animate.animate-infinite {
|
|
208
|
+
-webkit-animation-iteration-count: infinite;
|
|
209
|
+
animation-iteration-count: infinite;
|
|
210
|
+
}
|
|
211
|
+
.animate.animate-repeat-1 {
|
|
212
|
+
-webkit-animation-iteration-count: 1;
|
|
213
|
+
animation-iteration-count: 1;
|
|
214
|
+
}
|
|
215
|
+
.animate.animate-repeat-2 {
|
|
216
|
+
-webkit-animation-iteration-count: 2;
|
|
217
|
+
animation-iteration-count: 2;
|
|
218
|
+
}
|
|
219
|
+
.animate.animate-repeat-3 {
|
|
220
|
+
-webkit-animation-iteration-count: 3;
|
|
221
|
+
animation-iteration-count: 3;
|
|
222
|
+
}
|
|
223
|
+
.animate.animate-delay-1s {
|
|
224
|
+
-webkit-animation-delay: 1s;
|
|
225
|
+
animation-delay: 1s;
|
|
226
|
+
}
|
|
227
|
+
.animate.animate-delay-2s {
|
|
228
|
+
-webkit-animation-delay: 2s;
|
|
229
|
+
animation-delay: 2s;
|
|
230
|
+
}
|
|
231
|
+
.animate.animate-delay-3s {
|
|
232
|
+
-webkit-animation-delay: 3s;
|
|
233
|
+
animation-delay: 3s;
|
|
234
|
+
}
|
|
235
|
+
.animate.animate-delay-4s {
|
|
236
|
+
-webkit-animation-delay: 4s;
|
|
237
|
+
animation-delay: 4s;
|
|
238
|
+
}
|
|
239
|
+
.animate.animate-delay-5s {
|
|
240
|
+
-webkit-animation-delay: 5s;
|
|
241
|
+
animation-delay: 5s;
|
|
242
|
+
}
|
|
243
|
+
.animate.animate-faster {
|
|
244
|
+
-webkit-animation-duration: 0.2s;
|
|
245
|
+
animation-duration: 0.2s;
|
|
246
|
+
}
|
|
247
|
+
.animate.animate-fast {
|
|
248
|
+
-webkit-animation-duration: 0.5s;
|
|
249
|
+
animation-duration: 0.5s;
|
|
250
|
+
}
|
|
251
|
+
.animate.animate-slow {
|
|
252
|
+
-webkit-animation-duration: 2s;
|
|
253
|
+
animation-duration: 2s;
|
|
254
|
+
}
|
|
255
|
+
.animate.animate-slower {
|
|
256
|
+
-webkit-animation-duration: 3s;
|
|
257
|
+
animation-duration: 3s;
|
|
258
|
+
}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
body {
|
|
2
|
+
font-size: 16px;
|
|
3
|
+
}
|
|
4
|
+
a,
|
|
5
|
+
button {
|
|
6
|
+
cursor: pointer;
|
|
7
|
+
}
|
|
8
|
+
.vx-avatar {
|
|
9
|
+
display: flex;
|
|
10
|
+
border-radius: 50%;
|
|
11
|
+
border: 2px solid #f1f1f1;
|
|
12
|
+
}
|
|
13
|
+
.vx-avatar.md {
|
|
14
|
+
height: 28px;
|
|
15
|
+
width: 28px;
|
|
16
|
+
}
|
|
17
|
+
.vx-avatar.sm {
|
|
18
|
+
height: 24px;
|
|
19
|
+
width: 24px;
|
|
20
|
+
}
|
|
21
|
+
.vx-avatar.sm span {
|
|
22
|
+
font-size: 8px;
|
|
23
|
+
font-weight: 500;
|
|
24
|
+
}
|
|
25
|
+
.vx-avatar.lg {
|
|
26
|
+
height: 32px;
|
|
27
|
+
width: 32px;
|
|
28
|
+
}
|
|
29
|
+
.vx-avatar.lg span {
|
|
30
|
+
font-size: 12px;
|
|
31
|
+
}
|
|
32
|
+
.vx-avatar.x-lg {
|
|
33
|
+
height: 80px;
|
|
34
|
+
width: 80px;
|
|
35
|
+
}
|
|
36
|
+
.vx-avatar.x-lg span {
|
|
37
|
+
font-size: 18px;
|
|
38
|
+
font-weight: 600;
|
|
39
|
+
}
|
|
40
|
+
.vx-avatar.counter {
|
|
41
|
+
cursor: pointer;
|
|
42
|
+
}
|
|
43
|
+
.vx-avatar span {
|
|
44
|
+
display: flex;
|
|
45
|
+
justify-content: center;
|
|
46
|
+
align-items: center;
|
|
47
|
+
font-size: 10px;
|
|
48
|
+
font-weight: 500;
|
|
49
|
+
color: #FFFFFF;
|
|
50
|
+
width: 100%;
|
|
51
|
+
height: 100%;
|
|
52
|
+
border-radius: 50%;
|
|
53
|
+
text-transform: uppercase;
|
|
54
|
+
margin: 0;
|
|
55
|
+
background: #F1F1F1;
|
|
56
|
+
}
|
|
57
|
+
.vx-avatar span.green {
|
|
58
|
+
background: #34AA44;
|
|
59
|
+
}
|
|
60
|
+
.vx-avatar span.blue {
|
|
61
|
+
background: #1E5DD3;
|
|
62
|
+
}
|
|
63
|
+
.vx-avatar span.grey {
|
|
64
|
+
color: #34AA44 !important;
|
|
65
|
+
font-size: 14px !important;
|
|
66
|
+
}
|
|
67
|
+
.vx-avatar img {
|
|
68
|
+
width: 100%;
|
|
69
|
+
height: 100%;
|
|
70
|
+
border-radius: 50%;
|
|
71
|
+
}
|
|
72
|
+
.vx-avatar-container {
|
|
73
|
+
padding-bottom: 20px;
|
|
74
|
+
}
|
|
75
|
+
.vx-avatar-container .vx-avatar + .vx-avatar {
|
|
76
|
+
margin-left: 20px;
|
|
77
|
+
}
|
|
78
|
+
.vx-avatar-group {
|
|
79
|
+
display: flex;
|
|
80
|
+
}
|
|
81
|
+
.vx-avatar-group .vx-avatar + .vx-avatar {
|
|
82
|
+
margin-left: -10px;
|
|
83
|
+
}
|