client/src/components/Navbar.scss
author salimr <riwad.salim@yahoo.fr>
Mon, 03 Sep 2018 20:02:14 +0200
changeset 154 a28361bda28c
parent 151 57d63a248f0d
child 161 a642639dbc07
permissions -rw-r--r--
Adapt all css classes with Bootstrap 4 Utilities

.sync-button-synchronizing {
    color: lightgreen;
}

.sync-button-not-synchronized {
    color: white;
}

.username#navbarDropdown {
    font-size: 24px;
}

.nav-link {
    font-size: 20px;
}

.dropdown-toggle{
    cursor: pointer;
}

.dropdown-item {
    font-size: 18px;
    cursor: pointer;
}

#group-menu-scroll-down {
    height: auto;
    max-height: 800%;
    overflow-y: scroll;
}

.create-group {
    font-size: 14px;
}

.nav-link .dropdown-toggle .username .font-weight-bold {
    font-size: 18px;
}

#logout-modal{
    -webkit-animation: fadein 0.5s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 0.5s; /* Firefox < 16 */
        -ms-animation: fadein 0.5s; /* Internet Explorer */
         -o-animation: fadein 0.5s; /* Opera < 12.1 */
            animation: fadein 0.5s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

#logout-close-modal-button{
    background-color: transparent;
    border: transparent;
    color: rgba(#769FED, .4);
    cursor: pointer;
}

#logout-close-modal-button:hover{
    background-color: transparent;
    border: transparent;
    color:black;
}

.modal-warning{
    color:#F95B5B;
    font-size:60px;
}

#logout-modal-button {
    font-size: 14px;
}