body
{
    background-image: url(images/tile.jpg);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif ;
}

body::-webkit-scrollbar {
    width: 20px;
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    background: white ;
    background-image: url(images/scrollerbg.jpg) ;
    background-position-x: -10px ;
    
}
 
body::-webkit-scrollbar-thumb {
    background-image: url('images/scroller-thunb-bg.jpg');
    border-radius: 10px;
    border: 2px solid black;
}

body::-webkit-scrollbar-thumb:hover {
    border: 3px solid black ;
    background-image: url('images/scroller-thunb-bg.jpg');
}

body::-webkit-scrollbar-thumb:active {
    border: 3px inset black;
    background-image: url('images/scroller-thunb-bg.jpg');
}

#title
{
    display: block ;
    margin: 0px auto ;
    margin-top: 30px;
}

#taskForm
{
    display: block ;
    margin: 30px auto ;
    margin-top: 15px ;
    min-height: 200px ;
    font-size: 16px ;
    width: 70% ;
    min-width: 30%;
    max-width: 745px ;
    padding: 10px;
    border: 1px solid black ;
    background-image: url("images/formbg.jpg") ;
}

.formValues
{
    font-weight: bold ;
}

.inputs
{
    background-image: url('images/notebg.png');
    border: 0px ;
    border-left: 3px solid rgba(255, 0, 0, 0);
    width: 65%;
    color: grey ;
    max-width: 580px ;
    margin: 7px 0 1px 30px ;
    background: rgba(255, 0, 0, 0);
    text-align: left;
    display: inline-flex ; 
    transition: border-color .2s ease-out;
    direction: ltr;
}

.inputs:invalid{
    color: red ;
}

.inputs:focus:invalid
{
    color: red ;
    font-weight: bold ;
}

.inputs:focus:valid
{
    color: green ;
    font-weight: bold ;
}

#detailsLine
{
    display: inline-block;
    vertical-align: top;
}

#textarea
{
    margin-left: 15px ;
    min-height: 68px;
    width: 60%;
    margin-top: 0px;
    margin-bottom: 0px;
    display: inline-block;
}

#saveButton
{
    height: 30px ;
    width: 25% ;
    min-width: 150px ;
    margin-left: 70px ;
    margin-top: -10px ;
    display: inline-block;
}

#saveButton:hover
{
    background: yellow ;
}


.errors
{
    color: red ;
    margin-left: 75px ;
    font-weight: bold;
    visibility: hidden;
}

#formERR
{
    color: red ;
    margin-left: 75px ;
    font-weight: bold;
    display: none ;
}

#textERR
{
    margin-bottom: 5px ;
}

.formClass
{
    display: block ;
    margin: 30px auto ;
    margin-top: 15px ;
    min-height: 200px ;
    font-size: 16px ;
    width: 70% ;
    min-width: 30%;
    max-width: 745px ;
    padding: 10px;
    border: 1px solid black ;
    background-image: url("images/formbg.jpg") ;
}

.container
{
    margin-bottom: 75px ;
}
.noteDivFrame
{
    background-image: url('images/notebg.png');
    width: 200px ;
    min-width: 200px;
    height: 250px;
    margin: 10px ;
    display: inline-block ;
    font-family: 'Actor';
    font-size: 16px;
    animation: fadein 300ms;
    background-repeat: no-repeat;
    padding-top: 30px ;
    padding-left: 5px ;
}

@keyframes fadein{
    from {
        opacity: 0} 
    to {
        opacity: 1;
    }
}
@keyframes fadeout{
    from {
        opacity: 1} 
    to {
        opacity: 0;
    }
}


.noteTextArea
{
    height: 150px ;
    max-height: 150px ;
    margin-bottom: 5px ;
    border: 0px ;
    background: #feff99;
    resize: none ;
    width: 90% ;
}

.noteTextArea::-webkit-scrollbar {
    width: 10px;
}

.noteTextArea::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
    background: rgb(255,196,0);
}
 
.noteTextArea::-webkit-scrollbar-thumb {
    background: #feff99;
    border-radius: 10px;
    border: 1px solid black;
}

.noteTextArea::-webkit-scrollbar-thumb:hover {
    background: #ffe89a;
}

.noteTextArea::-webkit-scrollbar-thumb:active {
    background:#feff99;
}

.noteDateRow
{
    width: 100% ;
    height: 22px ;
    margin: 0px ;
    font-weight: bold ;
}

.noteTimeRow
{
    width: 100% ;
    height: 22px ;
    margin: 0px ;
    font-weight: bold ;
}

.glyphicon-trash::before
{
    color: red ;
    transform: scale(2,2);
    position: absolute ;
    bottom: 200px ;
    left: 130px;
    display: none;
    animation: fadein 500ms;
}

@keyframes fadein{
    from {
        opacity: 0} 
    to {
        opacity: 1;
    }
}


.noteDivFrame:hover .glyphicon-trash::before
{
    display: block ;
}

footer
{
    width: 100% ;
    margin-top: 20px ;
    padding: 10px ;
    background-color: grey ;
    background-image: url('images/footerbg.jpg');
    background-size: cover ;
    color:white   ;
    font-size: 18px ;
    font-weight: bold ;
    text-shadow: 5px 5px 5px black ;
}

#credit
{
    color: gold ;
}

#credit:hover
{
    color: red ;
    font-weight: bold ;
}

.glyphicon-remove
{
    float: right ;
    margin-top: 5px ;
    margin-right: 5px ;
    transform: scale(1.25,1.25);
    text-shadow: 1px 1px 6px black ;

}

.glyphicon-remove:hover
{
    color: red ;
}


@media screen and (max-width: 710px) {
    .noteDivFrame.col-sm-2{

width: 180px ;
min-width: 180px;
height: 225px ;
    }   
    .noteTextArea
    {
        height: 135px ;
    }
    .glyphicon-trash::before
{
    bottom: 180px ;
    left: 130px;
    display: block ;

}
}

@media screen and (max-width: 450px) {
    .noteDivFrame.col-sm-2{

width: 170px ;
min-width: 170px;
height: 213px ;
    }   
    .noteTextArea
    {
        height: 120px ;
    }
    .glyphicon-trash::before
    {
        bottom: 175px ;
        left: 130px;
        display: block ;
        transform: scale(1.5,1.5);
    }
}

@media screen and (max-width: 380px) {
    .noteDivFrame.col-sm-2{

width: 150px ;
min-width: 150px;
height: 187px ;
    }   
    .noteTextArea
    {
        height: 100px ;
    }
    .glyphicon-trash::before
    {
        bottom: 155px ;
        left: 110px;
        display: block ;
        transform: scale(1.5,1.5);
    }
}

@media screen and (max-width: 360px) {
    .noteDivFrame.col-sm-2{

width: 320px ;
min-width: 250px;
height: 400px ;
background-size: cover ;
font-size: 18px ;

    }   
    .noteTextArea
    {
        height: 270px ;
        max-height: 270px ;
        font-size: 32px ;

    }
    #textarea
    {
        margin-left: 70px ;
        margin-top: -30px; 
    }
    #saveButton
    {
        width: 180px ;
        min-width: 100px ;
        height: 40px ;
        margin: 0 0 15px 60px ;
    }
    .inputs
    {
        width: 50% ;
    }
    .formValues
    {
        font-size: 17px ;
    }
    #taskForm
    {
        width: 90% ;
    }
    .glyphicon-trash::before
    {
        bottom: 310px ;
        left: 235px;
        display: block ;
        transform: scale(2,2);
    }
}

/* Created by Omri Edri May 2018 */