/* VueWTodoCLE.css - Web-based version of sample plain HTML Vue Todo List app by Chris Emejuru*/

/* Home & App components */
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body{
  font-family: "Lucida Sans Unicode",Arial,Helvetica,sans-serif;
  line-height: 1.4;
}
.btn{
  display: inline-block;
  border: none;
  background: #555;
  color: #fff;
  padding: 7px 20px;
  cursor: pointer;
}
.btn:hover{background:#666;} 
/*-------------------------------------------------*/


/* About component */
ol.about{
  margin-left: 10px;
  margin-right: 5px;
  padding-left: 15px;
}
/*-------------------------------------------------*/


/* Header component */
.header{
  background: #339;
  color: #fff;
  text-align: center;
  padding: 10px;
}
.header a{color: #fff; padding-right: 5px; text-decoration:none;}
/*-------------------------------------------------*/

.selectiontext{padding-left: 50px; }
.selection{text-align: left;}
#nav{ 
  justify-content: center;
  display: flex;
  text-align: center; 
  align-items: center;
}
/*-------------------------------------------------*/

/*TodoItem component*/
.todo-item{
  background: #f4f4f4;
  padding: 10px;
  border-bottom: 1px #ccc dotted;
}
.is-complete{text-decoration: line-through;}
.del{
  background: #f00;
  color: #fff;
  border: none;
  padding: 5px 9px;
  border-radius: 50%;
  cursor: pointer;
  float: right;
}
/*-------------------------------------------------*/

/*AddTodo component*/
form{display: flex;}
input[type='text']{flex:10; padding:5px;}
input[type='submit']{flex:2;}
/*-------------------------------------------------*/
