/* Undo the CSS reset for the TODOMVC example. This is only needed for the examples, because
 * we need to apply the reset for everything *except TodoMVC CSS-only. In a real app, if you 
 * do not want to use atomic-css, simply omit the reset from your document function.
 *
 * In practice, you usually want a css reset anyway, even if you aren't using Atomic CSS
 * */
p {
  margin: 1em auto;
}

footer {
  padding-bottom: 30px !important;
}

a {
  color: #b83f45 !important;
}

h1 {
  top: -80px !important;
}

/* Changes to accomodate slightly different DOM generated by Hyperbole */
.todo-list li {
  border-bottom: 1px solid #ededed !important;
}

.todo-list div:last-child li {
  border-bottom: none !important;
}
