Advertisement
Guest User

Untitled

a guest
Oct 16th, 2015
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.86 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <meta name="google" value="notranslate">    
  6.         <meta name="viewport" content="width=device-width, initial-scale=1">
  7.         <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
  8.         <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
  9.         <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
  10.        
  11.         <style>
  12.             #content-table {
  13.                 height: 100%;
  14.                 width: 100%;
  15.                 display: table;
  16.             }
  17.            
  18.             body {
  19.                 margin: 0;
  20.                 background: #002845;
  21.                 font-family: Arial;
  22.                 font-stretch:condensed;
  23.             }
  24.             #content {
  25.                 padding: 20px;
  26.                 border: solid #09476f;
  27.                 border-width: 2px 2px 2px 0;
  28.                 border-radius: 11px;
  29.                 margin: 0 10px 0 0;
  30.                 background: #fff;
  31.                 position: relative;
  32.                 overflow: auto;
  33.             }
  34.             @media (min-width: 1200px) {
  35.                 #sidebar {
  36.                     height: calc(100vh - 20px);
  37.                 }
  38.            
  39.                 #content {
  40.                     height: calc(100vh - 20px);
  41.                 }
  42.             }
  43.             #content {
  44.                 background: white no-repeat center;
  45.             }
  46.            
  47.             #columns {
  48.                 height: 100%;
  49.                 -webkit-column-width: 375px;
  50.                 -webkit-column-gap: 60px;
  51.                 -webkit-column-rule-width: 0;
  52.                 -moz-column-width: 375px;
  53.                 -moz-column-gap: 60px;
  54.                 -moz-column-rule-width: 0;
  55.                 column-width: 375px;
  56.                 column-gap: 60px;
  57.                 column-rule-width: 0;
  58.                 padding: 20px 33px;
  59.                 overflow: hidden;
  60.             }
  61.            
  62.             h3 {
  63.                 font-weight: bold;
  64.                 text-align: center;
  65.                 color: #1d77b5;
  66.                 font-size: 18pt;
  67.                 text-transform: uppercase;
  68.             }
  69.            
  70.         </style>
  71.     </head>
  72.     <body>
  73.    
  74.         <div class="container-fluid" style="margin: 10px 0 10px 10px;">
  75.             <div class="row">
  76.                 <div class="col-lg-3 nopadding">
  77.                     <p>blablabla</p>
  78.                     <p>blablabla</p>
  79.                     <p>blablabla</p>
  80.                     <p>blablabla</p>
  81.                     <p>blablabla</p>
  82.                     <p>blablabla</p>
  83.                     <p>blablabla</p>
  84.                     <p>blablabla</p>
  85.                     <p>blablabla</p>
  86.                     <p>blablabla</p>
  87.                 </div>
  88.                 <div class="col-lg-9 nopadding" style="left: -1px;">
  89.                     <div id="content">                      <!-- this divs width is 912.5 everywhere -->
  90.                         <div id="content-table">            <!-- this divs width is 870 in Chrome and 870.5 in FF and IE -->
  91.                             <div class="content-row">
  92.                                 <div id="columns-header">
  93.                                     <h3>BLABLABLA</h3>
  94.                                 </div>
  95.                                 <div id="columns-box">
  96.                                     <div id="columns" style="-webkit-column-width: 375px; font-size: 16px;">
  97.                                         <p>blablabla</p>
  98.                                         <p>blablabla</p>
  99.                                         <p>blablabla</p>
  100.                                         <p>blablabla</p>
  101.                                         <p>blablabla</p>
  102.                                         <p>blablabla</p>
  103.                                         <p>blablabla</p>
  104.                                         <p>blablabla</p>
  105.                                         <p>blablabla</p>
  106.                                         <p>blablabla</p>
  107.                                     </div>
  108.                                 </div>
  109.                             </div>     
  110.                         </div>
  111.                     </div>
  112.                 </div>
  113.             </div>
  114.         </div>
  115.     </body>
  116. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement