vitat-css 0.1.0 → 0.1.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.
Files changed (156) hide show
  1. checksums.yaml +4 -4
  2. data/.DS_Store +0 -0
  3. data/.gitignore +146 -8
  4. data/.idea/.gitignore +5 -0
  5. data/.idea/modules.xml +8 -0
  6. data/.idea/vcs.xml +6 -0
  7. data/.idea/vitat-design-system.iml +12 -0
  8. data/.vscode/settings.json +3 -0
  9. data/HTML/.DS_Store +0 -0
  10. data/HTML/Components/Arabescos.html +87 -0
  11. data/HTML/Components/Buttons.html +105 -0
  12. data/HTML/Components/Card.html +337 -0
  13. data/HTML/Components/CardApp.html +201 -0
  14. data/HTML/Components/Inputs.html +105 -0
  15. data/HTML/Components/Lista.html +106 -0
  16. data/HTML/Components/Pagination.html +218 -0
  17. data/HTML/Components/Pills.html +94 -0
  18. data/HTML/Components/Revisado.html +163 -0
  19. data/JS/prism.js +12 -0
  20. data/bootstrap/scss/_accordion.scss +118 -0
  21. data/bootstrap/scss/_alert.scss +57 -0
  22. data/bootstrap/scss/_badge.scss +29 -0
  23. data/bootstrap/scss/_breadcrumb.scss +28 -0
  24. data/bootstrap/scss/_button-group.scss +139 -0
  25. data/bootstrap/scss/_buttons.scss +111 -0
  26. data/bootstrap/scss/_card.scss +216 -0
  27. data/bootstrap/scss/_carousel.scss +229 -0
  28. data/bootstrap/scss/_close.scss +40 -0
  29. data/bootstrap/scss/_containers.scss +41 -0
  30. data/bootstrap/scss/_dropdown.scss +240 -0
  31. data/bootstrap/scss/_forms.scss +9 -0
  32. data/bootstrap/scss/_functions.scss +302 -0
  33. data/bootstrap/scss/_grid.scss +33 -0
  34. data/bootstrap/scss/_helpers.scss +9 -0
  35. data/bootstrap/scss/_images.scss +42 -0
  36. data/bootstrap/scss/_list-group.scss +174 -0
  37. data/bootstrap/scss/_mixins.scss +43 -0
  38. data/bootstrap/scss/_modal.scss +209 -0
  39. data/bootstrap/scss/_nav.scss +139 -0
  40. data/bootstrap/scss/_navbar.scss +335 -0
  41. data/bootstrap/scss/_offcanvas.scss +83 -0
  42. data/bootstrap/scss/_pagination.scss +64 -0
  43. data/bootstrap/scss/_placeholders.scss +51 -0
  44. data/bootstrap/scss/_popover.scss +158 -0
  45. data/bootstrap/scss/_progress.scss +48 -0
  46. data/bootstrap/scss/_reboot.scss +625 -0
  47. data/bootstrap/scss/_root.scss +54 -0
  48. data/bootstrap/scss/_spinners.scss +69 -0
  49. data/bootstrap/scss/_tables.scss +155 -0
  50. data/bootstrap/scss/_toasts.scss +51 -0
  51. data/bootstrap/scss/_tooltip.scss +115 -0
  52. data/bootstrap/scss/_transitions.scss +27 -0
  53. data/bootstrap/scss/_type.scss +104 -0
  54. data/bootstrap/scss/_utilities.scss +630 -0
  55. data/bootstrap/scss/_variables.scss +1641 -0
  56. data/bootstrap/scss/bootstrap-grid.scss +67 -0
  57. data/bootstrap/scss/bootstrap-reboot.scss +13 -0
  58. data/bootstrap/scss/bootstrap-utilities.scss +18 -0
  59. data/bootstrap/scss/bootstrap.scss +53 -0
  60. data/bootstrap/scss/forms/_floating-labels.scss +63 -0
  61. data/bootstrap/scss/forms/_form-check.scss +152 -0
  62. data/bootstrap/scss/forms/_form-control.scss +219 -0
  63. data/bootstrap/scss/forms/_form-range.scss +91 -0
  64. data/bootstrap/scss/forms/_form-select.scss +72 -0
  65. data/bootstrap/scss/forms/_form-text.scss +11 -0
  66. data/bootstrap/scss/forms/_input-group.scss +121 -0
  67. data/bootstrap/scss/forms/_labels.scss +36 -0
  68. data/bootstrap/scss/forms/_validation.scss +12 -0
  69. data/bootstrap/scss/helpers/_clearfix.scss +3 -0
  70. data/bootstrap/scss/helpers/_colored-links.scss +12 -0
  71. data/bootstrap/scss/helpers/_position.scss +30 -0
  72. data/bootstrap/scss/helpers/_ratio.scss +26 -0
  73. data/bootstrap/scss/helpers/_stacks.scss +15 -0
  74. data/bootstrap/scss/helpers/_stretched-link.scss +15 -0
  75. data/bootstrap/scss/helpers/_text-truncation.scss +7 -0
  76. data/bootstrap/scss/helpers/_visually-hidden.scss +8 -0
  77. data/bootstrap/scss/helpers/_vr.scss +8 -0
  78. data/bootstrap/scss/mixins/_alert.scss +11 -0
  79. data/bootstrap/scss/mixins/_backdrop.scss +14 -0
  80. data/bootstrap/scss/mixins/_border-radius.scss +78 -0
  81. data/bootstrap/scss/mixins/_box-shadow.scss +18 -0
  82. data/bootstrap/scss/mixins/_breakpoints.scss +127 -0
  83. data/bootstrap/scss/mixins/_buttons.scss +133 -0
  84. data/bootstrap/scss/mixins/_caret.scss +64 -0
  85. data/bootstrap/scss/mixins/_clearfix.scss +9 -0
  86. data/bootstrap/scss/mixins/_color-scheme.scss +7 -0
  87. data/bootstrap/scss/mixins/_container.scss +9 -0
  88. data/bootstrap/scss/mixins/_deprecate.scss +10 -0
  89. data/bootstrap/scss/mixins/_forms.scss +144 -0
  90. data/bootstrap/scss/mixins/_gradients.scss +47 -0
  91. data/bootstrap/scss/mixins/_grid.scss +151 -0
  92. data/bootstrap/scss/mixins/_image.scss +16 -0
  93. data/bootstrap/scss/mixins/_list-group.scss +24 -0
  94. data/bootstrap/scss/mixins/_lists.scss +7 -0
  95. data/bootstrap/scss/mixins/_pagination.scss +31 -0
  96. data/bootstrap/scss/mixins/_reset-text.scss +17 -0
  97. data/bootstrap/scss/mixins/_resize.scss +6 -0
  98. data/bootstrap/scss/mixins/_table-variants.scss +21 -0
  99. data/bootstrap/scss/mixins/_text-truncate.scss +8 -0
  100. data/bootstrap/scss/mixins/_transition.scss +26 -0
  101. data/bootstrap/scss/mixins/_utilities.scss +89 -0
  102. data/bootstrap/scss/mixins/_visually-hidden.scss +29 -0
  103. data/bootstrap/scss/utilities/_api.scss +47 -0
  104. data/bootstrap/scss/vendor/_rfs.scss +354 -0
  105. data/css/prism.css +4 -0
  106. data/css/style.css +6 -0
  107. data/gulpfile.js +35 -0
  108. data/img/.DS_Store +0 -0
  109. data/img/arrow-active.png +0 -0
  110. data/img/arrow-disable.png +0 -0
  111. data/img/arrow.png +0 -0
  112. data/img/close.png +0 -0
  113. data/img/phone.png +0 -0
  114. data/img/placeholder.png +0 -0
  115. data/img/placeholder_avatar.png +0 -0
  116. data/img/qr-code-loja.png +0 -0
  117. data/img/store_icon.png +0 -0
  118. data/index.html +33 -0
  119. data/install_nvm.sh +425 -0
  120. data/package-lock.json +4233 -0
  121. data/package.json +9 -0
  122. data/scss/.DS_Store +0 -0
  123. data/scss/guide/.DS_Store +0 -0
  124. data/scss/guide/_variables.scss +171 -0
  125. data/scss/guide/components/_animations.scss +8 -0
  126. data/scss/guide/components/_typography.scss +157 -0
  127. data/scss/guide/components/arabescos/arabescos.scss +47 -0
  128. data/scss/guide/components/buttons/btn.scss +26 -0
  129. data/scss/guide/components/buttons/btn__large.scss +10 -0
  130. data/scss/guide/components/buttons/btn__primary.scss +11 -0
  131. data/scss/guide/components/buttons/btn__secondary.scss +11 -0
  132. data/scss/guide/components/buttons/btn__tertiary.scss +11 -0
  133. data/scss/guide/components/cardapp/cardapp.scss +151 -0
  134. data/scss/guide/components/cards/card.scss +58 -0
  135. data/scss/guide/components/cards/card__horizontal.scss +35 -0
  136. data/scss/guide/components/cards/card__horizontal__small.scss +9 -0
  137. data/scss/guide/components/inputs/_checkbox.scss +45 -0
  138. data/scss/guide/components/inputs/_text.scss +8 -0
  139. data/scss/guide/components/lista/lista.scss +31 -0
  140. data/scss/guide/components/pagination/pagination.scss +81 -0
  141. data/scss/guide/components/pills/pill.scss +31 -0
  142. data/scss/guide/components/pills/pill__full.scss +8 -0
  143. data/scss/guide/components/pills/pill__secundary.scss +8 -0
  144. data/scss/guide/components/pills/pill__small.scss +8 -0
  145. data/scss/guide/components/revisado/revisado.scss +52 -0
  146. data/scss/guide/style.scss +96 -0
  147. metadata +147 -12
  148. data/CODE_OF_CONDUCT.md +0 -74
  149. data/Gemfile +0 -6
  150. data/LICENSE.txt +0 -21
  151. data/Rakefile +0 -2
  152. data/bin/console +0 -14
  153. data/bin/setup +0 -8
  154. data/lib/vitat/css/version.rb +0 -5
  155. data/lib/vitat/css.rb +0 -8
  156. data/vitat-css.gemspec +0 -41
