mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-06-17 07:37:13 +02:00
.github
bin
module
vendor
CPR
ConcurrentQueue
Fmt
doc
_static
_templates
basic-bootstrap
bootstrap
mixins
alerts.less
badges.less
bootstrap.less
breadcrumbs.less
button-groups.less
buttons.less
carousel.less
close.less
code.less
component-animations.less
dropdowns.less
forms.less
glyphicons.less
grid.less
input-groups.less
jumbotron.less
labels.less
list-group.less
media.less
mixins.less
modals.less
navbar.less
navs.less
normalize.less
pager.less
pagination.less
panels.less
popovers.less
print.less
progress-bars.less
responsive-embed.less
responsive-utilities.less
scaffolding.less
tables.less
theme.less
thumbnails.less
tooltip.less
type.less
utilities.less
variables.less
wells.less
html
CMakeLists.txt
api.rst
build.py
conf.py
contents.rst
fmt.less
index.rst
python-license.txt
syntax.rst
usage.rst
include
src
support
test
CMakeLists.txt
CONTRIBUTING.md
ChangeLog.rst
LICENSE.rst
README.rst
JSMN
MaxmindDB
POCO
PUGIXML
SimpleIni
Squirrel
TinyDir
ZMQ
CMakeLists.txt
.gitignore
.gitmodules
CMakeLists.txt
LICENSE
README.md
30 lines
527 B
Plaintext
30 lines
527 B
Plaintext
//
|
|
// 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;
|
|
}
|