@appartmint/css-mint 0.0.40 → 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 (87) hide show
  1. package/dist/amplify.css +634 -0
  2. package/dist/amplify.css.map +1 -0
  3. package/dist/amplify.min.css +1 -0
  4. package/dist/amplify.min.css.map +1 -0
  5. package/dist/angular.css +49 -0
  6. package/dist/angular.css.map +1 -0
  7. package/dist/angular.min.css +1 -0
  8. package/dist/angular.min.css.map +1 -0
  9. package/dist/full-calendar.css +43 -0
  10. package/dist/full-calendar.css.map +1 -0
  11. package/dist/full-calendar.min.css +1 -0
  12. package/dist/full-calendar.min.css.map +1 -0
  13. package/dist/index.css +3845 -0
  14. package/dist/index.css.map +1 -0
  15. package/dist/index.min.css +1 -0
  16. package/dist/index.min.css.map +1 -0
  17. package/dist/noscript.css +5 -0
  18. package/dist/noscript.css.map +1 -0
  19. package/dist/noscript.min.css +1 -0
  20. package/dist/noscript.min.css.map +1 -0
  21. package/dist/recaptcha.css +5 -0
  22. package/dist/recaptcha.css.map +1 -0
  23. package/dist/recaptcha.min.css +1 -0
  24. package/dist/recaptcha.min.css.map +1 -0
  25. package/dist/swiper.css +35 -0
  26. package/dist/swiper.css.map +1 -0
  27. package/dist/swiper.min.css +1 -0
  28. package/dist/swiper.min.css.map +1 -0
  29. package/package.json +11 -4
  30. package/src/components/form/edit-info.scss +27 -0
  31. package/src/components/form/index.scss +1 -0
  32. package/src/components/form/input/array.scss +24 -0
  33. package/src/components/form/input/checkbox.scss +0 -0
  34. package/src/components/form/input/dropdown.scss +20 -0
  35. package/src/components/form/input/global.scss +18 -0
  36. package/src/components/form/input/index.scss +8 -0
  37. package/src/components/form/input/input.scss +13 -0
  38. package/src/components/form/input/label.scss +31 -0
  39. package/src/components/form/input/select.scss +15 -0
  40. package/src/components/form/input/textarea.scss +10 -0
  41. package/src/components/form/input/toggle.scss +21 -13
  42. package/src/components/index.scss +1 -0
  43. package/src/components/partial/background.scss +43 -0
  44. package/src/components/partial/chat.scss +130 -0
  45. package/src/components/partial/footer.scss +169 -0
  46. package/src/components/partial/header.scss +484 -0
  47. package/src/components/partial/index.scss +4 -0
  48. package/src/components/section/flex.scss +64 -0
  49. package/src/components/section/full.scss +40 -0
  50. package/src/components/section/grid.scss +130 -2
  51. package/src/components/section/index.scss +3 -0
  52. package/src/components/section/landing.scss +52 -0
  53. package/src/components/ui/icon.scss +73 -0
  54. package/src/components/ui/index.scss +4 -1
  55. package/src/components/ui/link.scss +33 -0
  56. package/src/components/ui/list.scss +32 -0
  57. package/src/components/ui/media/embed.scss +9 -0
  58. package/src/components/ui/media/global.scss +13 -0
  59. package/src/components/ui/{image.scss → media/image.scss} +2 -2
  60. package/src/components/ui/media/index.scss +3 -0
  61. package/src/components/widget/index.scss +2 -0
  62. package/src/components/widget/{_panel.scss → panel.scss} +16 -16
  63. package/src/components/widget/{_table.scss → table.scss} +5 -7
  64. package/src/global/animations.scss +214 -0
  65. package/src/global/global.scss +75 -0
  66. package/src/global/index.scss +7 -1
  67. package/src/global/mask.scss +11 -1
  68. package/src/global/shadow.scss +20 -0
  69. package/src/global/structure.scss +101 -0
  70. package/src/global/text.scss +93 -0
  71. package/src/global/texture.scss +154 -0
  72. package/src/global/themes.scss +26 -0
  73. package/src/modules/amplify.scss +44 -0
  74. package/src/modules/angular.scss +67 -0
  75. package/src/modules/full-calendar.scss +60 -0
  76. package/src/modules/noscript.scss +12 -0
  77. package/src/modules/recaptcha.scss +15 -0
  78. package/src/modules/swiper.scss +59 -0
  79. package/src/themes/colors.scss +19 -1
  80. package/src/themes/index.scss +0 -1
  81. package/src/themes/structure.scss +1 -2
  82. package/src/util/break.scss +6 -6
  83. package/src/util/color.scss +3 -1
  84. package/src/util/text.scss +1 -0
  85. package/src/components/widget/_tooltip.scss +0 -106
  86. package/src/global/size.scss +0 -15
  87. package/src/themes/fonts.scss +0 -18
@@ -1 +1,4 @@
1
+ @use './flex';
2
+ @use './full';
1
3
  @use './grid';
4
+ @use './landing';
@@ -0,0 +1,52 @@
1
+ /// landing.scss - Landing styles
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group Section
5
+ @charset 'utf-8';
6
+ @use '../../util/break' as *;
7
+ @use '../../util/selector' as *;
8
+
9
+ :root {
10
+ #{class(landing)} {
11
+ &.swiper {
12
+ max-width: 100vw;
13
+
14
+ .swiper-slide {
15
+ padding: 0;
16
+ }
17
+ }
18
+ }
19
+ }
20
+
21
+ #{class(landing)} {
22
+ top: css-var(p-exit);
23
+ left: css-var(p-exit);
24
+ width: css-var(p-exit-w);
25
+
26
+ #{class(border)}, #{class(frame)} {
27
+ border: none;
28
+ padding: 0;
29
+ }
30
+
31
+ #{class(section-full)} {
32
+ align-items: center;
33
+ top: 0;
34
+ left: 0;
35
+ width: 100%;
36
+ margin: 0;
37
+ min-height: calc(100vh - css-var(header-h));
38
+ padding: css-var(p-clamp);
39
+
40
+ iframe, video {
41
+ position: absolute;
42
+
43
+ & + * {
44
+ #{class(grid)} {
45
+ @include break(lg) {
46
+ margin-bottom: 0;
47
+ }
48
+ }
49
+ }
50
+ }
51
+ }
52
+ }
@@ -0,0 +1,73 @@
1
+ /// icon.scss - Icon styles
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group UI
5
+ @charset 'utf-8';
6
+
7
+ /// Imports
8
+ @use '../../util/selector' as *;
9
+
10
+ i {
11
+ &.fa-envelope {
12
+ transform: translateY(5%);
13
+ }
14
+ }
15
+
16
+ a {
17
+ color: css-var(link-c);
18
+ transition-duration: time(default);
19
+ transition-property: color, background-color;
20
+
21
+ @include states(hover, focus, active, mint-active) {
22
+ color: css-var(link-c-hover);
23
+
24
+ .fa-facebook,
25
+ .fa-square-facebook {
26
+ color: css-var(c-facebook);
27
+ }
28
+
29
+ .fa-instagram {
30
+ color: css-var(c-instagram);
31
+ }
32
+
33
+ .fa-twitter {
34
+ color: css-var(c-twitter);
35
+ }
36
+
37
+ .fa-youtube {
38
+ color: css-var(c-youtube);
39
+ }
40
+
41
+ .fa-spotify {
42
+ color: css-var(c-spotify);
43
+ }
44
+
45
+ .fa-apple {
46
+ color: css-var(c-apple-music);
47
+ }
48
+
49
+ .fa-soundcloud {
50
+ color: css-var(c-soundcloud);
51
+ }
52
+
53
+ .fa-bandcamp {
54
+ color: css-var(c-bandcamp);
55
+ }
56
+
57
+ .fa-github {
58
+ color: css-var(c-bw-0);
59
+ }
60
+
61
+ .fa-bitcoin {
62
+ color: css-var(c-btc);
63
+ }
64
+
65
+ .fa-ethereum {
66
+ color: css-var(c-eth);
67
+ }
68
+
69
+ .fa-vimeo {
70
+ color: css-var(c-venmo);
71
+ }
72
+ }
73
+ }
@@ -1,3 +1,6 @@
1
1
  @use './button';
