addschedule.html 4.1 KB
<!DOCTYPE html>
<html lang="en">
<head>

    <meta charset="UTF-8">
    <meta name="viewport"content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no"/>
    <link rel="stylesheet" href="https://at.alicdn.com/t/font_1023063_nmm3lvfv97l.css">
    <script src="js/base.js" type="text/javascript"></script>

    <title>添加至日程</title>
    <style>
        html,body{padding: 0;margin: 0;height:100%;background: #fff}
        .creattask{height:100%;display: flex;display:-ms-flex;display:-webkit-flex;    flex-direction: column;}

        .entercontent{
            padding: 0 0.31rem;
        }

        .entercontent{flex:1;
            -ms-flex:1;
            -webkit-flex:1;

        }
        .contenttext{
            height:6rem;
            background:rgba(255,255,255,1);
            box-shadow:0px 5px 12px 0px rgba(143,143,143,0.1);
            border-radius:0.1rem;
        }
        .addtaskbtn{
            width:7.5rem;
            height:0.8rem;
            background:#2C82E6;
            color:#fff;
            font-size: 0.3rem;
            text-align: center;
            line-height: 0.8rem;

        }
        .tasktitle{
            border-bottom: 1px solid #f5f5f5;
            height:0.9rem;
            font-size: 0;
            width:6.5rem;
            margin: 0 auto;
        }
        .titlename{
            outline: none;
            border:none;
            height:0.8rem;
            width:6.5rem;
            margin: 0 auto;
            color:#999999;
            font-size: 0.26rem;
        }
        .taskcontent{
            margin-top: 0.26rem;
            /*border-bottom: 1px solid #f5f5f5;*/
            position: relative;
        }
        .create{
            position:absolute;
            right:0.4rem;
            bottom:0rem;
            width:1rem;
            height:0.4rem;
            background:rgba(192,44,44,0);
            border:1px solid rgba(232, 232, 232, 1);
            border-radius:0.2rem;
            color:#333333;
            text-align: center;
            font-size: 0.24rem;
        }
        .addtaskbtn{

        }
        .taskcontent{
            width:6.5rem;
            margin: 0 auto;
            height:4.6rem;
        }
        .contentname{
            width:6.5rem;
            margin: 0 auto;
            height:4.18rem;
            color:#999999;
            font-size: 0.26rem;
            border:none;
            outline:none;
            padding-top: 0.26rem;

        }
        .tasklist{
            display:flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 0.67rem;
        }
        .taskdate{
            display:flex;
            justify-content: center;
            align-items: center;
            width:3.22rem;
            height:1.5rem;
            background:rgba(255,255,255,1);
            box-shadow:0px 5px 12px 0px rgba(143,143,143,0.1);
            border-radius:0.1rem;
        }
        .taskimg{
            width:0.65rem;
            height:0.6rem;
            font-size: 0;
        }
        .taskimg img{
            width:100%;
            height:100%;
        }
        .taskdatenaem{
            color:#333333;
            font-size: 0.3rem;
            font-weight: bold;
        }
        .taskdatetime{
            color:#333333;
            font-size: 0.26rem;
            margin-top: 0.05rem;
            width:1.5rem;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;

        }
        .tasklistitem{
            margin-left: 0.23rem;

        }

    </style>
</head>
<body>
<div class="creattask">
    <div class="entercontent">

        <div class="contenttext">
            <div class="tasktitle">
                <input type="text" placeholder="任务标题" class="titlename">
            </div>
            <div class="taskcontent">
                <textarea name="" id="" cols="30" rows="10" class="contentname" placeholder="任务描述"></textarea>


            </div>
        </div>


    </div>

    <div class="addtaskbtn">添加至日程</div>
</div>
</body>
</html>