@spark-hire/bootstrap-themes 0.0.23 → 0.0.32
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/package.json +2 -2
- package/project.sublime-project +8 -8
- package/scss/_variables.scss +32 -0
- package/scss/dark/_variables.scss +1 -32
- package/scss/dark/theme.scss +1 -23
- package/scss/fonts.scss +10 -0
- package/scss/light/_variables.scss +6 -0
- package/scss/light/theme.scss +3 -0
- package/scss/scrollbar.scss +21 -0
- package/scss/shared.scss +2 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spark-hire/bootstrap-themes",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Custom Bootstrap 4
|
|
3
|
+
"version": "0.0.32",
|
|
4
|
+
"description": "Custom Bootstrap 4 Themes",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git@codebasehq.com:sparkhire/sparkhire/bootstrap-themes.git"
|
package/project.sublime-project
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
{
|
|
2
|
-
"folders":
|
|
3
|
-
[
|
|
4
|
-
{
|
|
5
|
-
"path": "."
|
|
6
|
-
}
|
|
7
|
-
]
|
|
8
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"folders":
|
|
3
|
+
[
|
|
4
|
+
{
|
|
5
|
+
"path": "."
|
|
6
|
+
}
|
|
7
|
+
]
|
|
8
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
$enable-rounded: false;
|
|
2
|
+
|
|
3
|
+
$white: #fff;
|
|
4
|
+
|
|
5
|
+
$gray-100: #f8f9fa;
|
|
6
|
+
$gray-200: #e9ecef;
|
|
7
|
+
$gray-300: #dee2e6;
|
|
8
|
+
$gray-400: #ced4da;
|
|
9
|
+
$gray-500: #adb5bd;
|
|
10
|
+
$gray-600: #868e96;
|
|
11
|
+
$gray-700: #495057;
|
|
12
|
+
$gray-800: #343a40;
|
|
13
|
+
$gray-900: #212529;
|
|
14
|
+
$gray-1000: #1a1c20;
|
|
15
|
+
|
|
16
|
+
$black: #000;
|
|
17
|
+
|
|
18
|
+
$blue: #428bca;
|
|
19
|
+
$indigo: #6610f2;
|
|
20
|
+
$purple: #a66bbe;
|
|
21
|
+
$pink: #ee779b;
|
|
22
|
+
$red: #ea6153;
|
|
23
|
+
$orange: #f08b1f;
|
|
24
|
+
$yellow: #f1d748;
|
|
25
|
+
$green: #28a745;
|
|
26
|
+
$teal: #3fbd9b;
|
|
27
|
+
$cyan: #54c5e6;
|
|
28
|
+
$dark-blue: #213d55;
|
|
29
|
+
|
|
30
|
+
$font-size-base: 1rem;
|
|
31
|
+
$font-size-lg: ($font-size-base * 1.10);
|
|
32
|
+
$font-size-sm: ($font-size-base * .9);
|
|
@@ -3,42 +3,11 @@
|
|
|
3
3
|
@import "node_modules/bootstrap/scss/variables";
|
|
4
4
|
@import "node_modules/bootstrap/scss/mixins";
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
$gray-100: #f8f9fa;
|
|
9
|
-
$gray-200: #e9ecef;
|
|
10
|
-
$gray-300: #dee2e6;
|
|
11
|
-
$gray-400: #ced4da;
|
|
12
|
-
$gray-500: #adb5bd;
|
|
13
|
-
$gray-600: #868e96;
|
|
14
|
-
$gray-700: #495057;
|
|
15
|
-
$gray-800: #343a40;
|
|
16
|
-
$gray-900: #212529;
|
|
17
|
-
$gray-1000: #1a1c20;
|
|
18
|
-
|
|
19
|
-
$black: #000;
|
|
20
|
-
|
|
21
|
-
$blue: #428bca;
|
|
22
|
-
$indigo: #6610f2;
|
|
23
|
-
$purple: #a66bbe;
|
|
24
|
-
$pink: #ee779b;
|
|
25
|
-
$red: #ea6153;
|
|
26
|
-
$orange: #f08b1f;
|
|
27
|
-
$yellow: #f1d748;
|
|
28
|
-
$green: #28a745;
|
|
29
|
-
$teal: #3fbd9b;
|
|
30
|
-
$cyan: #54c5e6;
|
|
31
|
-
$dark-blue: #213d55;
|
|
32
|
-
|
|
33
|
-
$enable-rounded: false;
|
|
6
|
+
@import "../variables";
|
|
34
7
|
|
|
35
8
|
$body-bg: $gray-900;
|
|
36
9
|
$body-color: $gray-100;
|
|
37
10
|
|
|
38
|
-
$font-size-base: 1rem;
|
|
39
|
-
$font-size-lg: ($font-size-base * 1.10);
|
|
40
|
-
$font-size-sm: ($font-size-base * .9);
|
|
41
|
-
|
|
42
11
|
$input-bg: $gray-400;
|
|
43
12
|
$input-disabled-bg: $gray-600;
|
|
44
13
|
|
package/scss/dark/theme.scss
CHANGED
|
@@ -1,25 +1,3 @@
|
|
|
1
1
|
@import "variables";
|
|
2
|
-
|
|
3
2
|
@import "node_modules/bootstrap/scss/bootstrap";
|
|
4
|
-
|
|
5
|
-
::-webkit-scrollbar {
|
|
6
|
-
width: 10px;
|
|
7
|
-
height: 10px;
|
|
8
|
-
border: none;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
::-webkit-scrollbar-track {
|
|
12
|
-
-webkit-border-radius: 0;
|
|
13
|
-
background: rgba(0,0,0,0.20);
|
|
14
|
-
border-radius: 0;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
::-webkit-scrollbar-thumb {
|
|
18
|
-
-webkit-border-radius: 0;
|
|
19
|
-
border-radius: 0;
|
|
20
|
-
background: rgba(0,0,0,0.25);
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
::-webkit-scrollbar-thumb:window-inactive {
|
|
24
|
-
background: rgba(0,0,0,0.15);
|
|
25
|
-
}
|
|
3
|
+
@import "../shared";
|
package/scss/fonts.scss
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
::-webkit-scrollbar {
|
|
2
|
+
width: 10px;
|
|
3
|
+
height: 10px;
|
|
4
|
+
border: none;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
::-webkit-scrollbar-track {
|
|
8
|
+
-webkit-border-radius: 0;
|
|
9
|
+
background: rgba(0,0,0,0.20);
|
|
10
|
+
border-radius: 0;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
::-webkit-scrollbar-thumb {
|
|
14
|
+
-webkit-border-radius: 0;
|
|
15
|
+
border-radius: 0;
|
|
16
|
+
background: rgba(0,0,0,0.25);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
::-webkit-scrollbar-thumb:window-inactive {
|
|
20
|
+
background: rgba(0,0,0,0.15);
|
|
21
|
+
}
|
package/scss/shared.scss
ADDED