2
- @use './image';
2
+ @use './icon';
3
+ @use './link';
4
+ @use './list';
5
+ @use './media';
3
6
  @use './tooltip';
@@ -0,0 +1,33 @@
1
+ /// link.scss - Link styles
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group UI
5
+ @charset 'utf-8';
6
+
7
+ /// Imports
8
+ @use '../../util/break' as *;
9
+ @use '../../util/selector' as *;
10
+ @use '../../util/time' as *;
11
+
12
+ :root {
13
+ @include css-var(link-c, c-brand-4);
14
+ @include css-var(link-c-hover, c-accent-2);
15
+ }
16
+
17
+ a {
18
+ color: css-var(link-c);
19
+ transition-duration: time(default);
20
+ transition-property: color, background-color;
21
+
22
+ @include states(hover, focus, active, mint-active) {
23
+ color: css-var(link-c-hover);
24
+ }
25
+
26
+ &[href^='mailto:'],
27
+ &[href^='tel:'],
28
+ &[href^='sms:'] {
29
+ @include break(xs) {
30
+ white-space: nowrap;
31
+ }
32
+ }
33
+ }
@@ -0,0 +1,32 @@
1
+ /// list.scss - List styles
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group UI
5
+ @charset 'utf-8';
6
+
7
+ /// Imports
8
+ @use '../../util/selector' as *;
9
+
10
+ nav {
11
+ a {
12
+ display: block;
13
+ text-decoration: none;
14
+ }
15
+
16
+ ul {
17
+ display: flex;
18
+ margin: 0;
19
+ padding: 0;
20
+ list-style: none;
21
+
22
+ & > li > ul {
23
+ flex-direction: column;
24
+ }
25
+ }
26
+ }
27
+
28
+ #{class(list)} {
29
+ list-style: none;
30
+ margin: 0;
31
+ padding: 0;
32
+ }
@@ -0,0 +1,9 @@
1
+ /// embed.scss - Embed styles
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group Media
5
+ @charset 'utf-8';
6
+
7
+ iframe {
8
+ border: none;
9
+ }
@@ -0,0 +1,13 @@
1
+ /// global.scss - Global media styles
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group Media
5
+ @charset 'utf-8';
6
+
7
+ /// Imports
8
+ @use '../../../util/selector' as *;
9
+
10
+ img, video {
11
+ width: 100%;
12
+ height: auto;
13
+ }
@@ -1,11 +1,11 @@
1
1
  /// image.scss - Image styles
2
2
  /// @author App Art Mint LLC
3
3
  ///
4
- /// @group UI
4
+ /// @group Media
5
5
  @charset 'utf-8';
6
6
 
7
7
  /// Imports
8
- @use '../../util' as *;
8
+ @use '../../../util/selector' as *;
9
9
 
10
10
  :root {
11
11
  @include css-var-ref(img-shadow-c, shadow-c);
@@ -0,0 +1,3 @@
1
+ @use './embed';
2
+ @use './global';
3
+ @use './image';
@@ -1,3 +1,5 @@
1
1
  @use 'accordion';
2
2
  @use 'card';
3
3
  @use 'modal';
4
+ @use 'panel';
5
+ @use 'table';
@@ -1,18 +1,18 @@
1
- /// _panel.scss - Panel styles
1
+ /// panel.scss - Panel styles
2
2
  /// @author App Art Mint LLC
3
3
  ///
4
4
  /// @group Widget
5
5
  @charset 'utf-8';
6
6
 
7
7
  /// Imports
8
- @use 'sass:math';
9
- @use '../../util' as *;
8
+ @use '../../util/break' as *;
9
+ @use '../../util/selector' as *;
10
10
 
11
11
  /// Panel Styles
12
12
  #{class(panel)} {
13
13
  &#{class(right)} {
14
- #{class(panel-wrapper)} {
15
- top: css-var(header-height);
14
+ #{class(panel-wrap)} {
15
+ top: css-var(header-h);
16
16
  right: -100%;
17
17
  left: unset;
18
18
 
@@ -23,7 +23,7 @@
23
23
  }
24
24
 
25
25
  &#{class(bottom)} {
