/sass/bootstrap/_wells.scss

https://bitbucket.org/decore/my-svadba.ru · Sass · 27 lines · 22 code · 2 blank · 3 comment · 0 complexity · 1b123e1a950d14c29d42dc9af001cc93 MD5 · raw file

  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. @include border-radius(4px);
  11. @include 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. @include border-radius(6px);
  21. }
  22. .well-small {
  23. padding: 9px;
  24. @include border-radius(3px);
  25. }