/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 12 Feb, 2021, 12:07:06 PM
    Author     : jaydip
*/
body {
    background-image: url('../images/bg2.jpg');
    margin: 0;
    padding: 0;
}
#container {
    margin-top: 50px;
}
.logo {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
}
.task-form-container {
    margin-top: 30px;
}
.form-body {
    background-image: url('../images/paper.png');
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    padding: 10px 10px 10px 50px;
    background-size: cover;
}
.form-body input,.form-body input:focus, .form-body textarea {
    width: 100%;
    background: transparent;
    border:none;
}
.form-body textarea {
    resize: none;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color:    #000;
}

#btnSubmit {
    width: 100px;
    display: block;
    margin: 0 auto;
    margin-top: 5px;
}
.task-list-container {
    padding-top: 40px;
    border-top: 5px solid;
    background-color: rgba(0, 0, 0, 0.5);
    display: inline-block;
    width: 100%;
}
.task-single {
    background-image: url('../images/note.png');
    width: 249px;
    height: 327px;
    margin: 0 20px;
    position: relative;
    float: left;
}
.task-inner {
    padding: 60px 0 0 25px;
}
.task-inner p {
    margin: 0;
}
.close {
    background-color: #000;
    color: #fff;
    position: absolute;
    right: 0;
    border-radius: 15px;
    width: 20px;
    height: 20px;
    text-align: center;
    cursor: pointer;
}
.task-title {
    max-height: 18px;
}
.task-description {
    max-height: 200px;
    overflow-y: auto;
    width: 95%;
}

@media only screen and (max-width: 600px) {
    .form-body, .logo {
        width: 80%;
    }
    .task-single {
        margin: 0 auto;
        display: block;
        margin-bottom: 20px;
        float: none;
    }
}
