holygrail2 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.
Files changed (57) hide show
  1. package/.editorconfig +13 -0
  2. package/.prettierrc +6 -0
  3. package/.stylelintrc +27 -0
  4. package/.vscode/settings.json +3 -0
  5. package/assets/images/minilogo.png +0 -0
  6. package/cssconfig.json +373 -0
  7. package/dist/style.css +10376 -0
  8. package/dist/style.css.map +1 -0
  9. package/doc/docs.css +1764 -0
  10. package/doc/docs.css.map +1 -0
  11. package/guide/index.html +3202 -0
  12. package/package.json +59 -0
  13. package/readme.md +123 -0
  14. package/scss/_partials.scss +44 -0
  15. package/scss/abstract/_0debug.scss +192 -0
  16. package/scss/abstract/_all.scss +4 -0
  17. package/scss/abstract/_breakpoints.scss +27 -0
  18. package/scss/abstract/_fonts.scss +22 -0
  19. package/scss/abstract/_mixins.scss +691 -0
  20. package/scss/abstract/_reset.scss +124 -0
  21. package/scss/abstract/_setup.scss +385 -0
  22. package/scss/base/_alignment.scss +294 -0
  23. package/scss/base/_animations.scss +64 -0
  24. package/scss/base/_extras.scss +21 -0
  25. package/scss/base/_grid.scss +361 -0
  26. package/scss/base/_height.scss +19 -0
  27. package/scss/base/_helpers.scss +814 -0
  28. package/scss/base/_icons.scss +162 -0
  29. package/scss/base/_ratios.scss +262 -0
  30. package/scss/base/_rtl.scss +480 -0
  31. package/scss/base/_spacing.scss +60 -0
  32. package/scss/base/_types.scss +117 -0
  33. package/scss/docs.scss +680 -0
  34. package/scss/elements/_animated.scss +73 -0
  35. package/scss/elements/_banners.scss +68 -0
  36. package/scss/elements/_buttons.scss +1324 -0
  37. package/scss/elements/_checkbox.scss +722 -0
  38. package/scss/elements/_color_selector.scss +112 -0
  39. package/scss/elements/_datalist.scss +55 -0
  40. package/scss/elements/_form.scss +708 -0
  41. package/scss/elements/_links.scss +268 -0
  42. package/scss/elements/_list.scss +271 -0
  43. package/scss/elements/_modal.scss +141 -0
  44. package/scss/elements/_progressbar.scss +20 -0
  45. package/scss/elements/_tabs.scss +216 -0
  46. package/scss/elements/_tabs_specials.scss +216 -0
  47. package/scss/elements/_tag.scss +58 -0
  48. package/scss/elements/_tooltip.scss +176 -0
  49. package/scss/layouts/_box3.scss +64 -0
  50. package/scss/layouts/_box4.scss +19 -0
  51. package/scss/layouts/_card.scss +24 -0
  52. package/scss/layouts/_card9.scss +348 -0
  53. package/scss/layouts/_feel.scss +2 -0
  54. package/scss/layouts/_header_account.scss +144 -0
  55. package/scss/layouts/_hgbread.scss +51 -0
  56. package/scss/layouts/_row1.scss +108 -0
  57. package/scss/style.scss +1 -0
