Built motion from commit 5b01f56.|0.0.106
[motion.git] / public / bower_components / angular-bootstrap-lightbox / angular-bootstrap-lightbox.css
1 .lightbox-nav {
2   position: relative;
3   margin-bottom: 12px; /* the font-size of .btn-xs */
4   height: 22px;
5   text-align: center;
6   font-size: 0; /* prevent the otherwise inherited font-size and line-height from adding extra space to the bottom of this div */
7 }
8
9 .lightbox-nav .btn-group {
10   vertical-align: top;
11 }
12
13 .lightbox-nav .close {
14   /* absolutely position this in order to center the nav buttons */
15   position: absolute;
16   top: 0;
17   right: 0;
18 }
19
20 .lightbox-image-container {
21   position: relative;
22   text-align: center; /* center the image */
23 }
24
25 /* the caption overlays the top left corner of the image */
26 .lightbox-image-caption {
27   position: absolute;
28   top: 0;
29   left: 0;
30   margin: 0.5em 0.9em; /* the left and right margins are offset by 0.4em for the span box-shadow */
31   color: #000;
32   font-size: 1.5em;
33   font-weight: bold;
34   text-align: left;
35   text-shadow: 0.1em 0.1em 0.2em rgba(255, 255, 255, 0.5);
36 }
37
38 .lightbox-image-caption span {
39   padding-top: 0.1em;
40   padding-bottom: 0.1em;
41   background-color: rgba(255, 255, 255, 0.75);
42   /* pad the left and right of each line of text */
43   box-shadow: 0.4em 0 0 rgba(255, 255, 255, 0.75),
44     -0.4em 0 0 rgba(255, 255, 255, 0.75);
45 }