wells.less 552 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // Wells
  3. // --------------------------------------------------
  4. // Base class
  5. .well {
  6. min-height: 20px;
  7. padding: 19px;
  8. margin-bottom: 20px;
  9. background-color: @wellBackground;
  10. border: 1px solid darken(@wellBackground, 7%);
  11. .border-radius(@baseBorderRadius);
  12. .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
  13. blockquote {
  14. border-color: #ddd;
  15. border-color: rgba(0,0,0,.15);
  16. }
  17. }
  18. // Sizes
  19. .well-large {
  20. padding: 24px;
  21. .border-radius(@borderRadiusLarge);
  22. }
  23. .well-small {
  24. padding: 9px;
  25. .border-radius(@borderRadiusSmall);
  26. }