Created
September 19, 2016 18:23
-
-
Save fatihtoprak/8200dd8f7616f022f4634fd9cb03f11e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Bootstrap test</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> | |
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> | |
| <style> | |
| body {margin:0;padding:0;} | |
| .sol { background:#dd0000;display:block;height:500px;} | |
| .sag { background:#333;display:block;height:500px;} | |
| .video { | |
| float:left; | |
| width:100%; | |
| background:yellow; | |
| height:120px; | |
| margin:0px 0px 20px 0; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <div class="row"> | |
| <div class="col-md-10"> | |
| <div class="sol"> | |
| <div class="row"> | |
| <div class="col-md-3 col-sm-6 col-xs-6"> | |
| <div class="video">Video İçerik</div> | |
| </div> | |
| <div class="col-md-3 col-sm-6 col-xs-6"> | |
| <div class="video">Video İçerik</div> | |
| </div> | |
| <div class="col-md-3 col-sm-6 col-xs-6"> | |
| <div class="video">Video İçerik</div> | |
| </div> | |
| <div class="col-md-3 col-sm-6 col-xs-6"> | |
| <div class="video">Video İçerik</div> | |
| </div> | |
| <div class="col-md-3 col-sm-6 col-xs-6"> | |
| <div class="video">Video İçerik</div> | |
| </div> | |
| <div class="col-md-3 col-sm-6 col-xs-6"> | |
| <div class="video">Video İçerik</div> | |
| </div> | |
| <div class="col-md-3 col-sm-6 col-xs-6"> | |
| <div class="video">Video İçerik</div> | |
| </div> | |
| <div class="col-md-3 col-sm-6 col-xs-6"> | |
| <div class="video">Video İçerik</div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="col-md-2 hidden-xs hidden-sm"> | |
| <div class="sag"> | |
| Sidebar | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment