vipassana-design-standards 0.0.11 → 0.0.12

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.
package/README.md CHANGED
@@ -4,4 +4,29 @@
4
4
  Provide a simple website to download the logos in different format and variations
5
5
 
6
6
 
7
- helper Vipassana::LogoHelper
7
+ helper Vipassana::LogoHelper
8
+
9
+ <body class="vds-body">
10
+ <div class="vds-header-and-content">
11
+ <header class="vds-header">
12
+ <!-- Logo vipassana_logo_svg -->
13
+ </header>
14
+
15
+ <div class="vds-page vds-container">
16
+ <div class="vds-sidenav">
17
+ <ul>
18
+ <li>
19
+ <a href="test">Test</a>
20
+ </li>
21
+ </ul>
22
+ </div>
23
+
24
+ <div class="vds-page-content">
25
+ <!-- Page content -->
26
+ </div>
27
+ </div>
28
+ </div>
29
+
30
+ <footer class="vds-footer">
31
+ </footer>
32
+ </body>
@@ -1,6 +1,4 @@
1
1
 
2
- @use "sass:math";
3
-
4
2
  :root {
5
3
  // Generate missing CSS Variables
6
4
  @each $color, $value in $blues {
@@ -46,36 +44,58 @@
46
44
  .fs-normal {
47
45
  font-size: 1rem !important;
48
46
  }
47
+
49
48
  // fs-09-rem, fs-085-em..
50
- @for $i from 5 through 9 {
51
- .fs-0#{$i}-rem {
52
- font-size: #{math.div($i, 10)}rem !important;
53
- }
54
- .fs-0#{$i}-em {
55
- font-size: #{math.div($i, 10)}em !important;
56
- }
57
- .fs-0#{$i}5-rem {
58
- font-size: #{math.div($i, 10) + 0.05}rem !important;
59
- }
60
- .fs-0#{$i}5-em {
61
- font-size: #{math.div($i, 10) + 0.05}em !important;
62
- }
63
- }
49
+ .fs-05-rem { font-size: .5rem !important; }
50
+ .fs-05-em { font-size: .5em !important; }
51
+ .fs-055-rem { font-size: .55rem !important; }
52
+ .fs-055-em { font-size: .55em !important; }
53
+
54
+ .fs-06-rem { font-size: .6rem !important; }
55
+ .fs-06-em { font-size: .6em !important; }
56
+ .fs-065-rem { font-size: .65rem !important; }
57
+ .fs-065-em { font-size: .65em !important; }
58
+
59
+ .fs-07-rem { font-size: .7rem !important; }
60
+ .fs-07-em { font-size: .7em !important; }
61
+ .fs-075-rem { font-size: .75rem !important; }
62
+ .fs-075-em { font-size: .75em !important; }
63
+
64
+ .fs-08-rem { font-size: .8rem !important; }
65
+ .fs-08-em { font-size: .8em !important; }
66
+ .fs-085-rem { font-size: .85rem !important; }
67
+ .fs-085-em { font-size: .85em !important; }
68
+
69
+ .fs-09-rem { font-size: .9rem !important; }
70
+ .fs-09-em { font-size: .9em !important; }
71
+ .fs-095-rem { font-size: .95rem !important; }
72
+ .fs-095-em { font-size: .95em !important; }
73
+
64
74
  // fs-11-rem, fs-125-em...
65
- @for $i from 1 through 5 {
66
- .fs-1#{$i}-rem {
67
- font-size: #{1 + math.div($i, 10)}rem !important;
68
- }
69
- .fs-1#{$i}-em {
70
- font-size: #{1 + math.div($i, 10)}em !important;
71
- }
72
- .fs-1#{$i}5-rem {
73
- font-size: #{1.05 + math.div($i, 10)}rem !important;
74
- }
75
- .fs-1#{$i}5-em {
76
- font-size: #{1.05 + math.div($i, 10)}em !important;
77
- }
78
- }
75
+ .fs-11-rem { font-size: 1.1rem !important; }
76
+ .fs-11-em { font-size: 1.1em !important; }
77
+ .fs-115-rem { font-size: 1.15rem !important; }
78
+ .fs-115-em { font-size: 1.15em !important; }
79
+
80
+ .fs-12-rem { font-size: 1.2rem !important; }
81
+ .fs-12-em { font-size: 1.2em !important; }
82
+ .fs-125-rem { font-size: 1.25rem !important; }
83
+ .fs-125-em { font-size: 1.25em !important; }
84
+
85
+ .fs-13-rem { font-size: 1.3rem !important; }
86
+ .fs-13-em { font-size: 1.3em !important; }
87
+ .fs-135-rem { font-size: 1.35rem !important; }
88
+ .fs-135-em { font-size: 1.35em !important; }
89
+
90
+ .fs-14-rem { font-size: 1.4rem !important; }
91
+ .fs-14-em { font-size: 1.4em !important; }
92
+ .fs-145-rem { font-size: 1.45rem !important; }
93
+ .fs-145-em { font-size: 1.45em !important; }
94
+
95
+ .fs-15-rem { font-size: 1.5rem !important; }
96
+ .fs-15-em { font-size: 1.5em !important; }
97
+ .fs-155-rem { font-size: 1.55rem !important; }
98
+ .fs-155-em { font-size: 1.55em !important; }
79
99
 
80
100
  .full-width-sm {
81
101
  @include media-breakpoint-down(md) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vipassana-design-standards",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "description": "Vipassana design standards materials",
5
5
  "homepage": "https://design-standards.dhamma.org",
6
6
  "author": "Dhamma Workers",