bootstrap-lightbox.css - warvox - VoIP based wardialing tool, forked from rapid7/warvox.
 (HTM) git clone git://jay.scot/warvox
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
       bootstrap-lightbox.css (1901B)
       ---
            1 /*!=========================================================
            2 * bootstrap-lightbox v0.4.1 - 11/20/2012
            3 * http://jbutz.github.com/bootstrap-lightbox/
            4 * HEAVILY based off bootstrap-modal.js
            5 * ==========================================================
            6 * Copyright (c) 2012 Jason Butz (http://jasonbutz.info)
            7 *
            8 * Licensed under the Apache License, Version 2.0 (the "License");
            9 * you may not use this file except in compliance with the License.
           10 * You may obtain a copy of the License at
           11 *
           12 * http://www.apache.org/licenses/LICENSE-2.0
           13 *
           14 * Unless required by applicable law or agreed to in writing, software
           15 * distributed under the License is distributed on an "AS IS" BASIS,
           16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
           17 * See the License for the specific language governing permissions and
           18 * limitations under the License.
           19 * ========================================================= */
           20 .lightbox {
           21   background-color: transparent;
           22   text-align: center;
           23   line-height: 0;
           24   z-index: 1050;
           25   position: relative;
           26   top: 70px;
           27   outline: none;
           28 }
           29 .lightbox .hide {
           30   display: none;
           31 }
           32 .lightbox .in {
           33   display: block;
           34 }
           35 .lightbox-content {
           36   display: inline-block;
           37   padding: 10px;
           38   background-color: #ffffff;
           39   border: 1px solid #999;
           40   border: 1px solid rgba(0, 0, 0, 0.3);
           41   *border: 1px solid #999;
           42   /* IE6-7 */
           43 
           44   -webkit-border-radius: 6px;
           45   -moz-border-radius: 6px;
           46   border-radius: 6px;
           47   -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
           48   -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
           49   box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
           50   -webkit-background-clip: padding-box;
           51   -moz-background-clip: padding-box;
           52   background-clip: padding-box;
           53 }
           54 .lightbox-header .close {
           55   color: white;
           56   margin-right: -16px;
           57   margin-top: -16px;
           58   font-size: 2em;
           59   opacity: .8;
           60   filter: alpha(opacity=80);
           61 }
           62 .lightbox-header .close :hover {
           63   opacity: .4;
           64   filter: alpha(opacity=40);
           65 }