File: style.css

Recommend this page to a friend!
  Classes of Pravin Sonawane   Simple JavaScript Lightbox   style.css   Download  
File: style.css
Role: Auxiliary data
Content type: text/plain
Description: Cascading Style Sheet
Class: Simple JavaScript Lightbox
Show and hide a light box on a Web page
Author: By
Last change:
Date: 8 years ago
Size: 854 bytes
 

Contents

Class file image Download
@charset "utf-8"; /* CSS Document */ body { font-family:Verdana, Arial, Helvetica, sans-serif; } #outer { display: none; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color:#333333; z-index:1001; -moz-opacity: 0.8; opacity:.8; filter: alpha(opacity=80); padding:10px; } #inner { display: none; position: fixed; top: 100px; left: 300px; width: 50%; height: 50%; padding: 5px; border: 10px solid #FF8000; background-color: white; z-index:1002; overflow: auto; } #content { font-size:24px; color:#CCCCCC; } #close { float:right; width:20px; height:20px; top:0; cursor:pointer; text-align:center; vertical-align:middle; font-weight:bold; }