Policy 1707 commit to LF
[policy/engine.git] / POLICY-SDK-APP / src / main / webapp / app / policyApp / CSS / bootstrap / docs / examples / grid / index.html
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">
11
12     <title>Grid Template for Bootstrap</title>
13
14     <!-- Bootstrap core CSS -->
15     <link href="../../dist/css/bootstrap.min.css" rel="stylesheet">
16
17     <!-- Custom styles for this template -->
18     <link href="grid.css" rel="stylesheet">
19
20     <!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
21     <!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
22     <script src="../../assets/js/ie-emulation-modes-warning.js"></script>
23
24     <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
25     <!--[if lt IE 9]>
26       <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
27       <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
28     <![endif]-->
29   </head>
30
31   <body>
32     <div class="container">
33
34       <div class="page-header">
35         <h1>Bootstrap grid examples</h1>
36         <p class="lead">Basic grid layouts to get you familiar with building within the Bootstrap grid system.</p>
37       </div>
38
39       <h3>Three equal columns</h3>
40       <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>
41       <div class="row">
42         <div class="col-md-4">.col-md-4</div>
43         <div class="col-md-4">.col-md-4</div>
44         <div class="col-md-4">.col-md-4</div>
45       </div>
46
47       <h3>Three unequal columns</h3>
48       <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>
49       <div class="row">
50         <div class="col-md-3">.col-md-3</div>
51         <div class="col-md-6">.col-md-6</div>
52         <div class="col-md-3">.col-md-3</div>
53       </div>
54
55       <h3>Two columns</h3>
56       <p>Get two columns <strong>starting at desktops and scaling to large desktops</strong>.</p>
57       <div class="row">
58         <div class="col-md-8">.col-md-8</div>
59         <div class="col-md-4">.col-md-4</div>
60       </div>
61
62       <h3>Full width, single column</h3>
63       <p class="text-warning">No grid classes are necessary for full-width elements.</p>
64
65       <hr>
66
67       <h3>Two columns with two nested columns</h3>
68       <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>
69       <p>At mobile device sizes, tablets and down, these columns and their nested columns will stack.</p>
70       <div class="row">
71         <div class="col-md-8">
72           .col-md-8
73           <div class="row">
74             <div class="col-md-6">.col-md-6</div>
75             <div class="col-md-6">.col-md-6</div>
76           </div>
77         </div>
78         <div class="col-md-4">.col-md-4</div>
79       </div>
80
81       <hr>
82
83       <h3>Mixed: mobile and desktop</h3>
84       <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>
85       <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>
86       <div class="row">
87         <div class="col-xs-12 col-md-8">.col-xs-12 .col-md-8</div>
88         <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
89       </div>
90       <div class="row">
91         <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
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>
95       <div class="row">
96         <div class="col-xs-6">.col-xs-6</div>
97         <div class="col-xs-6">.col-xs-6</div>
98       </div>
99
100       <hr>
101
102       <h3>Mixed: mobile, tablet, and desktop</h3>
103       <p></p>
104       <div class="row">
105         <div class="col-xs-12 col-sm-6 col-lg-8">.col-xs-12 .col-sm-6 .col-lg-8</div>
106         <div class="col-xs-6 col-lg-4">.col-xs-6 .col-lg-4</div>
107       </div>
108       <div class="row">
109         <div class="col-xs-6 col-sm-4">.col-xs-6 .col-sm-4</div>
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>
113
114       <hr>
115
116       <h3>Column clearing</h3>
117       <p><a href="http://getbootstrap.com/css/#grid-responsive-resets">Clear floats</a> at specific breakpoints to prevent awkward wrapping with uneven content.</p>
118       <div class="row">
119         <div class="col-xs-6 col-sm-3">
120           .col-xs-6 .col-sm-3
121           <br>
122           Resize your viewport or check it out on your phone for an example.
123         </div>
124         <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
125
126         <!-- Add the extra clearfix for only the required viewport -->
127         <div class="clearfix visible-xs"></div>
128
129         <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
130         <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
131       </div>
132
133       <hr>
134
135       <h3>Offset, push, and pull resets</h3>
136       <p>Reset offsets, pushes, and pulls at specific breakpoints.</p>
137       <div class="row">
138         <div class="col-sm-5 col-md-6">.col-sm-5 .col-md-6</div>
139         <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>
140       </div>
141       <div class="row">
142         <div class="col-sm-6 col-md-5 col-lg-6">.col-sm-6 .col-md-5 .col-lg-6</div>
143         <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>
144       </div>
145
146
147     </div> <!-- /container -->
148
149
150     <!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
151     <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
152   </body>
153 </html>