26
- #{class(panel-wrapper)} {
26
+ #{class(panel-wrap)} {
27
27
  top: unset;
28
28
  bottom: -100%;
29
29
 
@@ -35,8 +35,8 @@
35
35
  }
36
36
 
37
37
  &#{class(left)} {
38
- #{class(panel-wrapper)} {
39
- top: css-var(header-height);
38
+ #{class(panel-wrap)} {
39
+ top: css-var(header-h);
40
40
  left: -100%;
41
41
 
42
42
  &#{class(open)} {
@@ -46,7 +46,7 @@
46
46
  }
47
47
 
48
48
  &#{class(tray)} {
49
- #{class(panel-wrapper)} {
49
+ #{class(panel-wrap)} {
50
50
  gap: 1rem;
51
51
 
52
52
  @include break(sm) {
@@ -55,30 +55,30 @@
55
55
  }
56
56
  }
57
57
 
58
- #{class(panel-wrapper)} {
58
+ #{class(panel-wrap)} {
59
59
  display: flex;
60
60
  flex-direction: column;
61
61
  position: fixed;
62
62
  top: -100%;
63
63
  left: 0;
64
64
  width: 100%;
65
- height: calc(100vh - css-var(header-height));
66
- height: calc(100dvh - css-var(header-height));
65
+ height: calc(100vh - css-var(header-h));
66
+ height: calc(100dvh - css-var(header-h));
67
67
  z-index: -2;
68
- background: css-var(header-back);
68
+ background: css-var(header-bg);
69
69
  transition-duration: time(default);
70
70
  transition-property: top, right, bottom, left;
71
71
  overflow: auto;
72
72
 
73
73
  &#{class(open)} {
74
- top: css-var(header-height);
74
+ top: css-var(header-h);
75
75
  }
76
76
 
77
77
  nav {
78
78
  flex-grow: 1;
79
79
  height: auto;
80
80
  overflow: visible;
81
- background: css-var(back);
81
+ background: css-var(bg);
82
82
 
83
83
  @include break(xl) {
84
84
  display: flex;
@@ -86,7 +86,7 @@
86
86
  justify-content: center;
87
87
  }
88
88
 
89
- &> :last-child {
89
+ & > :last-child {
90
90
  margin-bottom: 0;
91
91
  }
92
92
  }
@@ -1,11 +1,11 @@
1
- /// _table.scss - Table styles
1
+ /// table.scss - Table styles
2
2
  /// @author App Art Mint LLC
3
3
  ///
4
4
  /// @group Widget
5
5
  @charset 'utf-8';
6
6
 
7
7
  /// Imports
8
- @use '../../util' as *;
8
+ @use '../../util/selector' as *;
9
9
 
10
10
  /// Table
11
11
  #{class(table)} {
@@ -14,10 +14,8 @@
14
14
  overflow-y: auto;
15
15
  }
16
16
 
17
- &.mat-mdc-table {
18
- thead {
19
- background: css-var(back);
20
- }
17
+ thead {
18
+ background: css-var(bg);
21
19
  }
22
20
 
23
21
  #{class(actions)} {
@@ -26,4 +24,4 @@
26
24
  justify-content: flex-end;
27
25
  gap: 1rem;
28
26
  }
