Advertisement
Guest User

viewer.css

a guest
Jan 15th, 2014
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.39 KB | None | 0 0
  1. body{
  2.     background: #000000;
  3.     margin: 0px;
  4.     font-family: Consolas, monospace
  5. }
  6. *:focus{
  7.     outline: 0px
  8. }
  9. .controls-wrap{
  10.     position: fixed;
  11.     bottom: 0px;
  12.     width: 100%
  13. }
  14. .controls{
  15.     width: 290px;
  16.     height: 70px;
  17.     margin: 0px auto;
  18.     background-color: #d8e8ff;
  19.     opacity: 0.7;
  20.     filter: alpha(opacity=70);
  21.     -webkit-border-radius: 10px;
  22.     -moz-border-radius: 10px;
  23.     border-radius: 10px;
  24.     -webkit-user-select: none;
  25.     -khtml-user-select: none;
  26.     -moz-user-select: none;
  27.     -o-user-select: none;
  28.     user-select: none;
  29.     padding: 5px
  30. }
  31. .button-left{
  32.     float: left;
  33.     width: 0px;
  34.     height: 0px;
  35.     border-style: solid;
  36.     border-width: 35px 70px 35px 0;
  37.     border-color: transparent #7590ad transparent transparent
  38. }
  39. .button-left:hover{
  40.     border-color: transparent #0a407a transparent transparent
  41. }
  42. .button-right{
  43.     float: right;
  44.     width: 0px;
  45.     height: 0px;
  46.     border-style: solid;
  47.     border-width: 35px 0 35px 70px;
  48.     border-color: transparent transparent transparent #7590ad
  49. }
  50. .button-right:hover{
  51.     border-color: transparent transparent transparent #0a407a
  52. }
  53. .middle{
  54.     float: left;
  55.     width: 150px;
  56.     margin-top: 20px;
  57.     text-align: center;
  58.     font-size: 25px
  59. }
  60. .image{
  61.     position: relative;
  62.     max-width: inherit;
  63.     height: auto;
  64.     width: auto\9;
  65.     right: -50%
  66. }
  67. .visible{
  68.     visibility: visible
  69. }
  70. .invisible{
  71.     visibility: hidden
  72. }
  73. .image-wrap{
  74.     position: absolute;
  75.     max-width: 100%;
  76.     right: 50%
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement