Last active
April 27, 2017 11:56
-
-
Save cosemansp/f22863dea94cf5f334446a51877a06ee to your computer and use it in GitHub Desktop.
Angular Workshop - Xerius
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
/* style.css */ | |
.flex-grid { | |
display: flex; | |
flex-wrap: wrap; | |
justify-content: space-between; | |
} | |
.col { | |
width: 32%; | |
} |
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
<h3>Panel View</h3> | |
<div class="flex-grid"> | |
<div class="col"> | |
<div class="panel panel-default"> | |
<div class="panel-heading">John Doo</div> | |
<div class="panel-body"> | |
<img src="http://api.randomuser.me/portraits/lego/2.jpg" width="100%"> | |
<table class="table"> | |
<tbody> | |
<tr> | |
<td><strong>Company:</strong></td> | |
<td>Euricom</td> | |
</tr> | |
<tr> | |
<td><strong>Email:</strong></td> | |
<td>[email protected]</td> | |
</tr> | |
<tr> | |
<td><strong>Age:</strong></td> | |
<td>54</td> | |
</tr> | |
<tr> | |
<td><strong>Street:</strong></td> | |
<td>Langeleemstraat 21</td> | |
</tr> | |
<tr> | |
<td><strong>City:</strong></td> | |
<td>Antwerp</td> | |
</tr> | |
</tbody> | |
</table> | |
</div> | |
</div> | |
</div> | |
</div> |
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
<div> | |
<h3>Table View</h3> | |
<table class="table"> | |
<thead> | |
<tr> | |
<th>First</th> | |
<th>Last</th> | |
<th>Email</th> | |
<th>Age</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>John</td> | |
<td>Doo</td> | |
<td>[email protected]</td> | |
<td>54</td> | |
</tr> | |
</tbody> | |
</table> | |
</div> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment