attachments.styl 901 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .attachments-galery
  2. display: flex
  3. flex-wrap: wrap
  4. .attachment-item
  5. width: 33.33% - 2%
  6. margin: 10px 1% 0
  7. text-align: center
  8. border-radius: 3px
  9. overflow: hidden
  10. background: darken(white, 7%)
  11. min-height: 120px
  12. &:hover
  13. background: darken(white, 12%)
  14. &.add-attachment
  15. display: flex
  16. align-items: center
  17. .attachment-thumbnail
  18. height: 80px
  19. display: flex
  20. align-items: center
  21. justify-content: center
  22. position: relative
  23. .attachment-thumbnail-img
  24. height: 100%
  25. width: 100%
  26. .attachment-thumbnail-ext
  27. text-transform: uppercase
  28. font-size: 1.6em
  29. .attachment-details
  30. font-size: 0.75em
  31. margin: 3px
  32. .attachment-details-actions
  33. display: block
  34. .attachment-image-preview
  35. max-width: 100px
  36. display: block
  37. box-shadow: 0 1px 2px rgba(0,0,0,.2)