summaryrefslogtreecommitdiff
path: root/css/navigation.css
blob: 2be100e9e4e809f916a0bc9d2b3d9f0f7a2523a7 (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
#navigation-outer {
    position: fixed;
    top: 0;
    bottom: 56px;
    left: 0;
    border-right: 1px solid rgba(0, 0, 0, .175);
    background-color: rgba(0, 0, 0, .02);
    transition: background-color 200ms;
    width: calc(64px - 32px);
    overflow: auto;
    padding: 16px;
    display: flex;
    align-items: center;
}

#navigation {
    width: 100%;
}

#navigation-outer:hover {
    background-color: rgba(0, 0, 0, .03);
}

.navigation-item {
    display: block;
    text-align: center;
    margin: 0 -16px;
    padding: 12px;
}

.navigation-item:hover .navigation-item-icon {
    opacity: .5;
}

.navigation-item:active .navigation-item-icon {
    opacity: .25;
}

#navigation-about {
    text-align: center;
    padding-bottom: 12px;
    margin: 0 -16px;
    display: block;
}

#navigation-about-icon {
    width: 32px;
}

#navigation-about:hover #navigation-about-icon {
    opacity: .75;
}

#navigation-about:active #navigation-about-icon {
    opacity: .5;
}