summaryrefslogtreecommitdiff
path: root/Pages/Shared/_Layout.cshtml.css
blob: 5b2f26ea9cdb036a73b917716a24f413f2a71a16 (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
div#navbar {
    background: var(--col-navbar-bg);
    box-shadow: rgba(0, 0, 0, 0.5) 0px 10px 10px;
    display:    flex;
}

div#navbar > a {
    color:   white;
    display: inline-block;
    padding: 20px 20px 20px 20px;
}

div#navbar > a:hover {
    background: rgba(255, 255, 255, 0.4);
    filter:     none;
}

div#navbar > a:active {
    background: #fff;
    color:      var(--col-navbar-bg);
}

div#navbar > input {
    align-self:    center;
    background:    var(--col-bg);
    border-radius: 0;
    color:         white;
    height:        40px !important;
    margin:        0 20px 0 auto;
    font-size:     12pt;
    min-width:     30%;
}

#content {
    flex: 1 1 calc(100vh - 119px);
}