attachments.styl 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. @import 'nib'
  2. .attachments-galery
  3. display: flex
  4. flex-wrap: wrap
  5. .attachment-item
  6. width: 33.33% - 2%
  7. margin: 10px 1% 0
  8. text-align: center
  9. border-radius: 3px
  10. overflow: auto
  11. background: darken(white, 7%)
  12. min-height: 120px
  13. &:hover
  14. background: darken(white, 12%)
  15. &.add-attachment
  16. display: flex
  17. align-items: center
  18. a
  19. display: block
  20. margin: auto
  21. .attachment-thumbnail
  22. height: 80px
  23. display: flex
  24. align-items: center
  25. justify-content: center
  26. position: relative
  27. .attachment-thumbnail-img
  28. max-height: 100%
  29. max-width: 100%
  30. .attachment-thumbnail-ext
  31. text-transform: uppercase
  32. font-size: 1.6em
  33. .attachment-details
  34. font-size: 0.75em
  35. margin: 3px
  36. .attachment-details-actions a
  37. display: block
  38. .attachment-image-preview
  39. max-width: 100px
  40. display: block
  41. box-shadow: 0 1px 2px rgba(0,0,0,.2)
  42. .preview-clipboard-image
  43. width: 280px
  44. max-width: 100%;
  45. height: 200px
  46. display: block
  47. border: 1px solid black
  48. box-shadow: 0 1px 2px rgba(0,0,0,.2)
  49. @media screen and (max-width: 800px)
  50. .attachments-galery
  51. flex-direction
  52. row
  53. .attachment-item
  54. width: 50% - 2%
  55. .attachment-thumbnail
  56. height: 130px
  57. .attachment-details
  58. font-size: 1.1em
  59. @media screen and (max-width: 360px)
  60. .attachments-galery
  61. .attachment-item
  62. width: 100%
  63. .attachment-thumbnail
  64. height: 200px