CompanyPicker.scss 783 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #companies {
  2. background-color: #fff;
  3. text-shadow: #fff 0 1px 0;
  4. position: relative;
  5. display: block;
  6. height: auto;
  7. div.thumb {
  8. @include box-shadow(rgba(0,0,0,0.2) 0 0 8px);
  9. float: left;
  10. padding: 15px;
  11. margin: 5px;
  12. text-align: center;
  13. line-height: 14px;
  14. height: 120px;
  15. width: 140px;
  16. color: #333;
  17. overflow: hidden;
  18. border-top: 1px solid transparent;
  19. cursor: pointer;
  20. border-radius: 4px;
  21. img {
  22. margin-bottom: 10px;
  23. }
  24. strong {
  25. display: block;
  26. }
  27. }
  28. div.thumb-hover {
  29. background-color: $base-over-color;
  30. }
  31. .x-item-selected {
  32. background-color: #d3e1f1 !important;
  33. }
  34. }