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

59 lines
1.1 KiB
CSS
Raw Normal View History

.lightbox-background {
background: rgba(0, 0, 0, 0.7);
2013-03-03 22:32:22 +00:00
display: none;
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: #eee;
background-image: url("../img/loader.gif");
background-position: center center;
background-repeat: no-repeat;
border: 1px solid #bbb;
-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 {
display: none;
}
2013-02-23 06:28:02 +00:00
2013-03-03 22:32:22 +00:00
.lightbox-data {
background: white;
}
2013-02-23 06:28:02 +00:00
2013-03-03 22:32:22 +00:00
.lightbox-data .description {
border-bottom: 1px solid #ddd;
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: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
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;
}