aboutsummaryrefslogtreecommitdiff
path: root/newspipe/static/css/custom.css
blob: 8bd1e92cef41aa34d30365b0c8b6b80cb3a3ea4a (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
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-secondary {
    background-color: #0082c9;
    opacity: 0.6;
    color: white;
}

.btn-outline-primary {
    border-color: #0082c9;
    color: #0082c9;
}

.bg-primary {
    background-color: #0082c9 !important;
    opacity: 1;
    color: white;
    text-align: center;
}

.badge-light {
    background-color: rgb(246, 248, 250);
    opacity: 1;
    color: #0082c9 !important;
}


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