Brought in bootstrap-rtl and validate.js packages via bower for Matrix's patient...
[openemr.git] / public / assets / bootstrap-rtl-3-3-4 / examples / originals / examples / grid / index.html
blob6f92b92edceaf84ef5f832d3d4838ad8fdd7bdba
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <meta http-equiv="X-UA-Compatible" content="IE=edge">
6 <meta name="viewport" content="width=device-width, initial-scale=1">
7 <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
8 <meta name="description" content="">
9 <meta name="author" content="">
10 <link rel="icon" href="../../favicon.ico">
12 <title>Grid Template for Bootstrap</title>
14 <!-- Bootstrap core CSS -->
15 <link href="../../dist/css/bootstrap.min.css" rel="stylesheet">
16 <link href="../../dist/css/bootstrap-rtl.min.css" rel="stylesheet">
18 <!-- Custom styles for this template -->
19 <link href="grid.css" rel="stylesheet">
21 <!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
22 <!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
23 <script src="../../assets/js/ie-emulation-modes-warning.js"></script>
25 <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
26 <!--[if lt IE 9]>
27 <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
28 <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
29 <![endif]-->
30 </head>
32 <body>
33 <div class="container">
35 <div class="page-header">
36 <h1>Bootstrap grid examples</h1>
37 <p class="lead">Basic grid layouts to get you familiar with building within the Bootstrap grid system.</p>
38 </div>
40 <h3>Three equal columns</h3>
41 <p>Get three equal-width columns <strong>starting at desktops and scaling to large desktops</strong>. On mobile devices, tablets and below, the columns will automatically stack.</p>
42 <div class="row">
43 <div class="col-md-4">.col-md-4</div>
44 <div class="col-md-4">.col-md-4</div>
45 <div class="col-md-4">.col-md-4</div>
46 </div>
48 <h3>Three unequal columns</h3>
49 <p>Get three columns <strong>starting at desktops and scaling to large desktops</strong> of various widths. Remember, grid columns should add up to twelve for a single horizontal block. More than that, and columns start stacking no matter the viewport.</p>
50 <div class="row">
51 <div class="col-md-3">.col-md-3</div>
52 <div class="col-md-6">.col-md-6</div>
53 <div class="col-md-3">.col-md-3</div>
54 </div>
56 <h3>Two columns</h3>
57 <p>Get two columns <strong>starting at desktops and scaling to large desktops</strong>.</p>
58 <div class="row">
59 <div class="col-md-8">.col-md-8</div>
60 <div class="col-md-4">.col-md-4</div>
61 </div>
63 <h3>Full width, single column</h3>
64 <p class="text-warning">No grid classes are necessary for full-width elements.</p>
66 <hr>
68 <h3>Two columns with two nested columns</h3>
69 <p>Per the documentation, nesting is easy—just put a row of columns within an existing column. This gives you two columns <strong>starting at desktops and scaling to large desktops</strong>, with another two (equal widths) within the larger column.</p>
70 <p>At mobile device sizes, tablets and down, these columns and their nested columns will stack.</p>
71 <div class="row">
72 <div class="col-md-8">
73 .col-md-8
74 <div class="row">
75 <div class="col-md-6">.col-md-6</div>
76 <div class="col-md-6">.col-md-6</div>
77 </div>
78 </div>
79 <div class="col-md-4">.col-md-4</div>
80 </div>
82 <hr>
84 <h3>Mixed: mobile and desktop</h3>
85 <p>The Bootstrap 3 grid system has four tiers of classes: xs (phones), sm (tablets), md (desktops), and lg (larger desktops). You can use nearly any combination of these classes to create more dynamic and flexible layouts.</p>
86 <p>Each tier of classes scales up, meaning if you plan on setting the same widths for xs and sm, you only need to specify xs.</p>
87 <div class="row">
88 <div class="col-xs-12 col-md-8">.col-xs-12 .col-md-8</div>
89 <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
90 </div>
91 <div class="row">
92 <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
93 <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
94 <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
95 </div>
96 <div class="row">
97 <div class="col-xs-6">.col-xs-6</div>
98 <div class="col-xs-6">.col-xs-6</div>
99 </div>
101 <hr>
103 <h3>Mixed: mobile, tablet, and desktop</h3>
104 <p></p>
105 <div class="row">
106 <div class="col-xs-12 col-sm-6 col-lg-8">.col-xs-12 .col-sm-6 .col-lg-8</div>
107 <div class="col-xs-6 col-lg-4">.col-xs-6 .col-lg-4</div>
108 </div>
109 <div class="row">
110 <div class="col-xs-6 col-sm-4">.col-xs-6 .col-sm-4</div>
111 <div class="col-xs-6 col-sm-4">.col-xs-6 .col-sm-4</div>
112 <div class="col-xs-6 col-sm-4">.col-xs-6 .col-sm-4</div>
113 </div>
115 <hr>
117 <h3>Column clearing</h3>
118 <p><a href="http://getbootstrap.com/css/#grid-responsive-resets">Clear floats</a> at specific breakpoints to prevent awkward wrapping with uneven content.</p>
119 <div class="row">
120 <div class="col-xs-6 col-sm-3">
121 .col-xs-6 .col-sm-3
122 <br>
123 Resize your viewport or check it out on your phone for an example.
124 </div>
125 <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
127 <!-- Add the extra clearfix for only the required viewport -->
128 <div class="clearfix visible-xs"></div>
130 <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
131 <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
132 </div>
134 <hr>
136 <h3>Offset, push, and pull resets</h3>
137 <p>Reset offsets, pushes, and pulls at specific breakpoints.</p>
138 <div class="row">
139 <div class="col-sm-5 col-md-6">.col-sm-5 .col-md-6</div>
140 <div class="col-sm-5 col-sm-offset-2 col-md-6 col-md-offset-0">.col-sm-5 .col-sm-offset-2 .col-md-6 .col-md-offset-0</div>
141 </div>
142 <div class="row">
143 <div class="col-sm-6 col-md-5 col-lg-6">.col-sm-6 .col-md-5 .col-lg-6</div>
144 <div class="col-sm-6 col-md-5 col-md-offset-2 col-lg-6 col-lg-offset-0">.col-sm-6 .col-md-5 .col-md-offset-2 .col-lg-6 .col-lg-offset-0</div>
145 </div>
148 </div> <!-- /container -->
151 <!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
152 <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
153 </body>
154 </html>