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.

46 lines
666 B

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