29
- }
27
+ }
@@ -0,0 +1,214 @@
1
+ /// _animations.scss - Global animations
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group Animations
5
+ @charset 'utf-8';
6
+
7
+ /// Imports
8
+ @use 'sass:math';
9
+ @use 'sass:map';
10
+ @use 'sass:list';
11
+ @use '../util/selector' as *;
12
+ @use '../util/time' as *;
13
+
14
+ /// Animations
15
+ @keyframes #{prefix(spin)} {
16
+ 0% {
17
+ transform: rotate(0deg);
18
+ }
19
+
20
+ 100% {
21
+ transform: rotate(360deg);
22
+ }
23
+ }
24
+
25
+ @keyframes #{prefix(spin-centered)} {
26
+ 0% {
27
+ transform: rotate(0deg) translate(-50%, -50%);
28
+ }
29
+
30
+ 100% {
31
+ transform: rotate(360deg) translate(-50%, -50%);
32
+ }
33
+ }
34
+
35
+ @keyframes #{prefix(pulse)} {
36
+ 0% {
37
+ opacity: 0;
38
+ }
39
+
40
+ 75% {
41
+ opacity: 0.75;
42
+ }
43
+
44
+ 100% {
45
+ opacity: 0;
46
+ }
47
+ }
48
+
49
+ @keyframes #{prefix(stretch-in)} {
50
+ 0% {
51
+ transform: scale(1);
52
+ }
53
+
54
+ 50% {
55
+ transform: scale(1.25);
56
+ }
57
+
58
+ 70% {
59
+ transform: scale(1.15);
60
+ }
61
+
62
+ 100% {
63
+ transform: scale(1.2);
64
+ }
65
+ }
66
+
67
+ @keyframes #{prefix(stretch-out)} {
68
+ 0% {
69
+ transform: scale(1.2);
70
+ }
71
+
72
+ 25% {
73
+ transform: scale(0.9);
74
+ }
75
+
76
+ 50% {
77
+ transform: scale(1.05);
78
+ }
79
+
80
+ 100% {
81
+ transform: scale(1);
82
+ }
83
+ }
84
+
85
+ @keyframes #{prefix(stretch-tilt-in)} {
86
+ 0% {
87
+ transform: scale(0.5);
88
+ rotate: -15deg;
89
+ }
90
+ 90% {
91
+ transform: scale(1.25);
92
+ rotate: 5deg;
93
+ }
94
+ 100% {
95
+ transform: scale(1);
96
+ rotate: 0deg;
97
+ }
98
+ }
99
+
100
+ /// Animation classes
101
+ #{class(fall-in)} {
102
+ filter: opacity(0%);
103
+ transform: translateY(-100px);
104
+ transition: all time(slower) ease-out, box-shadow time(slower) time(slow) ease-out !important;
105
+ pointer-events: none;
106
+ z-index: -1;
107
+
108
+ &#{class(show)}:not(#{class(loading)}) {
109
+ filter: opacity(100%);
110
+ transform: translateY(0%);
111
+ pointer-events: auto;
112
+ z-index: 1;
113
+ }
114
+
115
+ &:not(#{(class(show))}), &#{class(loading)} {
116
+ box-shadow: 0 0 0 0 transparent !important;
117
+ }
118
+
119
+ &#{class(fast)} {
120
+ transition: all time(faster), box-shadow time(faster) time(faster) !important;
121
+ }
122
+ }
123
+
124
+ #{class(shine)} {
125
+ position: relative;
126
+ overflow: hidden;
127
+
128
+ @include states(hover, focus, active, mint-active) {
129
+ &::after {
130
+ transition-duration: time(default);
131
+ transform: translate(100%, -100%);
132
+ }
133
+ }
134
+
135
+ &::after {
136
+ content: '';
137
+ position: absolute;
138
+ top: 0;
139
+ left: 0;
140
+ width: 100%;
141
+ height: 100%;
142
+ transform: translate(-100%, 100%);
143
+ background: linear-gradient(45deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
144
+ transition: transform time(fast) ease-out;
145
+ }
146
+ }
147
+
148
+ #{class(spin)} {
149
+ animation: #{prefix(spin)} 1s linear infinite;
150
+
151
+ @for $i from 1 through 5 {
152
+ &-#{$i} {
153
+ animation-duration: #{$i}s;
154
+ }
155
+ }
156
+
157
+ &-hover {
158
+ $animation: #{prefix(spin)} 1s ease-in-out forwards;
159
+ @include states(hover, focus) {
160
+ animation: $animation;
161
+ }
162
+
163
+ &-icon {
164
+ @include states(hover, focus) {
165
+ i {
166
+ animation: $animation;
167
+ }
168
+ }
169
+ }
170
+ }
171
+ }
172
+
173
+ #{class(pulse-out)} {
174
+ animation: #{prefix(pulse)} 0.75s ease-in-out forwards;
175
+ }
176
+
177
+ #{class(stretch)} {
178
+ animation: #{prefix(stretch-out)} 0.5s ease forwards;
179
+ @include states(hover, focus) {
180
+ animation: #{prefix(stretch-in)} 0.75s ease forwards;
181
+ }
182
+
183
+ &-img {
184
+ img {
185
+ animation: #{prefix(stretch-out)} 0.5s ease forwards;
186
+ }
187
+
188
+ @include states(hover, focus) {
189
+ img {
190
+ animation: #{prefix(stretch-in)} 0.75s ease forwards;
191
+ }
192
+ }
193
+ }
194
+
195
+ &-icon {
196
+ i {
197
+ animation: #{prefix(stretch-out)} 0.5s ease forwards;
198
+ }
199
+
200
+ @include states(hover, focus) {
201
+ i {
202
+ animation: #{prefix(stretch-in)} 0.75s ease forwards;
203
+ }
204
+ }
205
+ }
206
+
207
+ &-in {
208
+ animation: #{prefix(stretch-out)} 0.5s ease forwards;
209
+ }
210
+
211
+ &-tilt-in {
212
+ animation: #{prefix(stretch-tilt-in)} 0.75s ease-in-out forwards;
213
+ }
214
+ }
@@ -0,0 +1,75 @@
1
+ /// global.scss - Global styles
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group Global
5
+ @charset 'utf-8';
6
+
7
+ /// Imports
8
+ @use '../util/selector' as *;
9
+
10
+ :root {
11
+ @include css-var(root-bg-s, cover);
12
+ @include css-var(root-bg-img, none);
13
+ @include css-var(root-bg-pos, center);
14
+ @include css-var(root-bg-filter, none);
15
+ }
16
+
17
+ * {
18
+ &,
19
+ &::before,
20
+ &::after {
21
+ box-sizing: border-box;
22
+ }
23
+ }
24
+
25
+ html {
26
+ overflow-x: hidden;
27
+ }
28
+
29
+ html,
30
+ body {
31
+ min-height: 100vh;
32
+ margin: 0;
33
+ padding: 0;
34
+ scroll-behavior: smooth;
35
+ }
36
+
37
+ body {
38
+ color: css-var(c-fg);
39
+ background-color: css-var(c-bg);
40
+
41
+ &#{class(fixed)} {
42
+ main {
43
+ min-height: 100vh;
44
+ min-height: 100dvh;
45
+ padding-top: css-var(header-h);
46
+ }
47
+ }
48
+ }
49
+
50
+ main {
51
+ display: flex;
52
+ flex-direction: column;
53
+ position: relative;
54
+ width: 100%;
55
+ min-height: calc(100vh - css-var(header-h));
56
+ min-height: calc(100dvh - css-var(header-h));
57
+ padding-left: css-var(pad-clamp);
58
+ padding-right: css-var(pad-clamp);
59
+ overflow: hidden;
60
+ z-index: 999;
61
+
62
+ &::before {
63
+ content: '';
64
+ position: absolute;
65
+ top: 0;
66
+ left: 0;
67
+ width: 100%;
68
+ height: 100%;
69
+ background-image: css-var(root-bg-img);
70
+ background-size: css-var(root-bg-s);
71
+ background-position: css-var(root-bg-pos);
72
+ filter: css-var(root-bg-filter);
73
+ z-index: -1;
74
+ }
75
+ }
@@ -1,3 +1,9 @@
1
+ @use 'animations';
1
2
  @use 'aspect';
3
+ @use 'global';
2
4
  @use 'mask';
3
- @use 'size';
5
+ @use 'shadow';
6
+ @use 'structure';
7
+ @use 'text';
8
+ @use 'texture';
9
+ @use 'themes';
@@ -7,7 +7,17 @@
7
7
  /// Imports
8
8
  @use '../util' as *;
9
9
 
10
- /// Masks
10
+ #{class(sr-only)} {
11
+ position: absolute !important;
12
+ width: 1px !important;
13
+ height: 1px !important;
14
+ padding: 0 !important;
15
+ margin: -1px !important;
16
+ overflow: hidden !important;
17
+ clip: rect(0, 0, 0, 0) !important;
18
+ border: 0 !important;
19
+ }
20
+
11
21
  #{class(circle)} {
12
22
  border-radius: 50%;
13
23
  overflow: hidden;