Advertisement
Guest User

Untitled

a guest
Jan 16th, 2013
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.09 KB | None | 0 0
  1. #image-viewer {
  2.     width:610px;
  3.     height: 500px;
  4.     position: absolute;
  5.     z-index: 2;
  6.     background-color: white;
  7.     /*border: 2px solid black;*/
  8.     margin-top: -500px;
  9.     margin-left: 200px;
  10.     visibility: hidden;
  11.     border-radius: 15px;
  12.     box-shadow: 0 0 10px white;
  13. }
  14. #image-viewer-background {
  15.     z-index: 1;
  16.     position: absolute;
  17.     width: 100%;
  18.     height: 100%;
  19.     visibility: hidden;
  20.     background: rgba(0, 0, 0, 0.85);
  21.     top: 0px;
  22.     left: 0px;
  23. }
  24. #image-frame {
  25.     width:590px;
  26.     height: 450px;
  27.     margin-bottom: 40px;
  28.     margin-left: 10px;
  29.     margin-right: 10px;
  30.     margin-top: 10px;
  31.     border: none;
  32. }
  33. .controls {
  34.     color: black;
  35.     text-decoration: none;
  36.     font-family: 'Century Gothic';
  37.     cursor: pointer;
  38. }
  39. .controls:hover {
  40.     text-decoration: underline;  
  41. }
  42. .controls:active {
  43.     text-decoration: underline;  
  44.     font-weight: bold;
  45. }
  46. #control {
  47.     margin-top: -40px;
  48.     float: right;
  49.     margin-right: 10px;
  50.     margin-left: 10px;
  51. }
  52. #x {
  53.     margin-left: 10px;
  54.     margin-top: -40px;
  55.     float: left;
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement