comparison dep/fmt/doc/bootstrap/wells.less @ 343:1faa72660932

*: transfer back to cmake from autotools autotools just made lots of things more complicated than they should have and many things broke (i.e. translations)
author Paper <paper@paper.us.eu.org>
date Thu, 20 Jun 2024 05:56:06 -0400
parents
children
comparison
equal deleted inserted replaced
342:adb79bdde329 343:1faa72660932
1 //
2 // Wells
3 // --------------------------------------------------
4
5
6 // Base class
7 .well {
8 min-height: 20px;
9 padding: 19px;
10 margin-bottom: 20px;
11 background-color: @well-bg;
12 border: 1px solid @well-border;
13 border-radius: @border-radius-base;
14 .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
15 blockquote {
16 border-color: #ddd;
17 border-color: rgba(0,0,0,.15);
18 }
19 }
20
21 // Sizes
22 .well-lg {
23 padding: 24px;
24 border-radius: @border-radius-large;
25 }
26 .well-sm {
27 padding: 9px;
28 border-radius: @border-radius-small;
29 }