Files
Pinry/pinry/static/css/lightbox.css

73 lines
1.6 KiB
CSS
Raw Normal View History

.lightbox-background {
background: rgba(0, 0, 0, 0.7);
left: 0;
right: 0;
2013-03-03 22:32:22 +00:00
top: 0;
position: absolute;
2013-02-23 06:28:02 +00:00
z-index: 9001;
}
2013-03-03 22:32:22 +00:00
.lightbox-wrapper {
background: rgba(0, 0, 0, 0.7);
2013-03-03 22:32:22 +00:00
background-image: url("../img/loader.gif");
background-position: center center;
background-repeat: no-repeat;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
left: 50%;
margin-bottom: 100px;
position: absolute;
}
2013-03-03 22:32:22 +00:00
.lightbox-wrapper img {
max-width: 600px;
-webkit-border-top-right-radius: 3px;
-webkit-border-top-left-radius: 3px;
-moz-border-radius-topright: 3px;
-moz-border-radius-topleft: 3px;
border-top-right-radius: 3px;
border-top-left-radius: 3px;
2013-03-03 22:32:22 +00:00
}
2013-02-23 06:28:02 +00:00
2013-03-03 22:32:22 +00:00
.lightbox-data {
color: white;
-webkit-border-bottom-right-radius: 3px;
-webkit-border-bottom-left-radius: 3px;
-moz-border-radius-bottomright: 3px;
-moz-border-radius-bottomleft: 3px;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
2013-03-03 22:32:22 +00:00
}
2013-02-23 06:28:02 +00:00
2013-03-03 22:32:22 +00:00
.lightbox-data .description {
border-bottom: 1px solid #333;
2013-03-03 22:32:22 +00:00
font-family: "Georgia", "Times", "Times New Roman", Serif;
font-size: 16px;
padding: 8px;
}
2013-03-03 22:32:22 +00:00
.lightbox-data .avatar img {
display: block;
height: 40px;
width: 40px;
margin: 5px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
2013-03-03 22:32:22 +00:00
}
2013-02-23 06:28:02 +00:00
2013-03-03 22:32:22 +00:00
.lightbox-data .text {
font-weight: bold;
margin-top: 3px;
}
2013-02-23 06:28:02 +00:00
2013-03-03 22:32:22 +00:00
.lightbox-data .text .dim {
color: #999;
font-size: 14px;
}
.lightbox-data .extra {
padding: 8px 6px;
}