summaryrefslogtreecommitdiff
path: root/css/header.css
blob: 7227fa14cdb1cf9c0b5761d721b2f3b621bf3106 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#frame-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .175);
    background-color: rgba(0, 0, 0, .02);
    transition: background-color 200ms;
    overflow: auto;
    padding: 10px;
    display: flex;
    align-items: center;
    height: 24px;
    font-size: 20px;
    font-weight: 600;
}

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