Guest User

Untitled

a guest
Aug 20th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. body {
  2. padding: 5px;
  3. }
  4. input {
  5. width: 200px;
  6. }
  7. #todo-list {
  8. margin-top: 10px;
  9. }
  10. #todo-list li {
  11. padding: 12px 25px 11px 0;
  12. position: relative;
  13. line-height: 1.1em;
  14. border-bottom: 1px solid #cccccc;
  15. }
  16. #todo-list .check {
  17. position: relative;
  18. top: 2px;
  19. margin-right: 1em;
  20. float: left;
  21. width: 1em;
  22. }
  23. #todo-list .todo-text {
  24. margin-left: 2em;
  25. }
  26. #todo-list .done .todo-text {
  27. text-decoration: line-through;
  28. color: #777777;
  29. }
  30. #todo-list .todo-destroy {
  31. position: absolute;
  32. right: 5px;
  33. top: 14px;
  34. display: none;
  35. cursor: pointer;
  36. width: 20px;
  37. height: 20px;
  38. }
  39. #todo-list li:hover .todo-destroy {
  40. display: block;
  41. }
  42. #todo-list .todo-destroy:hover {
  43. background-position: 0 -20px;
  44. }
  45. #todo-list li.editing {
  46. padding-left: 0;
  47. padding-right: 0;
  48. }
  49. #todo-list .editing input,
  50. #todo-list .editing .todo-destroy {
  51. display: none !important;
  52. }
  53.  
  54. #todo-list .editing .todo-text {
  55. width: 100%;
  56. margin: 0;
  57. }
Add Comment
Please, Sign In to add comment