-
Notifications
You must be signed in to change notification settings - Fork 0
/
light-styles.scss
47 lines (36 loc) · 1.32 KB
/
light-styles.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
/*-- scss:defaults --*/
// Base document colors
$body-color: #343a40;
$primary: rgba(53, 24, 49, 0.616);
$secondary: rgba(255, 255, 255, 0.765);
$border-color: tint-color($body-color, 30%);
// $border-width: 5px;
$body-bg-image: linear-gradient(70deg, rgba(181,181,214,1) 0%, rgba(237,234,209,1) 31%, rgba(231,200,200,1) 100%);
$code-block-bg: rgba(221, 221, 221, 0.4);
// Table border is difficult to mess with
$table-group-separator-color: $body-color;
$table-group-separator-color-lighter: tint-color($table-group-separator-color, 60%);
$card-background-image: linear-gradient(125deg, rgba(216, 216, 216, 0.3), rgba(192, 192, 192, 0.2) 70%);
$card-background-image-lighter: linear-gradient(125deg, rgba(216, 216, 216, 0.3), rgba(192, 192, 192, 0.2) 70%);
$card-color: $body-color;
$card-cap-color:#0ff;
$gray-300: $border-color;
$link-color: #c58e3b;
/*-- scss: rules --*/
div.callout-style-default > .callout-header {
color: $body-color !important;
}
.input-group {
border: none !important;
}
div.sourceCode {
box-shadow: 2px 2px 1px #0003;
box-shadow: inset 1px 1px rgba(255, 255, 255, 0.2), inset -1px -1px rgba(255, 255, 255, 0.1), 1px 3px 24px -1px rgba(0, 0, 0, 0.15);
}
div.nav-footer {
color: rgba($body-color,0.3);
}
// callout headers
div.callout-style-default > .callout-header {
color: $secondary !important;
}