Advertisement
PinothyJ

Untitled

Jan 16th, 2015
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.65 KB | None | 0 0
  1. #dlgBox {
  2.   width: 350px;
  3.   height: 550px;
  4.   position: absolute;
  5.   left: 0;
  6.   right: 0;
  7.   top: 0;
  8.   bottom: 0;
  9.   margin: auto;
  10.   background: #ffffcc;
  11. }
  12.  
  13. #dlgHead {
  14.   background: #464c2f;
  15.   height: 50px;
  16.   position: relative;
  17.   margin: auto;
  18.   width: auto;
  19.   top: 0;
  20.   padding: 15px;
  21.  
  22. }
  23.  
  24. #dlgClose {
  25.   float: right;
  26.   width: 32px;
  27.   height: 32px;
  28. }
  29.  
  30. #dlgHead h1 {
  31.   margin: 0;
  32.   text-shadow: 1px 1px #8C906A;
  33.   color: #ffffcc;
  34. }
  35.  
  36. #divPrev {
  37.   width: 64px;
  38.   height: 32px;
  39.   background-image: url("http://climbingupthewalls.redlem.com/tiles/floor/1.png"), url("http://climbingupthewalls.redlem.com/tiles/floor/10.png");
  40. background-position: left top, right top;
  41. background-repeat: no-repeat;
  42.  
  43.  
  44. }
  45. #divPrev p {
  46.   color: #ffffcc;
  47.   font-size: 40px;
  48.   padding: 0;
  49.   margin: 0;
  50.   position: relative;
  51.   top: -8px;
  52.   text-align: center;
  53.   transform:rotate(180deg);
  54. }
  55.  
  56. #divNext {
  57.   width: 64px;
  58.   height: 32px;
  59.   background-image: url("http://climbingupthewalls.redlem.com/tiles/floor/1.png"), url("http://climbingupthewalls.redlem.com/tiles/floor/10.png");
  60. background-position: left top, right top;
  61. background-repeat: no-repeat;
  62.   float: right;
  63.  
  64. }
  65. #divNext p {
  66.   color: #ffffcc;
  67.   font-size: 40px;
  68.   padding: 0;
  69.   margin: 0;
  70.   position: relative;
  71.   top: 0px;
  72.   text-align: center;
  73. }
  74.  
  75. #dlgFoot{
  76.   position: absolute;
  77.   bottom: 0;
  78.   height: 30px;
  79.   width: auto;
  80.   left: 0;
  81.   right: 0;
  82.   padding: 30px;
  83.   background: #464c2f;
  84. }
  85.  
  86. .leftImg {
  87.   margin: 0;
  88.   padding: 0;
  89.   border: 0;
  90.  
  91. }
  92.  
  93. .rightImg {
  94.   right: 0;
  95.   left: auto;
  96.   margin: auto;
  97.   float:right;
  98. }
  99.  
  100. body {
  101.   font-family: "Segoe UI";
  102. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement