aboutsummaryrefslogtreecommitdiff
path: root/newspipe/web/static/css/customized-bootstrap.css
blob: f6bbcfd7536b33a6e10645ba5cac8959268a5a31 (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%;
}
body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
    background-color: rgb(246, 248, 250);
}
img {
    padding: 2px;
}

.bg-newspipe-blue {
    background-color: #205081;
}


/* 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;
}




#newspipenav {
    background-color: #205081;
    border: #205081;
    border-radius: 0;
}
#newspipenav>div.container {
  width: 100%;
}
#newspipenav span.glyphicon {
  margin-right: 5px;
}
#newspipenav button {
  margin-left: 5px;
}

#newspipenav a.navbar-brand,
#newspipenav .newspipenavitem a,
#newspipenav a.dropdown-toggle{
    color: white;
}
#newspipenav .navbar-nav > .open > a,
#newspipenav .navbar-nav > .open > a:hover,
#newspipenav .navbar-nav > li > a:hover {
    background-color: #3572B0;
}
a {
    color: #3572B0;
}

.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;
}
bgstack15