/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  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;
}

/**/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: Microsoft JhengHei;
  background-repeat: no-repeat;
  background-image: linear-gradient(174deg, #FFD370 2%, #FFD370 46%, #FFFFFF 46%, #FFFFFF 100%, #E8E8E8 100%);
  background-attachment: fixed;
  letter-spacing: 0.7px;
}

.mb-8 {
  margin-bottom: 8px;
}

.container {
  width: 500px;
  margin: 0 auto;
}

.title {
  margin-top: 20px;
  text-align: center;
  font-size: 24px;
  color: #333333;
  font-weight: bold;
  margin-top: 48px;
  margin-bottom: 26px;
}

.addInput {
  width: 500px;
  position: relative;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.addInput .todo {
  width: 100%;
  border: none;
  border-radius: 10px;
  outline: none;
  padding: 15px 20px;
}
.addInput .addTodoList {
  background: #333333;
  color: white;
  position: absolute;
  padding: 10px;
  top: 5px;
  right: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.content {
  border-radius: 10px;
  background: white;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
}
.content .content-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.content .content-filter .filter {
  display: block;
  color: #9F9A91;
  text-decoration: none;
  padding: 16px 63px;
  text-align: center;
  font-size: 14px;
}
.content .content-filter .filter:hover, .content .content-filter .active {
  color: #333333;
  border-bottom: 2px solid black;
}
.content .content-todoList {
  margin: 16px 24px;
}
.content .content-todoList li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  line-height: 24px;
  margin: 5px auto;
}
.content .content-todoList li p {
  width: 90%;
  padding: 5px 15px;
  border-bottom: 1px solid #EFEFEF;
  cursor: default;
}
.content .content-todoList li .square, .content .content-todoList li .check, .content .content-todoList li .cross {
  font-size: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  display: block;
  cursor: pointer;
}
.content .content-todoList li .check {
  color: #FFD370;
}
.content .content-todoList li .cross {
  display: none;
}
.content .content-todoList li:hover .cross {
  display: block;
}
.content .content-todoList .isCheck p {
  text-decoration: line-through;
  color: rgba(51, 51, 51, 0.3);
}
.content .content-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 24px;
}
.content .content-footer .content-footer li {
  font-size: 14px;
}
.content .content-footer .deleteIsDoneItem {
  color: #9F9A91;
  cursor: pointer;
}

.deleteIsDoneItem {
  color: #9F9A91;
  cursor: pointer;
}