Blame view

app/static/css/style.css 2.83 KB
5aabd083   hitier   Insert descriptio...
1
2
3
4
5
6
7
8
9
10
/* Update the navbar for small screens. Replace bootstrap css for small screens only */
@media (max-width: 768px) {
    .sidebar {
        position: static !important;
        margin-top: 0px !important;
    }
}

@media (min-width: 1670px) {
    .sidebar {
96346598   hitier   Insert descriptio...
11
        max-width: 12.499999995%;
5aabd083   hitier   Insert descriptio...
12
    }
96346598   hitier   Insert descriptio...
13
}
5aabd083   hitier   Insert descriptio...
14
15
/*  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

e90be54b   hitier   Copyright footer ...
16
html {
69488a56   hitier   Styling vertical ...
17
18
    position: relative;
    min-height: 100%;
e90be54b   hitier   Copyright footer ...
19
}
e5230891   hitier   Add bootstrap imp...
20
21

.footer {
69488a56   hitier   Styling vertical ...
22
23
24
25
26
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
    margin-bottom: 35px;
e5230891   hitier   Add bootstrap imp...
27
28
}

e5230891   hitier   Add bootstrap imp...
29
.sidebar {
69488a56   hitier   Styling vertical ...
30
31
32
33
34
35
36
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100; /* Behind the navbar */
    padding: 0;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
e5230891   hitier   Add bootstrap imp...
37
}
e90be54b   hitier   Copyright footer ...
38

e5230891   hitier   Add bootstrap imp...
39
.sidebar .nav-link {
69488a56   hitier   Styling vertical ...
40
41
    font-weight: 500;
    color: #333;
e5230891   hitier   Add bootstrap imp...
42
}
69488a56   hitier   Styling vertical ...
43

c7737881   hitier   Update v-nav menu...
44
45
46
47
48
49
50
51
52
53
li.nav-item li.nav-item a {
    margin: 0;
    padding: 0.2em;
}

li.nav-item li.nav-item {
    list-style: none;
    padding: 0;
}

92c69b78   hitier   Fix main margin o...
54
nav.sidebar a:hover {
69488a56   hitier   Styling vertical ...
55
56
57
    background-color: lightgrey;
}

f6572d7d   Anais Amato   Fix menu sidebar ...
58
59
60
61
nav.sidebar ul {
    width: 100%;
}

92c69b78   hitier   Fix main margin o...
62
nav.sidebar a {
69488a56   hitier   Styling vertical ...
63
64
65
66
    color: black;
    text-decoration: none;
}

92c69b78   hitier   Fix main margin o...
67
nav.sidebar a.disabled {
69488a56   hitier   Styling vertical ...
68
69
70
71
    /* Make the disabled links grayish*/
    color: lightgrey;
    /* And disable the pointer events */
    pointer-events: none;
d2dcb89e   hitier   Styling pages sub...
72
73
74
}

.sub-header {
b67392d8   hitier   Tweak subtitle
75
    margin-bottom: 50px;
92c69b78   hitier   Fix main margin o...
76
77
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd
d2dcb89e   hitier   Styling pages sub...
78
}
f18213fd   hitier   New PDC_SITE_CLAS...
79

ef5fae02   Anais Amato   Update navbar sho...
80
81
82
83
.sublink_activate {
    border-left: 5px solid #00c5ff;;
    background-color: #e3e3e3;
}
5aabd083   hitier   Insert descriptio...
84

8105f7da   hitier   Persite css icon ...
85
86
/* -- - - - - - - - - -  per site icon settings - - - - - - - - - -- */

f18213fd   hitier   New PDC_SITE_CLAS...
87
88
89
.admin-icon {
    filter: hue-rotate(300deg) saturate(1000%);
}
8105f7da   hitier   Persite css icon ...
90
91
92
93
94
95
96
97
98
99
100
101
102

.public-icon {
    filter: saturate(200%);
    /* hue-rotate(300deg) */
}

.dev-icon {
    filter: hue-rotate(200deg) saturate(1000%);
}

.dev2-icon {
    filter: hue-rotate(100deg) saturate(1000%);
}
a1b5d9b0   Anais Amato   Add responsive me...
103

5aabd083   hitier   Insert descriptio...
104
/*  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
f6572d7d   Anais Amato   Fix menu sidebar ...
105

5aabd083   hitier   Insert descriptio...
106
107
108
109
.card {
    border: solid black 1pt;
    margin-bottom: 3em;
    border-radius: 0;
96346598   hitier   Insert descriptio...
110
111
112
113
}

dl.agent {
    line-height: 1.2;
715c0527   Anais Amato   Make tables sorta...
114
115
}

b3cb00e4   Anais Amato   Make tables expor...
116
/* Datatables modifications */
715c0527   Anais Amato   Make tables sorta...
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
.dataTables_wrapper {
    margin-top: 50px;
}

table.dataTable thead .sorting {
    background-image:url("/static/lib/datatables-1.10.24/img/sort_both.png") !important;}
table.dataTable thead .sorting_asc {
    background-image:url("/static/lib/datatables-1.10.24/img/sort_asc.png") !important;}
table.dataTable thead .sorting_desc{
    background-image:url("/static/lib/datatables-1.10.24/img/sort_desc.png") !important;}
table.dataTable thead .sorting_asc_disabled{
    background-image:url("/static/lib/datatables-1.10.24/img/sort_asc_disabled.png") !important;}
table.dataTable thead .sorting_desc_disabled{
    background-image:url("/static/lib/datatables-1.10.24/img/sort_desc_disabled.png") !important;}

.dataTables_filter {
    float: left !important;
b3cb00e4   Anais Amato   Make tables expor...
134
135
136
137
}

.dt-buttons {
    float: right !important;
f6572d7d   Anais Amato   Fix menu sidebar ...
138
}