@anasahmed8819/viewdu-market-ngx-html-prv 1.0.8

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.
Files changed (36) hide show
  1. package/README.md +24 -0
  2. package/anasahmed8819-viewdu-market-ngx-html-prv-1.0.8.tgz +0 -0
  3. package/fesm2022/anasahmed8819-viewdu-market-ngx-html-prv.mjs +634 -0
  4. package/fesm2022/anasahmed8819-viewdu-market-ngx-html-prv.mjs.map +1 -0
  5. package/index.d.ts +5 -0
  6. package/lib/spec-prv/components/architecture/architecture.component.d.ts +14 -0
  7. package/lib/spec-prv/components/change/change.component.d.ts +14 -0
  8. package/lib/spec-prv/components/data/data.component.d.ts +14 -0
  9. package/lib/spec-prv/components/overview/overview.component.d.ts +14 -0
  10. package/lib/spec-prv/components/rules/rules.component.d.ts +14 -0
  11. package/lib/spec-prv/components/tree-spec/tree-spec.component.d.ts +45 -0
  12. package/lib/spec-prv/components/ui/ui.component.d.ts +14 -0
  13. package/lib/spec-prv/components/ui-community/ui-community.component.d.ts +14 -0
  14. package/lib/spec-prv/components/ui-feature/ui-feature.component.d.ts +14 -0
  15. package/lib/spec-prv/components/ui-product/ui-product.component.d.ts +14 -0
  16. package/lib/spec-prv/components/ui-profile/ui-profile.component.d.ts +14 -0
  17. package/lib/spec-prv/components/ui-recruit/ui-recruit.component.d.ts +14 -0
  18. package/lib/spec-prv/components/ui-service/ui-service.component.d.ts +14 -0
  19. package/lib/spec-prv/pages/spec-prv.component.d.ts +20 -0
  20. package/lib/spec-prv/spec-prv-routing.module.d.ts +7 -0
  21. package/lib/spec-prv/spec-prv.module.d.ts +25 -0
  22. package/lib/viewdu-market-ngx-html-prv.module.d.ts +13 -0
  23. package/package.json +39 -0
  24. package/public-api.d.ts +17 -0
  25. package/src/assets/home/css/bootstrap.min.css +11 -0
  26. package/src/assets/home/css/style-e-icon.scss +304 -0
  27. package/src/assets/home/css/style-landing.css +41 -0
  28. package/src/assets/home/css/style.css +969 -0
  29. package/src/assets/home/css/themify-icons.css +1455 -0
  30. package/src/assets/home/images/VoodooDanceGIF.gif +0 -0
  31. package/src/assets/home/images/flags/bronze.png +0 -0
  32. package/src/assets/home/images/flags/gold.png +0 -0
  33. package/src/assets/home/images/flags/silver.png +0 -0
  34. package/src/assets/home/images/promote/architecture/model-viewdu-market.png +0 -0
  35. package/src/assets/home/images/voodoo-trans-bkgnd-1000px.png +0 -0
  36. package/src/assets/i18n/en.json +82 -0
@@ -0,0 +1,41 @@
1
+ /*
2
+ * Copyright (c) Cashikoi. All rights reserved.
3
+ * This file is subject to the terms and conditions defined in file 'LICENSE.txt', which is part of this source code package.
4
+ */
5
+ @charset "UTF-8";
6
+
7
+ /* GLOBAL
8
+ ----------------------*/
9
+
10
+ body {
11
+ font-family: 'Roboto', sans-serif;
12
+ position: relative;
13
+ }
14
+
15
+ a {
16
+ color: rgb(27, 4, 235);
17
+ font-size: 18px;
18
+ line-height: 27px;
19
+ }
20
+
21
+
22
+ /* HERO
23
+ ----------------------*/
24
+
25
+ .bg-gradient {
26
+ background: linear-gradient(138.18deg, rgb(65, 51, 255) 0%, rgb(171, 184, 255) 100%);
27
+ overflow: hidden;
28
+ }
29
+
30
+ /* FOOTER
31
+ ----------------------*/
32
+
33
+ #bigHalfCircle path {
34
+ fill: #fff;
35
+ stroke: #fff;
36
+ }
37
+ #bigHalfCircle {
38
+ margin-top: -99px;
39
+ display: block;
40
+ }
41
+