diff options
Diffstat (limited to 'pdf-as-web/src/main/webapp/assets/css')
-rw-r--r-- | pdf-as-web/src/main/webapp/assets/css/style.css | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/pdf-as-web/src/main/webapp/assets/css/style.css b/pdf-as-web/src/main/webapp/assets/css/style.css index eb5d3e40..56bfbe67 100644 --- a/pdf-as-web/src/main/webapp/assets/css/style.css +++ b/pdf-as-web/src/main/webapp/assets/css/style.css @@ -99,3 +99,39 @@ iframe { border: none; } + +.black_overlay{ + display: block; + position: fixed; + top: 0%; + left: 0%; + width: 100%; + height: 100%; + background-color: black; + z-index:1001; + -moz-opacity: 0.8; + opacity:.80; + filter: alpha(opacity=80); +} + +.white_content { + display: block; + position: fixed; + top: 25%; + left: 32%; + width: 36%; + height: 30%; + padding: 16px; + border: 4px solid orange; + background-color: white; + z-index:1002; + overflow: auto; +} + +.white_content div { + z-index: -1; +} + +.white_content a { + z-index: 3000; +}
\ No newline at end of file |