-
Notifications
You must be signed in to change notification settings - Fork 4
/
numbat.scss
69 lines (57 loc) · 1.1 KB
/
numbat.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
/*-- scss:defaults --*/
// Base document colors
$link-color: #006DAE;
// Code blocks
$font-family-monospace: Hack;
$code-block-bg-alpha: 0.8;
/*-- scss:rules --*/
thead th {
background-color: #006DAE!important;
color: white !important;
}
a {
text-decoration: none;
}
.navbar-default,
.navbar-toggle,
.navbar-toggle:focus {
background-color: #006DAE;
}
.navbar-nav > .active > a,
.navbar-toggle:hover,
.navbar-nav>li>a:hover {
background-color: #006DAE!important;
}
#sticky-footer {
background-color: #006DAE;
color: white;
padding: 10px;
position: sticky;
bottom: 0;
}
.d-none {
display: none!important;
}
@media print {
.navbar {
display: block;
position: absolute;
top:0;
border-width:0 !important;
min-height: 0!important;
border-bottom: 1px solid black!important;
}
.navbar-toggle {
display:none;
}
/* to remove the href printing */
a[href]:after {
content: none !important;
}
#sticky-footer {
display: none !important;
}
.d-print-block {
display: block!important;
}
}