Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.98 KB | None | 0 0
  1. <body>
  2. <!-- Background -->
  3.     <table width="100%" height="100%" class="index_table" cellpadding="0" cellspacing="0">
  4.         <tr>
  5.             <td class="bg_upper left"><img src="/files/images/themes/default/tl.jpg"/></td>
  6.             <td width="100%" valign="top" class="bg_upper center"><img height="204" width="100%" src="/files/images/themes/default/tc.jpg"/></td>
  7.             <td class="bg_upper right"><img src="/files/images/themes/default/tr.jpg"/></td>
  8.         </tr>
  9.  
  10.         <tr height="100%">
  11.             <td class="bg_center left"></td>
  12.             <td class="bg_center"></td>
  13.             <td class="bg_center right"></td>
  14.         </tr>
  15.         <tr>
  16.             <td colspan="3" class="index_footer">ololo.ru © 2011 </td>
  17.         </tr>
  18.     </table>
  19.    
  20. <!-- Main block -->
  21.     <div class="index_border">
  22.         <div class="index_block">
  23.             ТУТ много всякой фигня.
  24.         </div>
  25.     </div>
  26.  
  27.  
  28. /////////////////////////////////////////////////////////////////
  29. CSS:
  30.  
  31. .bg_upper
  32. {
  33.     background: #35d5fd;
  34. }
  35. .bg_center
  36. {
  37.     background: #24a516;
  38. }
  39.  
  40. .bg_center.left
  41. {
  42.     background: #24a516 url('/files/images/themes/default/cl.jpg') repeat-y;
  43. }
  44.  
  45. .bg_center.right
  46. {
  47.     background: #24a516 url('/files/images/themes/default/cr.jpg') repeat-y;
  48. }
  49.  
  50. /* Index */
  51.  
  52. .index_table
  53. {
  54.     width: 100%;
  55.     height: 100%;
  56.     border-collapse:collapse;
  57.     padding: 0px;
  58.     margin: 0px;
  59.     border: 0px;
  60.     position:absolute;
  61.     min-height:100%;
  62. }
  63.  
  64. #index_block
  65. {  
  66.     margin: 15px;
  67.     padding: 1px;
  68.     background: #ffffff;
  69.     vertical-align: top;
  70.     position: relative;
  71.     overflow: visible;
  72.     min-height:485px;
  73.     border-radius: 5px;
  74.     box-shadow: 0 0 5px 2px #ccc;
  75. }
  76.  
  77. .index_border
  78. {  
  79.  
  80.     background: rgb(125, 125, 125); /* The Fallback */
  81.     background: rgba(255, 255, 255, 0.4);
  82.     padding: 0px;
  83.     overflow: visible;
  84.     min-height:500px;
  85.     position:absolute;
  86.     top: 159px;
  87.     left: 159px;
  88.     right: 125px;
  89.    /* bottom: 25px;*/
  90.     border-width: 0px;
  91.     border-style: solid;
  92.     border-radius: 10px;
  93.     box-shadow: 0 0 5px 2px #888;
  94. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement