Blame view

app/static/css/style.css 1.53 KB
e90be54b   hitier   Copyright footer ...
1
html {
69488a56   hitier   Styling vertical ...
2
3
    position: relative;
    min-height: 100%;
e90be54b   hitier   Copyright footer ...
4
}
e5230891   hitier   Add bootstrap imp...
5
6

.footer {
69488a56   hitier   Styling vertical ...
7
8
9
10
11
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
    margin-bottom: 35px;
e5230891   hitier   Add bootstrap imp...
12
13
}

e5230891   hitier   Add bootstrap imp...
14
.sidebar {
69488a56   hitier   Styling vertical ...
15
16
17
18
19
20
21
    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...
22
}
e90be54b   hitier   Copyright footer ...
23

e5230891   hitier   Add bootstrap imp...
24
.sidebar .nav-link {
69488a56   hitier   Styling vertical ...
25
26
    font-weight: 500;
    color: #333;
e5230891   hitier   Add bootstrap imp...
27
}
69488a56   hitier   Styling vertical ...
28

c7737881   hitier   Update v-nav menu...
29
30
31
32
33
34
35
36
37
38
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...
39
nav.sidebar a:hover {
69488a56   hitier   Styling vertical ...
40
41
42
    background-color: lightgrey;
}

92c69b78   hitier   Fix main margin o...
43
nav.sidebar a {
69488a56   hitier   Styling vertical ...
44
45
46
47
    color: black;
    text-decoration: none;
}

92c69b78   hitier   Fix main margin o...
48
nav.sidebar a.disabled {
69488a56   hitier   Styling vertical ...
49
50
51
52
    /* Make the disabled links grayish*/
    color: lightgrey;
    /* And disable the pointer events */
    pointer-events: none;
d2dcb89e   hitier   Styling pages sub...
53
54
55
}

.sub-header {
b67392d8   hitier   Tweak subtitle
56
    margin-bottom: 50px;
92c69b78   hitier   Fix main margin o...
57
58
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd
d2dcb89e   hitier   Styling pages sub...
59
}
f18213fd   hitier   New PDC_SITE_CLAS...
60

ef5fae02   Anais Amato   Update navbar sho...
61
62
63
64
.sublink_activate {
    border-left: 5px solid #00c5ff;;
    background-color: #e3e3e3;
}
8105f7da   hitier   Persite css icon ...
65
66
/* -- - - - - - - - - -  per site icon settings - - - - - - - - - -- */

f18213fd   hitier   New PDC_SITE_CLAS...
67
68
69
.admin-icon {
    filter: hue-rotate(300deg) saturate(1000%);
}
8105f7da   hitier   Persite css icon ...
70
71
72
73
74
75
76
77
78
79
80
81
82

.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...
83
84
85
86
87
88
89
90

/* Update the navbar for small screens. Replace bootstrap css for small screens only */
@media (max-width: 600px) {
    .sidebar {
        position: static !important;
        margin-top: 0px !important;
    }
}