Blame view

app/static/css/style.css 795 Bytes
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

92c69b78   hitier   Fix main margin o...
29
nav.sidebar a:hover {
69488a56   hitier   Styling vertical ...
30
31
32
    background-color: lightgrey;
}

92c69b78   hitier   Fix main margin o...
33
nav.sidebar a {
69488a56   hitier   Styling vertical ...
34
35
36
37
    color: black;
    text-decoration: none;
}

92c69b78   hitier   Fix main margin o...
38
nav.sidebar a.disabled {
69488a56   hitier   Styling vertical ...
39
40
41
42
    /* Make the disabled links grayish*/
    color: lightgrey;
    /* And disable the pointer events */
    pointer-events: none;
d2dcb89e   hitier   Styling pages sub...
43
44
45
}

.sub-header {
b67392d8   hitier   Tweak subtitle
46
    margin-bottom: 50px;
92c69b78   hitier   Fix main margin o...
47
48
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd
d2dcb89e   hitier   Styling pages sub...
49
}