@@ -0,0 +1,35 @@
1
+ @import "_variables.scss";
2
+ @import "../_typography";
3
+
4
+ .card__horizontal {
5
+ @extend .card;
6
+ display: flex;
7
+ flex-direction: row;
8
+ .card__wrapper {
9
+ padding-bottom: $spacing-xxxs;
10
+ min-height: 117px;
11
+ & + .heading {
12
+ display: flex;
13
+ align-items: center;
14
+ @media (min-width: 1200px) {
15
+ min-height: 147px;
16
+ }
17
+ }
18
+ }
19
+ .card__img {
20
+ border-radius: $spacing-xxxs 0px 0px $spacing-xxxs;
21
+ width: 100px;
22
+ height: auto;
23
+ object-fit: cover;
24
+ @media (min-width: 1200px) {
25
+ width: 147px;
26
+ }
27
+ }
28
+
29
+ .card__text {
30
+ display: none;
31
+ @media (min-width: 1200px) {
32
+ display: block;
33
+ }
34
+ }
35
+ }
@@ -0,0 +1,9 @@
1
+ @import "_variables.scss";
2
+ @import "../_typography";
3
+
4
+ .card__horizontal__small {
5
+ @extend .card;
6
+ .card__wrapper {
7
+ padding-bottom: $spacing-sm;
8
+ }
9
+ }
@@ -0,0 +1,45 @@
1
+ input[type=checkbox]:checked + .checkbox:before {
2
+ background: $brand-color-primary-pure;
3
+ }
4
+
5
+ input[type=checkbox]:checked + .checkbox:after {
6
+ content: '';
7
+ display: block;
8
+ position: absolute;
9
+ top: 2px;
10
+ left: 9px;
11
+ width: 6px;
12
+ height: 14px;
13
+ border: solid $neutral-color-low-pure;
14
+ border-width: 0 $border-width-thin $border-width-thin 0;
15
+ transform: rotate(45deg);
16
+ }
17
+
18
+ .checkbox {
19
+ position: relative;
20
+ cursor: pointer;
21
+ }
22
+
23
+ .checkbox:before {
24
+ content: '';
25
+ -webkit-appearance: none;
26
+ background-color: transparent;
27
+ border: $border-width-thin solid $neutral-color-high-medium;
28
+ border-radius: $border-radius-xs;
29
+ box-shadow: $shadow-level-1, inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
30
+ padding: $spacing-nano;
31
+ display: inline-block;
32
+ position: relative;
33
+ vertical-align: middle;
34
+ background: $neutral-color-high-pure;
35
+ cursor: pointer;
36
+ }
37
+
38
+ input[type=checkbox] {
39
+ padding: 0;
40
+ height: initial;
41
+ width: initial;
42
+ margin-bottom: 0;
43
+ display: none;
44
+ cursor: pointer;
45
+ }
@@ -0,0 +1,8 @@
1
+ .input {
2
+ border: $border-width-hairline solid $neutral-color-high-medium;
3
+ height: 48px;
4
+ width: 296px;
5
+ background: $neutral-color-high-pure;
6
+ border-radius: $border-radius-md;
7
+ padding: $spacing-xxxs;
8
+ }
@@ -0,0 +1,31 @@
1
+ @import "_variables.scss";
2
+ @import "../_typography";
3
+
4
+ .list {
5
+ border: $border-width-hairline solid $neutral-color-high-medium;
6
+ padding: 0;
7
+ border-radius: $sizing-xxxs;
8
+ text-align: center;
9
+ &__title {
10
+ padding: $spacing-nano $spacing-md;
11
+ margin: 0;
12
+ @media (min-width: 1200px) {
13
+ padding: $spacing-xxxs 0 $spacing-xxxs 0;
14
+ }
15
+ }
16
+ &__line {
17
+ border-top: $border-width-hairline solid $neutral-color-high-medium;
18
+ padding: $spacing-xxxs $spacing-nano;
19
+ text-align: center;
20
+ color: $neutral-color-low-pure;
21
+ }
22
+ &__item {
23
+ text-decoration: none;
24
+ }
25
+ &__more {
26
+ color: $brand-color-secondary-pure;
27
+ margin: 0;
28
+ //display: block;
29
+ text-decoration: underline;
30
+ }
31
+ }
@@ -0,0 +1,81 @@
1
+ @import "_variables.scss";
2
+ @import "../_typography";
3
+ @import "../animations";
4
+
5
+ .pagination {
6
+ display: flex;
7
+ justify-content: space-around;
8
+ align-items: center;
9
+ @media (min-width: 1200px) {
10
+ width: 388px;
11
+ height: $spacing-xs;
12
+ }
13
+
14
+ a:focus {
15
+ color: $brand-color-primary-pure;
16
+ }
17
+
18
+ &__previous {
19
+ background-image: url(/img/arrow.png);
20
+ background-repeat: no-repeat;
21
+ }
22
+
23
+ &__previousDisable {
24
+ background-image: url(/img/arrow-disable.png);
25
+ }
26
+
27
+ &__previousHover:hover {
28
+ background-image: url(/img/arrow-active.png);
29
+ }
30
+
31
+ &__next {
32
+ background-image: url(/img/arrow.png);
33
+ background-repeat: no-repeat;
34
+ transform: rotate(180deg);
35
+ }
36
+
37
+ &__nextDisable {
38
+ background-image: url(/img/arrow-disable.png);
39
+ transform: rotate(180deg);
40
+ }
41
+
42
+ &__nextHover:hover {
43
+ background-image: url(/img/arrow-active.png);
44
+ transform: rotate(180deg);
45
+ }
46
+
47
+ &__previous,
48
+ &__next {
49
+ width: 10.5px;
50
+ height: 19.5px;
51
+ @media (min-width: 1200px) {
52
+ width: 14px;
53
+ height: 20px;
54
+ }
55
+ }
56
+
57
+ &__pages {
58
+ text-decoration: none;
59
+ font-size: $font-size-sm;
60
+ color: $neutral-color-high-dark;
61
+ cursor: pointer;
62
+ @media (min-width: 1200px) {
63
+ font-size: $font-size-md;
64
+ }
65
+ }
66
+
67
+ &__visibleDesk {
68
+ display: none;
69
+ @media (min-width: 1200px) {
70
+ display: block;
71
+ }
72
+ }
73
+
74
+ &__active,
75
+ &__pages:hover {
76
+ color: $brand-color-primary-pure;
77
+ }
78
+ &__disable {
79
+ color: $neutral-color-high-medium;
80
+ }
81
+ }
@@ -0,0 +1,31 @@
1
+ @import "_variables.scss";
2
+ @import "../_typography";
3
+
4
+ .pill {
5
+ width: fit-content;
6
+ display: flex;
7
+ align-items: center;
8
+ justify-content: center;
9
+ font-size: $font-size-xxxs;
10
+ font-weight: $font-weight-medium;
11
+ text-decoration: none;
12
+ height: $sizing-xs;
13
+ border: $border-width-thin solid;
14
+ border-radius: $border-radius-pill;
15
+ margin-right: 8px;
16
+ padding: $spacing-nano $spacing-xxxs;
17
+ &:hover {
18
+ text-decoration: underline;
19
+ }
20
+ @media (min-width: 1200px) {
21
+ margin-bottom: $sizing-xxxs;
22
+ }
23
+ }
24
+ //helper
25
+ .bg__yellow {
26
+ background-color: $well-being-color-primary;
27
+ }
28
+
29
+ .bg__pink {
30
+ background-color: $health-color-primary;
31
+ }
@@ -0,0 +1,8 @@
1
+ @import "_variables.scss";
2
+ @import "../_typography";
3
+
4
+ .pill__full {
5
+ @extend .pill;
6
+ color: $neutral-color-low-pure;
7
+ border: $border-radius-none solid $well-being-color-primary;
8
+ }
@@ -0,0 +1,8 @@
1
+ @import "_variables.scss";
2
+ @import "../_typography";
3
+
4
+ .pill__secundary {
5
+ @extend .pill;
6
+ color: $brand-color-secondary-pure;
7
+ border-color: $brand-color-secondary-pure;
8
+ }
@@ -0,0 +1,8 @@
1
+ @import "_variables.scss";
2
+ @import "../_typography";
3
+
4
+ .pill__small {
5
+ @extend .pill;
6
+ padding: $spacing-quarck $spacing-nano;
7
+ height: $sizing-xxs;
8
+ }
@@ -0,0 +1,52 @@
1
+ @import "_variables.scss";
2
+ @import "../_typography";
3
+ @import "../animations";
4
+
5
+ .revisado {
6
+ background-color: $neutral-color-high-pure;
7
+ border-radius: $border-radius-md;
8
+ border: $border-width-hairline solid $neutral-color-high-medium;
9
+ width: 100%;
10
+ .body {
11
+ color: $neutral-color-low-pure;
12
+ }
13
+ .overline {
14
+ color: $neutral-color-low-pure;
15
+ }
16
+ .pillText {
17
+ color: $neutral-color-low-pure;
18
+ }
19
+ h3 {
20
+ margin: $spacing-nano 0 0 0;
21
+ @media (min-width: 1200px) {
22
+ margin: $spacing-quarck 0 0 0;
23
+ }
24
+ }
25
+ p {
26
+ margin: 0;
27
+ }
28
+ &__ancora {
29
+ text-decoration: none;
30
+ }
31
+ &__wrapper {
32
+ display: flex;
33
+ flex-direction: row;
34
+ padding: $spacing-xxxs;
35
+ color: $neutral-color-low-pure;
36
+ }
37
+ &__img {
38
+ border-radius: 50%;
39
+ width: $sizing-md;
40
+ height: $sizing-md;
41
+ @media (min-width: 1200px) {
42
+ width: $sizing-xl;
43
+ height: $sizing-xl;
44
+ }
45
+ }
46
+ &__text {
47
+ padding-left: $spacing-xxxs;
48
+ display: flex;
49
+ flex-direction: column;
50
+ justify-content: center;
51
+ }
52
+ }
@@ -0,0 +1,96 @@
1
+ //BOOTSTRAP PARTES OBRIGATÓRIAS
2
+
3
+ @import "bootstrap/scss/_functions";
4
+ @import "bootstrap/scss/_variables";
5
+ @import "bootstrap/scss/_mixins";
6
+
7
+ //BOOTSTRAP PARTES OPCIONAIS
8
+
9
+ @import "bootstrap/scss/grid";
10
+ @import "bootstrap/scss/containers";
11
+ @import "bootstrap/scss/bootstrap-grid";
12
+
13
+ //GUIDE VITAT
14
+
15
+ @import "scss/guide/_variables";
16
+ @import "scss/guide/components/_typography";
17
+
18
+ //GUIDE VITAT BOTÕES
19
+
20
+ @import "scss/guide/components/buttons/btn";
21
+ @import "scss/guide/components/buttons/btn__primary";
22
+ @import "scss/guide/components/buttons/btn__large";
23
+ @import "scss/guide/components/buttons/btn__tertiary";
24
+
25
+ //GUIDE VITAT INPUTS
26
+
27
+ @import "scss/guide/components/inputs/text";
28
+ @import "scss/guide/components/inputs/checkbox";
29
+
30
+ //GUIDE VITAT PILLS
31
+
32
+ @import "scss/guide/components/pills/pill";
33
+ @import "scss/guide/components/pills/pill__secundary";
34
+ @import "scss/guide/components/pills/pill__small";
35
+ @import "scss/guide/components/pills/pill__full";
36
+
37
+ //GUIDE VITAT CARDS
38
+ @import "scss/guide/components/cards/card";
39
+ @import "scss/guide/components/cards/card__horizontal";
40
+ @import "scss/guide/components/cards/card__horizontal__small";
41
+
42
+ //GUIDE VITAT PAGINATION
43
+ @import "scss/guide/components/pagination/pagination";
44
+
45
+ //GUIDE VITAT CARD APP
46
+ @import "scss/guide/components/cardapp/cardapp";
47
+
48
+ //GUIDE VITAT REVISADO POR
49
+ @import "scss/guide/components/revisado/revisado";
50
+
51
+ //GUIDE VITAT ARABESCOS
52
+ @import "scss/guide/components/arabescos/arabescos";
53
+
54
+ //GUIDE VITAT LIST
55
+ @import "scss/guide/components/lista/lista";
56
+
57
+ //SCSS DO PROJETO
58
+ * {
59
+ font-family: "Livvic", sans-serif;
60
+ outline: none !important;
61
+ box-sizing: border-box;
62
+ }
63
+
64
+ .bar {
65
+ width: 50px;
66
+
67
+ &__li {
68
+ }
69
+
70
+ &__ul {
71
+ list-style: none;
72
+ padding: 0;
73
+ display: flex;
74
+ }
75
+ &__a {
76
+ color: #142028;
77
+ text-decoration: none;
78
+ margin-left: 15px;
79
+ display: block;
80
+ width: 100%;
81
+
82
+ height: 100%;
83
+ padding: 10px 0;
84
+ background-color: $neutral-color-high-light;
85
+ padding-left: 15px;
86
+
87
+ &:hover {
88
+ text-decoration: none;
89
+ background-color: $neutral-color-high-medium;
90
+ }
91
+ &:visited {
92
+ color: #142028;
93
+ text-decoration: none;
94
+ }
95
+ }
96
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vitat-css
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amandavr
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-07-03 00:00:00.000000000 Z
11
+ date: 2023-07-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -45,18 +45,153 @@ executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
+ - ".DS_Store"
48
49
  - ".gitignore"
49
- - CODE_OF_CONDUCT.md
50
- - Gemfile
51
- - LICENSE.txt
50
+ - ".idea/.gitignore"
51
+ - ".idea/modules.xml"
52
+ - ".idea/vcs.xml"
53
+ - ".idea/vitat-design-system.iml"
54
+ - ".vscode/settings.json"
55
+ - HTML/.DS_Store
56
+ - HTML/Components/Arabescos.html
57
+ - HTML/Components/Buttons.html
58
+ - HTML/Components/Card.html
59
+ - HTML/Components/CardApp.html
60
+ - HTML/Components/Inputs.html
61
+ - HTML/Components/Lista.html
62
+ - HTML/Components/Pagination.html
63
+ - HTML/Components/Pills.html
64
+ - HTML/Components/Revisado.html
65
+ - JS/prism.js
52
66
  - README.md
53
- - Rakefile
54
- - bin/console
55
- - bin/setup
56
- - lib/vitat/css.rb
57
- - lib/vitat/css/version.rb
58
- - vitat-css.gemspec
59
- homepage: https://vitat.com.br
67
+ - bootstrap/scss/_accordion.scss
68
+ - bootstrap/scss/_alert.scss
69
+ - bootstrap/scss/_badge.scss
70
+ - bootstrap/scss/_breadcrumb.scss
71
+ - bootstrap/scss/_button-group.scss
72
+ - bootstrap/scss/_buttons.scss
73
+ - bootstrap/scss/_card.scss
74
+ - bootstrap/scss/_carousel.scss
75
+ - bootstrap/scss/_close.scss
76
+ - bootstrap/scss/_containers.scss
77
+ - bootstrap/scss/_dropdown.scss
78
+ - bootstrap/scss/_forms.scss
79
+ - bootstrap/scss/_functions.scss
80
+ - bootstrap/scss/_grid.scss
81
+ - bootstrap/scss/_helpers.scss
82
+ - bootstrap/scss/_images.scss
83
+ - bootstrap/scss/_list-group.scss
84
+ - bootstrap/scss/_mixins.scss
85
+ - bootstrap/scss/_modal.scss
86
+ - bootstrap/scss/_nav.scss
87
+ - bootstrap/scss/_navbar.scss
88
+ - bootstrap/scss/_offcanvas.scss
89
+ - bootstrap/scss/_pagination.scss
90
+ - bootstrap/scss/_placeholders.scss
91
+ - bootstrap/scss/_popover.scss
92
+ - bootstrap/scss/_progress.scss
93
+ - bootstrap/scss/_reboot.scss
94
+ - bootstrap/scss/_root.scss
95
+ - bootstrap/scss/_spinners.scss
96
+ - bootstrap/scss/_tables.scss
97
+ - bootstrap/scss/_toasts.scss
98
+ - bootstrap/scss/_tooltip.scss
99
+ - bootstrap/scss/_transitions.scss
100
+ - bootstrap/scss/_type.scss
101
+ - bootstrap/scss/_utilities.scss
102
+ - bootstrap/scss/_variables.scss
103
+ - bootstrap/scss/bootstrap-grid.scss
104
+ - bootstrap/scss/bootstrap-reboot.scss
105
+ - bootstrap/scss/bootstrap-utilities.scss
106
+ - bootstrap/scss/bootstrap.scss
107
+ - bootstrap/scss/forms/_floating-labels.scss
108
+ - bootstrap/scss/forms/_form-check.scss
109
+ - bootstrap/scss/forms/_form-control.scss
110
+ - bootstrap/scss/forms/_form-range.scss
111
+ - bootstrap/scss/forms/_form-select.scss
112
+ - bootstrap/scss/forms/_form-text.scss
113
+ - bootstrap/scss/forms/_input-group.scss
114
+ - bootstrap/scss/forms/_labels.scss
115
+ - bootstrap/scss/forms/_validation.scss
116
+ - bootstrap/scss/helpers/_clearfix.scss
117
+ - bootstrap/scss/helpers/_colored-links.scss
118
+ - bootstrap/scss/helpers/_position.scss
119
+ - bootstrap/scss/helpers/_ratio.scss
120
+ - bootstrap/scss/helpers/_stacks.scss
121
+ - bootstrap/scss/helpers/_stretched-link.scss
122
+ - bootstrap/scss/helpers/_text-truncation.scss
123
+ - bootstrap/scss/helpers/_visually-hidden.scss
124
+ - bootstrap/scss/helpers/_vr.scss
125
+ - bootstrap/scss/mixins/_alert.scss
126
+ - bootstrap/scss/mixins/_backdrop.scss
127
+ - bootstrap/scss/mixins/_border-radius.scss
128
+ - bootstrap/scss/mixins/_box-shadow.scss
129
+ - bootstrap/scss/mixins/_breakpoints.scss
130
+ - bootstrap/scss/mixins/_buttons.scss
131
+ - bootstrap/scss/mixins/_caret.scss
132
+ - bootstrap/scss/mixins/_clearfix.scss
133
+ - bootstrap/scss/mixins/_color-scheme.scss
134
+ - bootstrap/scss/mixins/_container.scss
135
+ - bootstrap/scss/mixins/_deprecate.scss
136
+ - bootstrap/scss/mixins/_forms.scss
137
+ - bootstrap/scss/mixins/_gradients.scss
138
+ - bootstrap/scss/mixins/_grid.scss
139
+ - bootstrap/scss/mixins/_image.scss
140
+ - bootstrap/scss/mixins/_list-group.scss
141
+ - bootstrap/scss/mixins/_lists.scss
142
+ - bootstrap/scss/mixins/_pagination.scss
143
+ - bootstrap/scss/mixins/_reset-text.scss
144
+ - bootstrap/scss/mixins/_resize.scss
145
+ - bootstrap/scss/mixins/_table-variants.scss
146
+ - bootstrap/scss/mixins/_text-truncate.scss
147
+ - bootstrap/scss/mixins/_transition.scss
148
+ - bootstrap/scss/mixins/_utilities.scss
149
+ - bootstrap/scss/mixins/_visually-hidden.scss
150
+ - bootstrap/scss/utilities/_api.scss
151
+ - bootstrap/scss/vendor/_rfs.scss
152
+ - css/prism.css
153
+ - css/style.css
154
+ - gulpfile.js
155
+ - img/.DS_Store
156
+ - img/arrow-active.png
157
+ - img/arrow-disable.png
158
+ - img/arrow.png
159
+ - img/close.png
160
+ - img/phone.png
161
+ - img/placeholder.png
162
+ - img/placeholder_avatar.png
163
+ - img/qr-code-loja.png
164
+ - img/store_icon.png
165
+ - index.html
166
+ - install_nvm.sh
167
+ - package-lock.json
168
+ - package.json
169
+ - scss/.DS_Store
170
+ - scss/guide/.DS_Store
171
+ - scss/guide/_variables.scss
172
+ - scss/guide/components/_animations.scss
173
+ - scss/guide/components/_typography.scss
174
+ - scss/guide/components/arabescos/arabescos.scss
175
+ - scss/guide/components/buttons/btn.scss
176
+ - scss/guide/components/buttons/btn__large.scss
177
+ - scss/guide/components/buttons/btn__primary.scss
178
+ - scss/guide/components/buttons/btn__secondary.scss
179
+ - scss/guide/components/buttons/btn__tertiary.scss
180
+ - scss/guide/components/cardapp/cardapp.scss
181
+ - scss/guide/components/cards/card.scss
182
+ - scss/guide/components/cards/card__horizontal.scss
183
+ - scss/guide/components/cards/card__horizontal__small.scss
184
+ - scss/guide/components/inputs/_checkbox.scss
185
+ - scss/guide/components/inputs/_text.scss
186
+ - scss/guide/components/lista/lista.scss
187
+ - scss/guide/components/pagination/pagination.scss
188
+ - scss/guide/components/pills/pill.scss
189
+ - scss/guide/components/pills/pill__full.scss
190
+ - scss/guide/components/pills/pill__secundary.scss
191
+ - scss/guide/components/pills/pill__small.scss
192
+ - scss/guide/components/revisado/revisado.scss
193
+ - scss/guide/style.scss
194
+ homepage: https://github.com/sejavitat/vitat-design-system/tree/vitat-novos-negocios-webview
60
195
  licenses:
61
196
  - MIT
62
197
  metadata: {}
data/CODE_OF_CONDUCT.md DELETED
@@ -1,74 +0,0 @@
1
- # Contributor Covenant Code of Conduct
2
-
3
- ## Our Pledge
4
-
5
- In the interest of fostering an open and welcoming environment, we as
6
- contributors and maintainers pledge to making participation in our project and
7
- our community a harassment-free experience for everyone, regardless of age, body
8
- size, disability, ethnicity, gender identity and expression, level of experience,
9
- nationality, personal appearance, race, religion, or sexual identity and
10
- orientation.
11
-
12
- ## Our Standards
13
-
14
- Examples of behavior that contributes to creating a positive environment
15
- include:
16
-
17
- * Using welcoming and inclusive language
18
- * Being respectful of differing viewpoints and experiences
19
- * Gracefully accepting constructive criticism
20
- * Focusing on what is best for the community
21
- * Showing empathy towards other community members
22
-
23
- Examples of unacceptable behavior by participants include:
24
-
25
- * The use of sexualized language or imagery and unwelcome sexual attention or
26
- advances
27
- * Trolling, insulting/derogatory comments, and personal or political attacks
28
- * Public or private harassment
29
- * Publishing others' private information, such as a physical or electronic
30
- address, without explicit permission
31
- * Other conduct which could reasonably be considered inappropriate in a
32
- professional setting
33
-
34
- ## Our Responsibilities
35
-
36
- Project maintainers are responsible for clarifying the standards of acceptable
37
- behavior and are expected to take appropriate and fair corrective action in
38
- response to any instances of unacceptable behavior.
39
-
40
- Project maintainers have the right and responsibility to remove, edit, or
41
- reject comments, commits, code, wiki edits, issues, and other contributions
42
- that are not aligned to this Code of Conduct, or to ban temporarily or
43
- permanently any contributor for other behaviors that they deem inappropriate,
44
- threatening, offensive, or harmful.
45
-
46
- ## Scope
47
-
48
- This Code of Conduct applies both within project spaces and in public spaces
49
- when an individual is representing the project or its community. Examples of
50
- representing a project or community include using an official project e-mail
51
- address, posting via an official social media account, or acting as an appointed
52
- representative at an online or offline event. Representation of a project may be
53
- further defined and clarified by project maintainers.
54
-
55
- ## Enforcement
56
-
57
- Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
- reported by contacting the project team at amanda.rocha@vitat.com.br. All
59
- complaints will be reviewed and investigated and will result in a response that
60
- is deemed necessary and appropriate to the circumstances. The project team is
61
- obligated to maintain confidentiality with regard to the reporter of an incident.
62
- Further details of specific enforcement policies may be posted separately.
63
-
64
- Project maintainers who do not follow or enforce the Code of Conduct in good
65
- faith may face temporary or permanent repercussions as determined by other
66
- members of the project's leadership.
67
-
68
- ## Attribution
69
-
70
- This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
- available at [http://contributor-covenant.org/version/1/4][version]
72
-
73
- [homepage]: http://contributor-covenant.org
74
- [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile DELETED
@@ -1,6 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
-
5
- # Specify your gem's dependencies in vitat-css.gemspec
6
- gemspec