client/src/components/SessionList.scss
author salimr <riwad.salim@yahoo.fr>
Fri, 31 Aug 2018 15:14:18 +0200
changeset 151 57d63a248f0d
parent 150 97536386b397
child 154 a28361bda28c
permissions -rw-r--r--
Update to Bootstrap 4

.top-fade {
    width: max-content;
    height: 80px;
}

a.sessions{
    cursor: pointer;
}

.session {
    padding-top: 5%;
    padding-bottom: 1%;
    padding-left: 5%;
}

span.session-title {
    font-size: 20px;
    font-weight: 600;
}

span.session-description {
    font-size: 12px;
    font-weight: 500
}
span.session-date {
    font-size: 13px;
    font-weight: 700;
}

#toggle-edit {
    padding-top:-20%;
}

.edit{
    font-size: 17px;
}

.delete{
    font-size: 16px;
}

#delete-session-modal{
    padding-top: 2%;
    margin-top: 30%;

    -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; }
}

#delete-session-close-modal-button{
    margin-top: -2.5%;
    margin-left: 92%;
    background-color: transparent;
    border: transparent;
    color: rgba(#769FED, .4);
}

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

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

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