diff options
| author | Mark Otto <[email protected]> | 2012-07-27 00:06:43 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-07-27 00:06:43 -0700 |
| commit | 1e9b4506196bd448c4038151964733ca524c10bb (patch) | |
| tree | 8319aa3432fe4b80d57fc2f3907b0dfa4789bae8 /docs/assets/css/bootstrap.css | |
| parent | 6474190746fd163375200119b9d2cc7066e05d43 (diff) | |
| download | bootstrap-1e9b4506196bd448c4038151964733ca524c10bb.tar.xz bootstrap-1e9b4506196bd448c4038151964733ca524c10bb.zip | |
add image styles, for now to scaffolding (soon to own file)
Diffstat (limited to 'docs/assets/css/bootstrap.css')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index f806ed519..87922cf88 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -175,6 +175,28 @@ a:hover { text-decoration: underline; } +.img-rounded { + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} + +.img-polaroid { + padding: 4px; + background-color: #fff; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.2); + -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); +} + +.img-circle { + -webkit-border-radius: 500px; + -moz-border-radius: 500px; + border-radius: 500px; +} + .row { margin-left: -20px; *zoom: 1; |
