CompanyPicker.scss 755 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. img {
  21. margin-bottom: 10px;
  22. }
  23. strong {
  24. display: block;
  25. }
  26. }
  27. div.thumb-hover {
  28. background-color: $base-over-color;
  29. }
  30. .x-item-selected {
  31. background-color: #d3e1f1 !important;
  32. }
  33. }