summaryrefslogtreecommitdiff
path: root/assets/css/src/header.css
blob: 98b696b2370e0cc7935e90a7372296eefc640de2 (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
57
58
59
60
61
62
63
64
65
66
67
68
header {
    display: flex;
    flex-wrap: wrap;
    padding: 5px 10px;
    margin-bottom: 5px;
    border-bottom: 1px solid #dedede;
    background-color: #fbfbfb
}

header .title-container {
    flex: 1;
    min-width: 300px
}

@media (max-width: 480px) {
    header .title-container {
        order: 3
    }
}

header .board-selector-container {
    min-width: 320px;
    display: flex;
    align-items: center
}

@media (max-width: 480px) {
    header .board-selector-container {
        order: 2;
        min-width: 300px
    }
    header .board-selector-container input[type=text] {
        max-width: 280px
    }
}

header .menus-container {
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-end
}

@media (max-width: 480px) {
    header .menus-container {
        order: 1;
        margin-bottom: 5px;
        margin-left: auto
    }
}

header h1 {
    font-size: 1.5em
}

header h1 .tooltip {
    opacity: 0.3;
    font-size: 0.7em
}

a i.web-notification-icon {
    color: var(--link-color-primary);
}

a i.web-notification-icon:focus,
a i.web-notification-icon:hover {
    color: #000
}