@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  background: transparent; }

body {
  line-height: 1.5; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

ol, ul, dl, dt, dd {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

button, input {
  cursor: pointer;
  overflow: visible; }

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

optgroup {
  font-weight: bold; }

[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  padding: 0; }

svg:not(:root) {
  overflow: hidden; }

input, button, select, textarea {
  outline: none; }

*:focus {
  outline: none; }

/*--------------------------------------------------------------------------------------------------------------------------------------------------------*/
html, body {
  width: 100%;
  height: 100%;
  min-width: 320px; }

html {
  font-family: Helvetica,arial,Microsoft JhengHei,"微軟正黑體",sans-serif;
  font-size: 16px; }

body {
  font-size: 1rem;
  background-color: #f7f7f7;
  -webkit-text-size-adjust: none; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1rem 0;
  padding: 0; }

.clear {
  clear: both; }

/*--------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*- - minxin - -*/
/*- - Layout - -*/
.container {
  width: 100%;
  padding-top: 150px;
  box-sizing: border-box; }

.todo-wrapper {
  width: 500px;
  box-sizing: border-box;
  margin: 0px auto;
  background-color: white;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px; }
  .todo-wrapper .todo-header {
    position: relative;
    width: 100%;
    height: 200px;
    box-sizing: border-box;
    background-image: url(../images/banner.jpeg);
    background-size: cover;
    padding: 10px;
    padding-top: 50px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px; }
    .todo-wrapper .todo-header time {
      position: relative;
      color: white;
      display: block;
      overflow: auto;
      box-sizing: border-box;
      font-size: 18px; }
      .todo-wrapper .todo-header time .day {
        float: left;
        font-size: 60px;
        margin-right: 12px; }
      .todo-wrapper .todo-header time .dayofweek {
        display: block;
        margin-top: 16px; }
    .todo-wrapper .todo-header .add-btn {
      position: absolute;
      right: 20px;
      bottom: -20px;
      width: 40px;
      height: 40px;
      background-color: #ff3c41;
      text-align: center;
      line-height: 40px;
      color: white;
      cursor: pointer;
      box-shadow: 0 0 13px #ff3c41;
      z-index: 999;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      border-radius: 50%; }
  .todo-wrapper .todo-report {
    box-sizing: border-box;
    padding: 15px; }
    .todo-wrapper .todo-report h2 {
      color: #333; }
    .todo-wrapper .todo-report p {
      color: #999; }
  .todo-wrapper .todo-list .todo-item {
    position: relative;
    padding: 15px 20px;
    border-top: 1px solid #999; }
    .todo-wrapper .todo-list .todo-item .todo-action {
      position: absolute;
      right: 20px;
      top: 12px;
      cursor: pointer; }
      .todo-wrapper .todo-list .todo-item .todo-action .more span {
        display: inline-block;
        width: 5px;
        height: 5px;
        background-color: #DADADA;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%; }
      .todo-wrapper .todo-list .todo-item .todo-action .action-list {
        position: absolute;
        left: -80px;
        top: 20px;
        display: none;
        width: 80px;
        padding: 10px;
        background-color: white;
        border: 1px solid #999;
        color: #333;
        z-index: 999;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        border-radius: 5px; }
        .todo-wrapper .todo-list .todo-item .todo-action .action-list li {
          margin: 2px auto; }
    .todo-wrapper .todo-list .todo-item input {
      width: 80%;
      border: none;
      cursor: text; }

.label {
  display: inline-block;
  float: left;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  margin-top: 4px;
  cursor: pointer;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%; }
  .label .label-popup {
    position: absolute;
    left: 20px;
    top: 45px;
    display: none;
    width: 150px;
    background-color: white;
    padding: 10px;
    border: 1px solid #999;
    z-index: 999;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px; }
    .label .label-popup li {
      color: white;
      font-weight: 700;
      padding: 5px;
      margin: 5px auto;
      text-align: center;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      border-radius: 5px; }
    .label .label-popup .important {
      background-color: #ff3c41; }
    .label .label-popup .normal {
      background-color: #37EAA0; }
    .label .label-popup .other {
      background-color: #3772FD; }

.taskDone {
  color: #999; }

.label.normal {
  background-color: #37EAA0; }

.label.important {
  background-color: #ff3c41; }

.label.other {
  background-color: #3772FD; }

.label-popup.show, .action-list.show {
  display: block !important; }

/*# sourceMappingURL=style.css.map */
