-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththemes.scss
102 lines (86 loc) · 1.68 KB
/
themes.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/* Bootstrap custom overrides */
$gray: #1A1A1D;
$red: #950740;
$pink: #C3073F;
$brand-primary: $pink;
$link-color: $pink;
$body-bg: $gray;
$font-family-sans-serif: "Raleway", Roboto, "Helvetica Neue", Arial, sans-serif;
$spacer: 1rem !default;
$spacer-x: $spacer !default;
$spacer-y: $spacer !default;
$spacers: (
0: (
x: 0,
y: 0
),
1: (
x: ($spacer-x * .25),
y: ($spacer-y * .25)
),
2: (
x: ($spacer-x * .5),
y: ($spacer-y * .5)
),
3: (
x: $spacer-x,
y: $spacer-y
),
4: (
x: ($spacer-x * 1.5),
y: ($spacer-y * 1.5)
),
5: (
x: ($spacer-x * 3),
y: ($spacer-y * 3)
),
6: (
x: ($spacer-x * 9),
y: ($spacer-y * 9)
)
);
@import "../node_modules/bootstrap/scss/bootstrap";
body {
color: #fff;
}
.breadcrumb {
background-color: #333333 !important;
padding: 0.5rem 1rem !important;
}
.show > .btn-secondary.dropdown-toggle, .btn-secondary {
color: #fff;
background-color: #1A1A1D !important;
border-color: #1A1A1D !important;
}
.btn-secondary:focus, .btn-secondary.focus {
box-shadow: none !important;
}
.card {
color: #fff;
background-color: #27272b;
}
.card-header, .card-footer {
background-color: #0a0a0a40;
}
.list-group-item {
background-color: #2f2f2f;
}
.dropdown-menu {
background-color: #1a1a1d;
}
.dropdown-item {
color: #fff;
}
.dropdown-divider {
background-color: #27272b;
}
.dropdown-item:hover {
background-color: #1f1f1f;
color: #fff;
}
.dropdown-nohover:hover {
background-color: #1a1a1d;
}
@import "../node_modules/angular-notifier/styles";
@import url('https://fonts.googleapis.com/css?family=Raleway');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');