-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.scss
More file actions
165 lines (143 loc) · 2.92 KB
/
Copy pathstyles.scss
File metadata and controls
165 lines (143 loc) · 2.92 KB
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
@import "admonition";
:root {
--bs-list-group-bg: #var(--navbar-col);
}
body {
font-family: 'Open Sans', sans-serif;
}
.box-error, .box-note, .box-warning {
color: #18191a;
}
.avatar-img {
background-color: var(--navbar-col);
border: .05rem;
border-color: var(--navbar-border-col);
border-style: solid;
}
.card-body, .card-custom, .card-footer, .card-img-top, .cr-picker-button, .cr-picker-submenu {
--bs-bg-opacity: 1;
background-color: var(--navbar-col) !important;
}
.modal-content {
background-color: var(--footer-col) !important;
}
/* in line code */
code {
color: var(--mid-col);
background-color: var(--navbar-col);
}
.feature {
display: inline-flex;
align-items: center;
justify-content: center;
height: 3rem;
width: 3rem;
font-size: 1.5rem;
}
.widgetbot {
display: flex;
align-items: center;
justify-content: space-around;
}
/* page navigation buttons */
.pagination .page-item .page-link {
background-color: #111111;
color: #e4e4e4;
}
/* shrink logo when navbar shrinks, instead of hiding it */
.navbar-custom.top-nav-short .avatar-container {
width: 3.125rem;
opacity: 1 !important;
visibility: visible !important;
transition: none !important;
-webkit-transition: none !important;
-moz-transition: none !important;
}
/* hide search button */
#nav-search-link {
display: none;
}
/*card image hover*/
.hover-zoom {
overflow: hidden;
}
.hover-zoom img {
transition: all 1.5s ease;
}
.hover-zoom:hover img {
transform: scale(1.1);
}
.icon img, img.icon {
/* remove max-width from beautiful-jekyll */
max-width: none;
height: 2.25em;
}
.icon-sm img, img.icon-sm {
max-width: none;
height: 1.25em;
}
.icon-lg img, img.icon-lg {
max-width: none;
height: 3.25em;
}
img.invert {
filter: invert(1);
}
.btn:hover img.invert {
filter: invert(0);
}
/* code blocks */
.highlight {
border-radius: 0.5rem;
}
.highlight > pre {
border-left: 0.4375rem solid var(--text-col);
}
.highlight pre.lineno {
border-right: 2px solid var(--text-col);
}
.admonition .highlight {
margin-left: 0.5rem;
margin-right: 1.25rem;
}
.admonition .highlight > pre {
border-radius: 0.5rem;
}
/* CSS for tabs */
.tabs {
background-color: var(--footer-col);
padding: 1rem;
}
.tabs .nav-link {
color: var(--link-col);
}
.tabs .nav-link:hover {
color: var(--hover-col);
}
.tabs .nav-link.active {
color: var(--text-col);
border-color: var(--text-col);
}
.tab-content {
background-color: var(--navbar-col);
padding: 1rem;
margin-top: 1rem;
border: 1px solid var(--page-col);
border-radius: 0.5rem;
}
/* tables */
table tr:nth-child(2n) {
background-color: var(--footer-col);
}
.list-group-item.bg-dark {
border-color: var(--navbar-col);
}
.list-group-item.bg-dark .text-muted {
color: var(--text-col);
}
.list-group-item.bg-dark a {
text-decoration: none;
}
.list-group-item.bg-dark a:hover {
text-decoration: underline;
}