checklists.styl 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. &:hover
  42. background-color: darken(white, 8%)
  43. .check-box
  44. margin-top: 5px
  45. &.is-checked
  46. border-bottom: 2px solid #3cb500
  47. border-right: 2px solid #3cb500
  48. .item-title
  49. flex: 1
  50. padding-left: 10px;
  51. &.is-checked
  52. color: #8c8c8c
  53. font-style: italic
  54. .js-delete-checklist-item
  55. @extends .delete-text
  56. padding: 12px 0 0 0
  57. .add-checklist-item
  58. padding-top: 0.5em
  59. display: inline-block