client/src/components/Navbar.scss
author salimr <riwad.salim@yahoo.fr>
Wed, 29 Aug 2018 11:02:36 +0200
changeset 150 97536386b397
parent 148 fcce52a159bc
child 151 57d63a248f0d
permissions -rw-r--r--
Improve Modals display and sessions list

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

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

#brand {
    margin-top: 5px;
    font-size: 30px;
}

.navbar-nav .navs, .navbar-right .navs {
    font-size: 20px;
    margin-top: 7px;
    background-color: #769FED;
}

.navbar-right .navs:focus {
    background-color: #769FED;
}

#sync-button {
    margin-top: 7px;
}

#groups {
    color: #769FED;
    font-size: 18px;
    font-weight: bold;
    background-color: white;
}

.navs .user-dropdown {
    font-size: 18px;
    font-weight: bold;

}

.ReactModal__Overlay {
    margin-top: 5%;
}

.modal-footer .btn {
    margin-top: 40px;
    padding: 16px;
    font-weight: bold;
}

#logout-modal{
    padding-top: 2%;
    margin-top: 20%;

    -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{
    margin-top: -2.5%;
    margin-right: -1%;
    background-color: transparent;
    border: transparent;
}

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

.modal-text{
    margin-top: 10%;
    font-size: 16px;
    font-weight: 500;
}

.modal-warning{
    color:#F95B5B;
    font-size:60px;
    padding:0;
    margin-top: 5%;
    margin-right: -5%;
}

#logout-modal-button {
    padding: 1.5%;
    margin-top: 5%;
    margin-right: 40%;
    width: 20%;
    font-size: 14px;
}

.modal-footer{
    border: white;
}