Advertisement
Guest User

Untitled

a guest
Jul 6th, 2015
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. <td class="leftCol">
  2. <div class="centrirov" arrow="firstArrow" align="center"><div class="text" >Text</div></div>
  3. <div class="centrirov" arrow="secondArrow"><div class="text"> Text </div> </div>
  4. <div class="centrirov" arrow="thirdArrow"><div class="text"> Text </div> </div>
  5. <div class="centrirov"arrow="fourthArrow"><div class="text"> Text </div> </div>
  6. </td>
  7.  
  8. #middle .leftCol{
  9. width:700px;
  10. padding-left:20px;
  11. position:relative;
  12. border:1px solid #000;
  13. }
  14.  
  15. #middle .leftCol .centrirov .active{
  16. width:144px;
  17. height:110px;
  18. background:url(/i/buttonActive.png) no-repeat;
  19. /*margin-top:-6px;*/
  20. color:#fff;
  21. cursor:pointer;
  22. display:table-cell;
  23. vertical-align:middle
  24. }
  25.  
  26. .enabled{
  27. cursor:pointer;
  28. }
  29.  
  30. #middle .leftCol .centrirov .active .text{
  31. color:#fff;
  32. }
  33.  
  34. #middle .leftCol .centrirov .text{
  35. background:none;
  36. display: inline-block;
  37. vertical-align: middle;
  38. }
  39.  
  40. #middle .leftCol .centrirov {
  41. background:url(/i/button.png) no-repeat;
  42. width:129px;
  43. height:100px;
  44. float:left;
  45. margin-right:28px;
  46. text-decoration:none;
  47. color:#bebcbc;
  48. font-size:20px;
  49. text-align:center;
  50. display: table-cell;
  51. vertical-align: middle;
  52. }
  53.  
  54. div.center {
  55. width: 700px;
  56. margin: 0px auto;
  57. }
  58.  
  59. #middle .leftCol .centrirov {
  60. ...
  61. float: left;
  62. display: table-cell;
  63. ...
  64. }
  65.  
  66. display: table-cell;
  67. vertical-align: middle;
  68.  
  69. #middle .leftCol .centrirov > div {
  70. width: 129px;
  71. height: 100px;
  72. display: table-cell;
  73. vertical-align: middle;
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement