Skip to content

Instantly share code, notes, and snippets.

@iamniels
Created July 21, 2020 13:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iamniels/de93269e725b622df3cde557c7300c70 to your computer and use it in GitHub Desktop.
Save iamniels/de93269e725b622df3cde557c7300c70 to your computer and use it in GitHub Desktop.
Inbound logistics - landscape phone test
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://bootswatch.com/4/darkly/bootstrap.min.css" crossorigin="anonymous">
<script src="https://unpkg.com/feather-icons"></script>
<title>Hello, world!</title>
<style>
html {
font-size: 23px;
}
</style>
</head>
<body>
<table class="table">
<thead>
<tr>
<th>SKU</th>
<th>Qty</th>
<th>Scan</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<i data-feather="image"></i> iphone 9282<br/>
<small>Apple iPhone 99</small>
</td>
<td>
<input style="width:60px" value="3"> <a class="btn-success btn">+</a> <a class="btn-danger btn">-</a>
</td>
<td>
<small>EAN</small>
</td>
</tr>
<tr>
<td>
<i data-feather="alert-triangle" style="color:orange"></i> T-B<br/>
<small>Samsung Galaxy Buds</small>
</td>
<td>
<input style="width:60px" value="999"> <a class="btn-success btn">+</a> <a class="btn-danger btn">-</a>
</td>
<td>
<a class="btn btn-info"><i data-feather="printer"></i></a>
</td>
</tr>
<tr>
<td>
62js++<br/>
<small>Philips CRT screen</small>
</td>
<td>
<input style="width:60px" value="4"> <a class="btn-success btn">+</a> <a class="btn-danger btn">-</a>
</td>
<td>
<small>SERIALS</small>
</td>
</tr>
<tr>
<td>
<i data-feather="image"></i> YYTT3468<br/>
<small>Not really a product</small>
</td>
<td>
<input style="width:60px" value="10"> <a class="btn-success btn">+</a> <a class="btn-danger btn">-</a>
</td>
<td>
<small>SERIALS</small>
</td>
</tr>
</tbody>
</table>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
<script>
feather.replace()
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment