wells.less 395 B

12345678910111213141516171819202122232425
  1. //
  2. // Wells
  3. // --------------------------------------------------
  4. // Base class
  5. .well {
  6. border: 1px solid @navlistBorder;
  7. border-bottom-width: 2px;
  8. border-top-width: 0;
  9. .border-radius(@borderRadiusSmall);
  10. .box-shadow(none);
  11. }
  12. // Sizes
  13. .well-large {
  14. padding: 24px;
  15. .border-radius(@borderRadiusLarge);
  16. }
  17. .well-small {
  18. padding: 9px;
  19. .border-radius(@baseBorderRadius);
  20. }