/**
 * @file styles/header.css
 *
 * Copyright (c) 2018-2018 Arkadiusz Adamski
 * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
/* 

/* Top menu */
.top-menu-logo {
    font-size:2.0em;
    color: rgba(0,0,0,0.3);;
}
.top-menu-logo :hover{
    text-decoration: none;
    color: rgba(0,0,0,0.3);
}

.task_count {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 0.5em;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    line-height: 20px;
    text-align: center;
    font-size: 12px;
    /* helps visually center the number*/
}
.top-menu {
    background-color: #aaaaaa; 
    padding-top: 0px;
    padding-bottom: 0px;
    /* height: 40px; */
}

.nav-item > a:hover {
    background-color: #007bff;
    color: #FFFFFF;
}

.dropdown-menu > a:hover {
    background-color: #007bff;
    color: #FFFFFF;
}

