blob: c85cc8a13d4eea23d1da787e1ed86f4f61a27d72 (
plain)
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
|
html {
position: relative;
min-height: 100%;
font-size: 16px;
}
body {
/* Margin bottom by footer height */
margin-bottom: 60px;
background-color: rgb(246, 248, 250);
}
img {
padding: 2px;
}
a {
color: #3572B0;
}
#sidebar {
overflow: auto;
max-height: 700px;
}
#sidebar .nav li {
list-style-type: none;
padding: 0;
line-height: 1.0;
flex-direction: row;
flex-wrap: nowrap; /* assumes you only want one row */
}
.navbar-dark .navbar-nav .nav-link {
color:
rgb(255, 255, 255, 1);
}
.bg-newspipe-blue {
/* background-color: #0082c9; */
background-image: linear-gradient(40deg, #0082c9 0%, #30b6ff 100%);
}
.btn-primary {
background-color: #0082c9;
opacity: 1;
color: white;
}
.btn-outline-primary {
border-color: #0082c9;
color: #0082c9;
}
/* Sticky footer */
.footer {
position: absolute;
bottom: 0;
width: 100%;
/* Set the fixed height of the footer here */
height: 60px;
line-height: 60px; /* Vertically center the text there */
background-color: #006FBA;
}
.footer a{
color: #FFFFFF;
}
.input-group-inline {
min-width: 0;
width: 200px;
display: inline;
}
.alert-message {
position: relative;
display: block;
z-index: 1001;
}
/*customization for Flask-Paginate*/
.pagination-page-info {
display: inline;
}
|