FileItem.styl 811B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. iconrules()
  2. display inline-block
  3. margin-right 10px
  4. font-size 20px
  5. .file
  6. display flex
  7. border-bottom 0
  8. cursor pointer
  9. &:hover
  10. background-color files-hover
  11. &__type
  12. font-size 30px
  13. text-align center
  14. &__name
  15. display flex
  16. justify-content space-between
  17. padding 15px 5px
  18. &__text
  19. margin-right 10px
  20. font-size 17px
  21. &__icons
  22. &__download
  23. iconrules()
  24. &:hover, &:focus
  25. color blue
  26. &__archive
  27. iconrules()
  28. &:hover, &:focus
  29. color blue
  30. &__delete
  31. iconrules()
  32. &:hover, &:focus
  33. color blue
  34. &__status
  35. font-size 30px
  36. text-align center
  37. @media (min-width: max-xs) and (max-width: max-lg)
  38. .file
  39. border-right 1px solid grey
  40. &__name__icons
  41. margin-top 5px