client/src/components/Navbar.scss
author salimr <riwad.salim@yahoo.fr>
Tue, 09 Oct 2018 10:52:23 +0200
changeset 162 1fd73fdaf4c6
parent 161 a642639dbc07
child 167 1f340f3597a8
permissions -rw-r--r--
Add ReadOnlySession component and message when session list is empty

.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{
    font-size: 4rem;
}

#logout-modal-button {
    font-size: .9rem;
}