mirror of
https://github.com/wahyd4/cdnjs.git
synced 2026-08-24 20:26:13 +10:00
68 lines
1.7 KiB
CSS
68 lines
1.7 KiB
CSS
/*
|
|
/* =========================================================
|
|
* bootstrap-lightbox.css v0.4
|
|
*
|
|
* =========================================================
|
|
* Copyright 2012 Jason Butz
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
* ========================================================= */
|
|
|
|
.lightbox {
|
|
background-color: transparent;
|
|
text-align: center;
|
|
line-height: 0;
|
|
z-index: 1050;
|
|
position: relative;
|
|
top: 70px;
|
|
|
|
}
|
|
.lightbox-content {
|
|
display: inline-block;
|
|
padding: 10px;
|
|
background-color: #ffffff;
|
|
border: 1px solid #999;
|
|
border: 1px solid rgba(0, 0, 0, 0.3);
|
|
*border: 1px solid #999;
|
|
/* IE6-7 */
|
|
-webkit-border-radius: 6px;
|
|
-moz-border-radius: 6px;
|
|
border-radius: 6px;
|
|
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
|
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
|
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
|
-webkit-background-clip: padding-box;
|
|
-moz-background-clip: padding-box;
|
|
background-clip: padding-box;
|
|
}
|
|
.lightbox-header .close {
|
|
color: white;
|
|
margin-right: -16px;
|
|
margin-top: -16px;
|
|
font-size: 2em;
|
|
opacity: .8;
|
|
filter: alpha(opacity=80);
|
|
}
|
|
|
|
.lightbox-header .close:hover {
|
|
opacity: .4;
|
|
filter: alpha(opacity=40);
|
|
}
|
|
|
|
.lightbox.hide {
|
|
display: none;
|
|
}
|
|
.lightbox.in {
|
|
display: block;
|
|
}
|