wells.less 533 B

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