website-utilities 1.0.286 → 1.0.287
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/_fonts.scss +150 -0
- package/_variables.scss +34 -0
- package/package.json +5 -2
package/_fonts.scss
ADDED
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
/** region open sans */
|
|
2
|
+
/*** region light */
|
|
3
|
+
@font-face {
|
|
4
|
+
font-family: open-sans;
|
|
5
|
+
/* stylelint-disable property-no-unknown */
|
|
6
|
+
font-path: "fonts/open-sans/light/open-sans-light";
|
|
7
|
+
/* stylelint-enable property-no-unknown */
|
|
8
|
+
font-weight: 300;
|
|
9
|
+
font-style: normal;
|
|
10
|
+
}
|
|
11
|
+
/*** endregion */
|
|
12
|
+
/*** region light italic */
|
|
13
|
+
@font-face {
|
|
14
|
+
font-family: open-sans;
|
|
15
|
+
/* stylelint-disable property-no-unknown */
|
|
16
|
+
font-path: "fonts/open-sans/light-italic/open-sans-light-italic";
|
|
17
|
+
/* stylelint-enable property-no-unknown */
|
|
18
|
+
font-weight: 300;
|
|
19
|
+
font-style: italic;
|
|
20
|
+
}
|
|
21
|
+
/*** endregion */
|
|
22
|
+
/*** region regular */
|
|
23
|
+
@font-face {
|
|
24
|
+
font-family: open-sans;
|
|
25
|
+
/* stylelint-disable property-no-unknown */
|
|
26
|
+
font-path: "fonts/open-sans/regular/open-sans-regular";
|
|
27
|
+
/* stylelint-enable property-no-unknown */
|
|
28
|
+
font-weight: normal;
|
|
29
|
+
font-style: normal;
|
|
30
|
+
}
|
|
31
|
+
/*** endregion */
|
|
32
|
+
/*** region italic */
|
|
33
|
+
@font-face {
|
|
34
|
+
font-family: open-sans;
|
|
35
|
+
/* stylelint-disable property-no-unknown */
|
|
36
|
+
font-path: "fonts/open-sans/italic/open-sans-italic";
|
|
37
|
+
/* stylelint-enable property-no-unknown */
|
|
38
|
+
font-weight: normal;
|
|
39
|
+
font-style: italic;
|
|
40
|
+
}
|
|
41
|
+
/*** endregion */
|
|
42
|
+
/*** region semi-bold */
|
|
43
|
+
@font-face {
|
|
44
|
+
font-family: open-sans;
|
|
45
|
+
/* stylelint-disable property-no-unknown */
|
|
46
|
+
font-path: "fonts/open-sans/semi-bold/open-sans-semi-bold";
|
|
47
|
+
/* stylelint-enable property-no-unknown */
|
|
48
|
+
font-weight: 600;
|
|
49
|
+
font-style: normal;
|
|
50
|
+
}
|
|
51
|
+
/*** endregion */
|
|
52
|
+
/*** region semi-bold italic */
|
|
53
|
+
@font-face {
|
|
54
|
+
font-family: open-sans;
|
|
55
|
+
/* stylelint-disable property-no-unknown */
|
|
56
|
+
font-path: "fonts/open-sans/semi-bold-italic/open-sans-semi-bold-italic";
|
|
57
|
+
/* stylelint-enable property-no-unknown */
|
|
58
|
+
font-weight: 600;
|
|
59
|
+
font-style: italic;
|
|
60
|
+
}
|
|
61
|
+
/*** endregion */
|
|
62
|
+
/*** region bold */
|
|
63
|
+
@font-face {
|
|
64
|
+
font-family: open-sans;
|
|
65
|
+
/* stylelint-disable property-no-unknown */
|
|
66
|
+
font-path: "fonts/open-sans/bold/open-sans-bold";
|
|
67
|
+
/* stylelint-enable property-no-unknown */
|
|
68
|
+
font-weight: bold;
|
|
69
|
+
font-style: normal;
|
|
70
|
+
}
|
|
71
|
+
/*** endregion */
|
|
72
|
+
/*** region bold italic */
|
|
73
|
+
@font-face {
|
|
74
|
+
font-family: open-sans;
|
|
75
|
+
/* stylelint-disable property-no-unknown */
|
|
76
|
+
font-path: "fonts/open-sans/bold-italic/open-sans-bold-italic";
|
|
77
|
+
/* stylelint-enable property-no-unknown */
|
|
78
|
+
font-weight: bold;
|
|
79
|
+
font-style: italic;
|
|
80
|
+
}
|
|
81
|
+
/*** endregion */
|
|
82
|
+
/*** region extrabold */
|
|
83
|
+
@font-face {
|
|
84
|
+
font-family: open-sans;
|
|
85
|
+
/* stylelint-disable property-no-unknown */
|
|
86
|
+
font-path: "fonts/open-sans/extra-bold/open-sans-extra-bold";
|
|
87
|
+
/* stylelint-enable property-no-unknown */
|
|
88
|
+
font-weight: 800;
|
|
89
|
+
font-style: normal;
|
|
90
|
+
}
|
|
91
|
+
/*** endregion */
|
|
92
|
+
/*** region extrabold italic */
|
|
93
|
+
@font-face {
|
|
94
|
+
font-family: open-sans;
|
|
95
|
+
/* stylelint-disable property-no-unknown */
|
|
96
|
+
font-path: "fonts/open-sans/extra-bold-italic/open-sans-extra-bold-italic";
|
|
97
|
+
/* stylelint-enable property-no-unknown */
|
|
98
|
+
font-weight: 800;
|
|
99
|
+
font-style: italic;
|
|
100
|
+
}
|
|
101
|
+
/*** endregion */
|
|
102
|
+
/** endregion */
|
|
103
|
+
/** region open sans condensed */
|
|
104
|
+
/*** region bold */
|
|
105
|
+
@font-face {
|
|
106
|
+
font-family: open-sans-condensed;
|
|
107
|
+
/* stylelint-disable property-no-unknown */
|
|
108
|
+
font-path: "fonts/open-sans-condensed/condensed-bold/open-sans-condensed-bold";
|
|
109
|
+
/* stylelint-enable property-no-unknown */
|
|
110
|
+
font-weight: bold;
|
|
111
|
+
font-style: normal;
|
|
112
|
+
}
|
|
113
|
+
/*** endregion */
|
|
114
|
+
/*** region open sans light */
|
|
115
|
+
@font-face {
|
|
116
|
+
font-family: open-sans-condensed;
|
|
117
|
+
/* stylelint-disable property-no-unknown */
|
|
118
|
+
font-path: "fonts/open-sans-condensed/condensed-light/open-sans-condensed-light";
|
|
119
|
+
/* stylelint-enable property-no-unknown */
|
|
120
|
+
font-weight: 300;
|
|
121
|
+
font-style: normal;
|
|
122
|
+
}
|
|
123
|
+
/*** endregion */
|
|
124
|
+
/*** region open sans italic */
|
|
125
|
+
@font-face {
|
|
126
|
+
font-family: open-sans-condensed;
|
|
127
|
+
/* stylelint-disable property-no-unknown */
|
|
128
|
+
font-path: "fonts/open-sans-condensed/condensed-light-italic/open-sans-condensed-light-italic";
|
|
129
|
+
/* stylelint-enable property-no-unknown */
|
|
130
|
+
font-weight: 300;
|
|
131
|
+
font-style: italic;
|
|
132
|
+
}
|
|
133
|
+
/*** endregion */
|
|
134
|
+
/** endregion */
|
|
135
|
+
/** region glyphicons halflings */
|
|
136
|
+
@font-face {
|
|
137
|
+
font-family: "Glyphicons Halflings";
|
|
138
|
+
/* stylelint-disable property-no-unknown */
|
|
139
|
+
font-path: "fonts/glyphicons-halflings/glyphicons-halflings-regular";
|
|
140
|
+
/* stylelint-enable property-no-unknown */
|
|
141
|
+
}
|
|
142
|
+
/** endregion */
|
|
143
|
+
/** region glyphicons social regular */
|
|
144
|
+
@font-face {
|
|
145
|
+
font-family: "Glyphicons Social Regular";
|
|
146
|
+
/* stylelint-disable property-no-unknown */
|
|
147
|
+
font-path: "fonts/glyphicons-halflings/glyphicons-halflings-social-regular";
|
|
148
|
+
/* stylelint-enable property-no-unknown */
|
|
149
|
+
}
|
|
150
|
+
/** endregion */
|
package/_variables.scss
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/* colors */
|
|
2
|
+
$theme-background: #fff !default;
|
|
3
|
+
$theme-primary: #76b82a !default;
|
|
4
|
+
$theme-on-primary: #f0f6fc !default;
|
|
5
|
+
$theme-secondary: #238636 !default;
|
|
6
|
+
$theme-on-secondary: #d6e9da !default;
|
|
7
|
+
$theme-error: #723637 !default;
|
|
8
|
+
$theme-on-error: #fff !default;
|
|
9
|
+
$theme-surface: #21262d !default;
|
|
10
|
+
$theme-on-surface: #bbc2ca !default;
|
|
11
|
+
/* typography */
|
|
12
|
+
/*
|
|
13
|
+
NOTE: Browser has default "font-size" of "16px". We shouldn't overwrite
|
|
14
|
+
this behaviour.
|
|
15
|
+
|
|
16
|
+
Fallback order:
|
|
17
|
+
|
|
18
|
+
Arial
|
|
19
|
+
Helvetica
|
|
20
|
+
Lucida Sans
|
|
21
|
+
Tahoma
|
|
22
|
+
Trebuchet MS
|
|
23
|
+
Verdana
|
|
24
|
+
*/
|
|
25
|
+
$typography-font-family: "Open Sans", open-sans, sans-serif !default;
|
|
26
|
+
$typography-font-family-headline: "Open Sans Condensed", open-sans-condensed, sans-serif !default;
|
|
27
|
+
$typography-font-family-social: "Glyphicons Halflings", sans-serif !default;
|
|
28
|
+
/* spaces */
|
|
29
|
+
$default-space: 20px !default;
|
|
30
|
+
$extra-extra-small-width: 360px !default;
|
|
31
|
+
$extra-small-width: 500px !default;
|
|
32
|
+
$small-width: 768px !default;
|
|
33
|
+
$medium-width: 992px !default;
|
|
34
|
+
$large-width: 1200px !default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "website-utilities",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.287",
|
|
4
4
|
"description": "extend your web app",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jquery",
|
|
@@ -26,7 +26,10 @@
|
|
|
26
26
|
"index.compiled.css",
|
|
27
27
|
"fonts",
|
|
28
28
|
"fonts.compiled",
|
|
29
|
-
"type.d.ts"
|
|
29
|
+
"type.d.ts",
|
|
30
|
+
"_fonts.scss",
|
|
31
|
+
"_variables.scss",
|
|
32
|
+
"_index.scss"
|
|
30
33
|
],
|
|
31
34
|
"bin": {
|
|
32
35
|
"website-utilities": "deploy.js"
|