-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.scss
132 lines (114 loc) · 1.99 KB
/
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
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
/*-- scss:defaults --*/
// Base document colors
$link-color: #006DAE;
/*-- scss:rules --*/
thead th {
background-color: #BD666D!important;
color: white!important;
}
a {
text-decoration: none;
}
.navbar-default,
.navbar-toggle,
.navbar-toggle:focus {
background-color: #BD666D;
}
.navbar-nav > .active > a,
.navbar-toggle:hover,
.navbar-nav>li>a:hover {
background-color: #BD666D!important;
}
#sticky-footer {
background-color: #BD666D;
color: white;
padding: 10px;
position: sticky;
bottom: 0;
}
@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;
}
}
/* Badges */
.badge {
font-family: $font-family-sans-serif;
font-size: 12.75px;
display: inline-block;
line-height: 1;
padding: 4px 7px 3px 7px;
text-align: center;
font-weight: normal;
text-transform: uppercase;
border-radius: 15px;
opacity: .75;
}
a.badge.badge-red {
color: #fff;
}
a.badge.badge-blue {
color: #fff;
}
a.badge.badge-green {
color: #fff;
}
.badge-large {
font-size: 18px !important;
text-transform: none !important;
padding: 5px 5px 3px 5px;
text-transform: none;
font-family: $font-family-sans-serif;
}
.badge-small {
font-size: 11.25px;
padding: 5px 5px 3px 5px;
}
.badge:hover {
opacity: 1;
}
.badge-black,
.badge-blue,
.badge-red,
.badge-green {
color: #ffffff !important;
}
.badge-black {
background: #0f0f0f;
}
.badge-blue {
background: #006DAE;
}
.badge-red {
background: #BD666D;
}
.badge-green {
background: #2c9f42;
}
.badge-yellow {
background: #ffc800;
}
.badge-white {
background: #ffffff;
}
.badge-grey {
background: #cccccc;
}