@@ -0,0 +1,268 @@
1
+ @import '../abstract/_all';
2
+
3
+ $opacity-links: 0.6;
4
+
5
+ a {
6
+ &:hover {
7
+ opacity: $opacity-links;
8
+ }
9
+ }
10
+
11
+ .link4 {
12
+ position: relative;
13
+ display: inline-block;
14
+ border: 0;
15
+ transform: none;
16
+ transition: background-color 0.3s ease-in-out;
17
+ margin: 0;
18
+ padding: 2px 0;
19
+ cursor: pointer;
20
+
21
+ &:hover {
22
+ opacity: $opacity-links;
23
+ }
24
+
25
+ &::after {
26
+ content: '';
27
+ background-color: $c-primary;
28
+ width: 100%;
29
+ position: absolute;
30
+ bottom: 0;
31
+ left: 0;
32
+ height: 1px;
33
+ }
34
+ }
35
+
36
+ .link-button-prev {
37
+ background: transparent !important;
38
+ position: relative;
39
+ width: 40px;
40
+ height: 40px;
41
+ z-index: 1;
42
+ cursor: pointer;
43
+ border-radius: 50%;
44
+ border: 1px solid $c-middle-grey;
45
+ }
46
+
47
+ .inner-button {
48
+ margin-top: -1px;
49
+ display: block;
50
+ width: 40px;
51
+ height: 40px;
52
+ color: $c-white;
53
+
54
+ &::after {
55
+ border: 1px solid $c-primary;
56
+ border-radius: $form-radius;
57
+ border-right: 0;
58
+ border-top: 0;
59
+ content: ' ';
60
+ display: block;
61
+ height: 10px;
62
+ margin-top: -8px;
63
+ pointer-events: none;
64
+ position: absolute;
65
+ top: 53%;
66
+ right: 16px;
67
+ transform: rotate(-135deg);
68
+ transform-origin: center;
69
+ width: 10px;
70
+ }
71
+ }
72
+
73
+ .link-line {
74
+ display: inline;
75
+ position: relative;
76
+ border: 0;
77
+ padding: 0;
78
+ transform: none;
79
+ cursor: pointer;
80
+ background-color: transparent;
81
+ background-image: linear-gradient(transparent calc(100% - 1px), $primary 10px);
82
+ background-repeat: no-repeat;
83
+ background-size: 100% 100%;
84
+ transition: background-size 0.4s;
85
+
86
+ &:hover {
87
+ opacity: $opacity-links;
88
+ }
89
+
90
+ &.c-feel-dark {
91
+ background-image: linear-gradient(transparent calc(100% - 1px), $c-feel-dark 10px);
92
+ }
93
+
94
+ &.c-feel {
95
+ background-image: linear-gradient(transparent calc(100% - 1px), $c-feel 10px);
96
+ }
97
+ &.is-error,
98
+ &.c-error {
99
+ background-image: linear-gradient(transparent calc(100% - 1px), $c-error 10px);
100
+ }
101
+
102
+ .is-error & {
103
+ background-image: linear-gradient(transparent calc(100% - 1px), $c-error 10px);
104
+ }
105
+ &button {
106
+ padding-left: 0;
107
+ padding-right: 0;
108
+ }
109
+
110
+ &button.link-svg-pre {
111
+ padding-left: 20px;
112
+ padding-right: 0;
113
+ }
114
+
115
+ &button.link-svg-post {
116
+ padding-right: 20px;
117
+ padding-left: 0;
118
+ }
119
+ }
120
+
121
+ .link-raw {
122
+ display: inline-block;
123
+ position: relative;
124
+ border: 0;
125
+ transform: none;
126
+ cursor: pointer;
127
+ background: initial;
128
+ &:hover {
129
+ opacity: $opacity-links;
130
+ }
131
+ }
132
+
133
+ .link-svg-pre {
134
+ padding-left: 20px;
135
+
136
+ @include font-regular;
137
+
138
+ position: relative;
139
+ border: 0;
140
+ transform: none;
141
+ cursor: pointer;
142
+ background-position-x: 20px;
143
+
144
+ svg-icon {
145
+ position: absolute;
146
+ left: 0;
147
+ top: 2px;
148
+ width: 16px;
149
+ height: 16px;
150
+ }
151
+
152
+ &:hover {
153
+ opacity: $opacity-links;
154
+ }
155
+ }
156
+
157
+ .link-svg-post {
158
+ padding-right: 20px;
159
+
160
+ @include font-regular;
161
+
162
+ display: initial;
163
+ position: relative;
164
+ border: 0;
165
+ transform: none;
166
+ cursor: pointer;
167
+ background-position: calc(100% - 20px);
168
+
169
+ svg-icon {
170
+ position: absolute;
171
+ right: 0;
172
+ top: 2px;
173
+ width: 16px;
174
+ height: 16px;
175
+ }
176
+
177
+ &:hover {
178
+ opacity: $opacity-links;
179
+ }
180
+ }
181
+
182
+ .has-light {
183
+ a {
184
+ color: $c-white;
185
+ }
186
+ .link1 {
187
+ color: $c-white;
188
+
189
+ &::after {
190
+ background-color: $c-white;
191
+ }
192
+ }
193
+
194
+ .link4 {
195
+ color: $c-white;
196
+
197
+ &::after {
198
+ background-color: $c-white;
199
+ }
200
+
201
+ .link4-underline {
202
+ background: $c-white;
203
+ }
204
+ }
205
+
206
+ .link5 {
207
+ color: $c-white;
208
+
209
+ &::after {
210
+ background: $c-white;
211
+ }
212
+ }
213
+
214
+ .link6 {
215
+ color: $c-white;
216
+ border-bottom: 2px solid $c-white;
217
+ }
218
+
219
+ .link7 {
220
+ color: $c-white;
221
+
222
+ &::after {
223
+ background: $c-white;
224
+ }
225
+ }
226
+
227
+ .link8 {
228
+ color: $c-white;
229
+ }
230
+
231
+ .link9 {
232
+ color: $c-white;
233
+
234
+ &::after {
235
+ background: $c-white;
236
+ }
237
+ }
238
+
239
+ .link-raw {
240
+ color: white;
241
+ }
242
+
243
+ .link-line {
244
+ color: white;
245
+ background-image: linear-gradient(transparent calc(100% - 1px), white 10px);
246
+
247
+ &::after {
248
+ background-color: $c-white;
249
+ }
250
+ }
251
+
252
+ .link-multiline {
253
+ color: white;
254
+ background-image: linear-gradient(transparent calc(100% - 1px), white 10px);
255
+
256
+ &::after {
257
+ background-color: $c-white;
258
+ }
259
+ }
260
+
261
+ .link-svg-post {
262
+ color: white;
263
+ }
264
+
265
+ .link-svg-pre {
266
+ color: white;
267
+ }
268
+ }
@@ -0,0 +1,271 @@
1
+ @use 'sass:math';
2
+ @import '../abstract/_all';
3
+
4
+ $list-disc: 4px;
5
+
6
+ ul.list-disc {
7
+ list-style: none;
8
+ margin: $padding-global * 2 0;
9
+ padding: 0;
10
+
11
+ li {
12
+ position: relative;
13
+ padding: $padding-global $padding-global * 2;
14
+
15
+ &::after {
16
+ background-color: $list-disc-color;
17
+ content: '';
18
+ border-radius: 50%;
19
+ width: $list-disc;
20
+ height: $list-disc;
21
+ position: absolute;
22
+ left: 0;
23
+ margin-top: -#{math.div($list-disc, 4)};
24
+ top: 50%;
25
+ transform: translateY(-50%);
26
+ }
27
+
28
+ a {
29
+ text-decoration: none;
30
+ padding: 14px 0;
31
+ }
32
+
33
+ a::after {
34
+ bottom: 7px;
35
+ }
36
+ }
37
+ }
38
+
39
+ ul.list-inline {
40
+ li {
41
+ display: inline-flex;
42
+ padding: 0 math.div($padding-global, 2);
43
+
44
+ &::after {
45
+ display: none;
46
+ }
47
+ }
48
+ }
49
+
50
+ ul.list-inline-flex {
51
+ margin: 0;
52
+ padding: 0;
53
+
54
+ li {
55
+ display: inline-flex;
56
+ padding: 0 math.div($padding-global, 2);
57
+ margin: 0;
58
+
59
+ &::after {
60
+ display: none;
61
+ }
62
+ }
63
+ }
64
+
65
+ ul.list-inline-clear {
66
+ margin: 0;
67
+ padding: 0;
68
+
69
+ li {
70
+ display: inline-block;
71
+ margin: 0;
72
+
73
+ &::after {
74
+ display: none;
75
+ }
76
+ }
77
+ }
78
+
79
+ ul.list-clear {
80
+ li {
81
+ list-style: none;
82
+ margin: $padding-global 0;
83
+
84
+ &::after {
85
+ display: none;
86
+ }
87
+ }
88
+ }
89
+
90
+ ul.h-size-selector {
91
+ a {
92
+ position: relative;
93
+ width: 20px;
94
+ height: 20px;
95
+ text-align: center;
96
+
97
+ &:hover {
98
+ cursor: pointer;
99
+
100
+ &::after {
101
+ border: 1px solid rgb(51 48 48);
102
+ }
103
+ }
104
+
105
+ &::after {
106
+ content: '';
107
+ position: absolute;
108
+ border: 1px solid transparent;
109
+ width: 10px;
110
+ height: 10px;
111
+ left: 3px;
112
+ top: 3px;
113
+ padding: 8px;
114
+ border-radius: 50%;
115
+ transition: 0.5s ease all;
116
+ }
117
+ }
118
+ }
119
+
120
+ ul.list-mini {
121
+ margin: 8px 0;
122
+
123
+ > li {
124
+ position: relative;
125
+ padding: 4px 8px;
126
+ line-height: 1;
127
+ float: left;
128
+ clear: both;
129
+ list-style: none;
130
+
131
+ &.is-missing {
132
+ &::after {
133
+ content: '';
134
+ width: 100%;
135
+ height: 1px;
136
+ background-color: $c-primary;
137
+ border-radius: $form-radius;
138
+ margin-top: -1px;
139
+ transform: none;
140
+ }
141
+ }
142
+
143
+ &::after {
144
+ content: '';
145
+ width: 2px;
146
+ height: 2px;
147
+ background-color: $c-primary;
148
+ position: absolute;
149
+ left: 0;
150
+ bottom: 10px;
151
+ }
152
+ }
153
+ }
154
+
155
+ .list-table {
156
+ display: table;
157
+ width: 100%;
158
+ }
159
+
160
+ .list-box {
161
+ display: table-cell;
162
+ box-sizing: border-box;
163
+ border: 1px solid $c-dark-grey;
164
+ transition: all 0.2s ease;
165
+ opacity: 0.5;
166
+ left: -1px;
167
+
168
+ &:first-child {
169
+ left: 0;
170
+ }
171
+
172
+ &.is-active,
173
+ &:hover {
174
+ border: 1px solid $c-primary;
175
+ opacity: 1;
176
+ cursor: pointer;
177
+ }
178
+ }
179
+
180
+ .multiple-table {
181
+ display: table;
182
+ width: calc(100% + 2px);
183
+
184
+ .list-box:last-child {
185
+ left: -2px;
186
+ }
187
+ }
188
+
189
+ .list-button {
190
+ position: relative;
191
+ padding: 16px;
192
+ background: $c-white;
193
+ border-bottom: 1px solid $c-middle-grey;
194
+ cursor: pointer;
195
+ opacity: 1;
196
+
197
+ span {
198
+ font-size: $text-sm;
199
+ }
200
+
201
+ &:hover {
202
+ opacity: 0.6;
203
+ }
204
+
205
+ &.list-secondary,
206
+ &.list-secundary {
207
+ background-color: $c-middle-grey;
208
+ padding-left: 42px;
209
+ }
210
+ &.list-tertiary {
211
+ background-color: $c-light-grey;
212
+ padding-left: 64px;
213
+
214
+ svg-icon {
215
+ left: 20px;
216
+ opacity: 1;
217
+ }
218
+ }
219
+
220
+ &.list-icons {
221
+ display: flex;
222
+ align-items: center;
223
+ gap: 8px;
224
+
225
+ span {
226
+ flex-grow: 1;
227
+ }
228
+ }
229
+ }
230
+
231
+ .list-selection {
232
+ a {
233
+ padding: 8px;
234
+ background: $c-white;
235
+ }
236
+
237
+ a:hover,
238
+ .is-active {
239
+ padding: 8px;
240
+ background: $c-light-grey;
241
+ }
242
+ }
243
+
244
+ ul.list-disc,
245
+ ul.list-mini {
246
+ &.has-light {
247
+ > li {
248
+ &.is-missing {
249
+ &::after {
250
+ background-color: $c-white;
251
+ }
252
+ }
253
+
254
+ &::after {
255
+ background-color: $c-white;
256
+ }
257
+ }
258
+ }
259
+ }
260
+
261
+ ul.list-breadcrumb li {
262
+ display: inline-flex;
263
+ margin: 0;
264
+ padding: 0;
265
+ &.list-breadcrumb-divider {
266
+ color: #949494;
267
+ position: relative;
268
+ top: 4px;
269
+ padding: 0;
270
+ }
271
+ }
@@ -0,0 +1,141 @@
1
+ @import '../abstract/_all';
2
+
3
+ .modalx-transparent.modalx-backdrop {
4
+ pointer-events: none;
5
+ background: transparent;
6
+
7
+ .modalx {
8
+ pointer-events: none;
9
+ }
10
+
11
+ .modalx-content {
12
+ border: 1px solid $c-middle-grey;
13
+ }
14
+ }
15
+
16
+ .modalx-xxs {
17
+ max-width: 320px;
18
+
19
+ @media (min-width: $break-sm) {
20
+ max-width: 445px;
21
+ }
22
+ }
23
+
24
+ .modalx-xs {
25
+ max-width: 295px;
26
+ }
27
+
28
+ .modalx-sm {
29
+ max-width: 445px;
30
+ }
31
+
32
+ .modalx-md {
33
+ max-width: 595px;
34
+ }
35
+
36
+ .modalx-lg {
37
+ max-width: 899px;
38
+ }
39
+
40
+ .modalx-xl {
41
+ max-width: 950px;
42
+ }
43
+
44
+ .modalx-0 {
45
+ padding: 0;
46
+ .modalx-body {
47
+ overflow: hidden;
48
+ }
49
+ }
50
+
51
+ .modalx-16 {
52
+ .modalx-body {
53
+ padding: 48px 16px 16px;
54
+
55
+ @media (min-width: $break-sm) {
56
+ padding-top: 64px;
57
+ }
58
+ }
59
+ }
60
+
61
+ .modalx-16-16 {
62
+ .modalx-body {
63
+ padding: 16px;
64
+ }
65
+ }
66
+
67
+ .modalx-24 {
68
+ .modalx-body {
69
+ padding: 48px 16px 16px;
70
+
71
+ @media (min-width: $break-sm) {
72
+ padding: 64px 24px 24px;
73
+ }
74
+ }
75
+ }
76
+
77
+ .modalx-32 {
78
+ .modalx-body {
79
+ padding: 48px 16px 16px;
80
+
81
+ @media (min-width: $break-sm) {
82
+ padding: 64px 32px 32px;
83
+ }
84
+ }
85
+ }
86
+
87
+ .modalx-40 {
88
+ .modalx-body {
89
+ padding: 40px 16px 16px;
90
+
91
+ @media (min-width: $break-sm) {
92
+ padding: 40px;
93
+ }
94
+ }
95
+ }
96
+
97
+ .modalx-0-24 {
98
+ .modalx-body {
99
+ padding: 0;
100
+
101
+ @media (min-width: $break-sm) {
102
+ padding: 64px 24px 24px;
103
+ }
104
+ }
105
+ }
106
+
107
+ .modalx-fullmobile {
108
+ @media (max-width: #{$break-sm - 1}) {
109
+ margin: 0 !important;
110
+ max-width: initial;
111
+ width: 100%;
112
+ app-shared-ui-modal {
113
+ min-height: auto;
114
+ margin: 0;
115
+ }
116
+ .modalx-body {
117
+ margin: 0;
118
+ max-width: 100vw;
119
+ min-height: 100vh;
120
+ }
121
+ }
122
+ }
123
+
124
+ .modalx-fullviewport {
125
+ @media (max-width: #{$break-sm - 1}) {
126
+ margin: 0;
127
+ max-width: initial;
128
+ }
129
+ }
130
+
131
+ .modalx-centered {
132
+ display: flex;
133
+ -webkit-box-align: center;
134
+ -ms-flex-align: center;
135
+ align-items: center;
136
+ min-height: calc(100% - (0.5rem * 2));
137
+
138
+ @media (min-width: $break-sm) {
139
+ min-height: calc(100% - (1.75rem * 2));
140
+ }
141
+ }
@@ -0,0 +1,20 @@
1
+ @import '../abstract/_all';
2
+
3
+ .progressbar {
4
+ width: 100%;
5
+ height: 8px;
6
+ border-radius: $obj-radius;
7
+ background-color: $c-middle-grey;
8
+ display: flex;
9
+ align-items: flex-start;
10
+ justify-content: flex-start;
11
+ overflow: hidden;
12
+
13
+ .progressbar-status {
14
+ min-width: 8px;
15
+ height: 8px;
16
+ border-radius: $obj-radius;
17
+ background-color: $c-primary;
18
+ transition: all 0.2s ease;
19
+ }
20
+ }