checklists.styl 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .js-add-checklist
  2. color: #8c8c8c
  3. textarea.js-add-checklist-item, textarea.js-edit-checklist-item
  4. overflow: hidden
  5. word-wrap: break-word
  6. resize: none
  7. height: 34px
  8. .delete-text
  9. color: #8c8c8c
  10. text-decoration: underline
  11. word-wrap: break-word
  12. float: right
  13. padding-top: 6px
  14. &:hover
  15. color: inherit
  16. .checklist-title
  17. .checkbox
  18. float: left
  19. width: 30px
  20. height 30px
  21. font-size: 18px
  22. line-height: 30px
  23. .title
  24. font-size: 18px
  25. line-height: 30px
  26. .checklist-stat
  27. margin: 0 0.5em
  28. float: right
  29. padding-top: 6px
  30. &.is-finished
  31. color: #3cb500
  32. .js-delete-checklist
  33. @extends .delete-text
  34. .checklist-items
  35. margin: 0 0 0.5em 1.33em
  36. .item
  37. line-height: 25px
  38. font-size: 1.1em
  39. margin-top: 3px
  40. display: flex
  41. .check-box
  42. margin-top: 5px
  43. &.is-checked
  44. border-bottom: 2px solid #3cb500
  45. border-right: 2px solid #3cb500
  46. .item-title
  47. padding-left: 10px;
  48. &.is-checked
  49. color: #8c8c8c
  50. font-style: italic
  51. .js-delete-checklist-item
  52. @extends .delete-text
  53. padding: 12px 0 0 0
  54. .add-checklist-item
  55. padding-top: 0.5em
  56. display: inline-block