/*
 * OpenFaces - JSF Component Library 3.0
 * Copyright (C) 2007-2010, TeamDev Ltd.
 * licensing@openfaces.org
 * Unless agreed in writing the contents of this file are subject to
 * the GNU Lesser General Public License Version 2.1 (the "LGPL" License).
 * This library is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * Please visit http://openfaces.org/licensing/ for more details.
 */

.taskDemo {
  font-size: 16px;
  float: left;
  font-weight: bold;
}

h5 {
  color: #adabab;
  font-size: 1em;
  margin-top: .5em;
}

.completed {
  text-decoration: line-through;
  color: #73a480;
}

.styledCheckbox {
  cursor: pointer;
  margin-top: 5px;
  margin-left: 5px;
}

.rollover {
  background-color: #e1eefe;
}

.tasks {
  display: block;
  padding: 0 0 0 10px;
}

.left {
  float: left;
}

.right {
  float: right;
}

.taskText {
  float: left;
  padding: 3px 0 0 10px;
  width: 400px;
  font-weight: normal;
}

.delete {
  float: right;
  width: 32px;
  height: 32px;
  cursor: pointer;
  visibility: hidden;
}

.rollover .delete {
  visibility: visible;
}

.row td {
  display: table-cell;
  padding: 0;
  vertical-align: baseline;
}

.addTaskPrompt {
  color: #adabab;
}

.taskInput {
  border: 1px #adabab solid;
  padding: 2px;
}

.addTask {
  width: 375px;
}

