balean-theme 0.1.3 → 0.1.4
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.
- checksums.yaml +4 -4
- data/_sass/balean/components/_index.scss +1 -0
- data/_sass/balean/components/_shapes.scss +39 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 25d27b6b87c04dcedcfb1e194d1fc283844e201b2d70e112dd6b2d7593920659
|
|
4
|
+
data.tar.gz: 05efa1e80e4b31fe58c3c5bef140a1494769e6d1bded322e37699aedb1044b01
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ad98117ca5b4bb4a4e87e79317fbd201c029ef39ea81d1ca3f6a9b758d3dc125079d48c063e121af2fc772fa1d3df41ca0f35a55b7a179a178c0c2db24b660e3
|
|
7
|
+
data.tar.gz: 86af4145f69c9b80b55f8c3bb2f07d44e0db88e9a686dd98c6a7b7d84cca7f87cc4bcba1f61821bf9c85514527968e909583a03d89156270026f48717582e1c3
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
.bui-shape {
|
|
2
|
+
|
|
3
|
+
&--rounded-rectangle {
|
|
4
|
+
margin: 20px;
|
|
5
|
+
min-height: 50px;
|
|
6
|
+
background: var(--bui-secondary-color-1);
|
|
7
|
+
// x1 x2 x3 x4 / y1 y2 y3 y4 -> 1 = up-left, 2 = up right, 3 = down-right, 4 = down-left
|
|
8
|
+
border-radius: 60px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
&--organic-shape-2 {
|
|
12
|
+
margin: 20px;
|
|
13
|
+
aspect-ratio: 3 / 2;
|
|
14
|
+
background: var(--bui-secondary-color-1);
|
|
15
|
+
// x1 x2 x3 x4 / y1 y2 y3 y4 -> 1 = up-left, 2 = up right, 3 = down-right, 4 = down-left
|
|
16
|
+
border-radius: 68% 23% 70% 21% / 40% 35% 66% 53%;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
&--width-20 {
|
|
20
|
+
width: 20%;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&--width-50 {
|
|
24
|
+
// bui-shape--width-50 uses 50% of the screen width
|
|
25
|
+
width: 50%;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
&--width-100 {
|
|
29
|
+
// bui-shape--width-100 uses 100% of the screen width
|
|
30
|
+
width: 100%;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
&--content {
|
|
34
|
+
text-align: center;
|
|
35
|
+
align-content: center;
|
|
36
|
+
height: 100%;
|
|
37
|
+
width: 100%;
|
|
38
|
+
}
|
|
39
|
+
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: balean-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sander Brienen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-03
|
|
11
|
+
date: 2025-04-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -41,6 +41,7 @@ files:
|
|
|
41
41
|
- _sass/balean/_theme.scss
|
|
42
42
|
- _sass/balean/components/_buttons.scss
|
|
43
43
|
- _sass/balean/components/_index.scss
|
|
44
|
+
- _sass/balean/components/_shapes.scss
|
|
44
45
|
- _sass/balean/settings/_balean-font.scss
|
|
45
46
|
- _sass/balean/settings/_color-scheme.scss
|
|
46
47
|
- _sass/balean/settings/_index.scss
|