Sitepoint demo app for learning to use Sinatra
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

36 lines
535 B

  1. .completed{
  2. text-decoration: line-through;
  3. }
  4. .tasks{
  5. padding:0;
  6. list-style:none;
  7. width:400px;
  8. }
  9. .task{
  10. position:relative;
  11. padding:2px 0 2px 28px;
  12. border-bottom: dotted 1px #ccc;
  13. }
  14. form.update{
  15. position:absolute;
  16. bottom:2px;
  17. left:0;
  18. }
  19. form.update input{
  20. background:white;
  21. color:gray;
  22. padding:0 2px;
  23. border:none;
  24. cursor:pointer;
  25. }
  26. .tasks li.completed form.update input{
  27. color:#47FD6B;
  28. }
  29. form.delete{
  30. display:inline;
  31. }
  32. form.delete input{
  33. background:none;
  34. cursor:pointer;
  35. border:none;
  36. }