wells.less 451 B

123456789101112131415161718192021222324252627
  1. // WELLS
  2. // -----
  3. .well {
  4. min-height: 20px;
  5. padding: 19px;
  6. margin-bottom: 20px;
  7. background-color: #f5f5f5;
  8. border: 1px solid #eee;
  9. border: 1px solid rgba(0,0,0,.05);
  10. .border-radius(4px);
  11. .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
  12. blockquote {
  13. border-color: #ddd;
  14. border-color: rgba(0,0,0,.15);
  15. }
  16. }
  17. // Sizes
  18. .well-large {
  19. padding: 24px;
  20. .border-radius(6px);
  21. }
  22. .well-small {
  23. padding: 9px;
  24. .border-radius(3px);
  25. }