aboutsummaryrefslogtreecommitdiff
path: root/newspipe/web/static/css/customized-bootstrap.css
blob: 02f8a72e205b88c41d6d0a9fd250c2ef4cc06deb (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
html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
}
body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
    background-color: rgb(246, 248, 250);
}
img {
    padding: 2px;
}
a {
    color: #3572B0;
}

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

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


.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