Squashed 'external/fmt/' content from commit e1832bcf

git-subtree-dir: external/fmt
git-subtree-split: e1832bcf00ed53048aea1e4d2408a68301dcd50c
This commit is contained in:
Simone
2024-01-23 08:37:20 +01:00
commit e7e2f15be5
213 changed files with 90089 additions and 0 deletions

29
doc/bootstrap/wells.less Normal file
View File

@@ -0,0 +1,29 @@
//
// Wells
// --------------------------------------------------
// Base class
.well {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
background-color: @well-bg;
border: 1px solid @well-border;
border-radius: @border-radius-base;
.box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
blockquote {
border-color: #ddd;
border-color: rgba(0,0,0,.15);
}
}
// Sizes
.well-lg {
padding: 24px;
border-radius: @border-radius-large;
}
.well-sm {
padding: 9px;
border-radius: @border-radius-small;
}