forked from gkapfham/www.gregorykapfhammer.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
united-dark.scss
118 lines (97 loc) · 2.37 KB
/
united-dark.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*-- scss:defaults --*/
// Defaults {{{
$body-bg: #212121;
$body-color: #bdbdbd;
$link-color: #ef6c00;
// }}}
// Search Box {{{
#quarto-search input {
font-size: 0.925rem;
background-color: #fdfeff;
}
.aa-Autocomplete .aa-Form,
.aa-DetachedFormContainer .aa-Form {
align-items: center;
background-color: #fdfeff !important;
border: 1px solid #ced4da;
border-radius: 0.25rem;
color: #bdbdbd;
display: flex;
line-height: 1em;
margin: 0;
position: relative;
width: 100%;
}
.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-Label svg,
.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator svg,
.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-Label svg,
.aa-DetachedFormContainer
.aa-Form
.aa-InputWrapperPrefix
.aa-LoadingIndicator
svg {
color: #333 !important;
opacity: 0.5;
}
// }}}
// Source Code {{{
// Code blocks
$code-block-bg-alpha: -0.9;
pre {
display: block;
margin-top: 0;
margin-bottom: 1rem;
overflow: auto;
font-size: 0.875em;
color: #bdbdbd !important;
background-color: #272727;
padding: 0.5rem;
border: 1px solid #dee2e6;
border-radius: 0.25rem;
}
// }}}
// Navbar {{{
.navbar-dark {
background-color: #e65100 !important;
}
.navbar-dark .dropdown-text {
color: #333333;
text-align: inherit;
text-decoration: none;
}
// }}}
// Get the Gist {{{
.form-switch .form-check-input {
width: 2em;
margin-left: -2.5em;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%220, 0, 0, 0%29'/%3e%3c/svg%3e");
background-position: left center;
border-radius: 2em;
transition: background-position 0.15s ease-in-out;
}
.form-check-input,
.shiny-input-container .checkbox input,
.shiny-input-container .checkbox-inline input,
.shiny-input-container .radio input,
.shiny-input-container .radio-inline input {
width: 1em;
height: 1em;
margin-top: 0.25em;
vertical-align: top;
background-color: #ef6c00 !important;
background-repeat: no-repeat;
background-position: center;
background-size: contain;
border: 1px solid #ef6c00 !important;
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
-o-appearance: none;
}
.toggle-container {
background-color: rgba(233, 236, 239, 0.1);
border: 1px solid rgba(233, 236, 239, 0.1);
border-radius: 0.25rem;
}
// }}}