shared.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <style>
  4. ul {
  5. list-style-type: none;
  6. float: left;
  7. }
  8. .href_link_button
  9. {
  10. float: right;
  11. }
  12. .list li {
  13. display:inline-block;
  14. vertical-align: middle;
  15. list-style-position: outside;
  16. list-style-type: disc;
  17. margin-right: 1em;
  18. text-align: left;
  19. white-space: nowrap;
  20. list-style-type: none;
  21. }
  22. .bull {
  23. display:list-item
  24. }
  25. </style>
  26. <div class="mx-auto text-center">
  27. <h1>Shared Hometab</h1>
  28. <div class="container">
  29. <div class="row">
  30. <div class="col-md-12 col-sm-12">
  31. <div class="section-title">
  32. <h1 class="heading bold">List of bookmarks you have created</h1>
  33. <hr>
  34. </div>
  35. </div>
  36. <!-- Code: Each Group of Box-->
  37. <div class="col-lg-4 col-md-4 col-sm-4">
  38. <div class="inner_box">
  39. <h3>(Group1)</h3>
  40. <hr>
  41. <ul class="list">
  42. <li><span class="bull">(ICON) (NAME) (STATUS)</span></li>
  43. <li class="href_link_button">
  44. <a href="http://127.0.0.1:5000/">
  45. <img src="static/logo/link_logo.png"width="25" height="25">
  46. </a>
  47. <button type="submit">Edit</button>
  48. </li>
  49. </ul>
  50. <ul class="list">
  51. <li><span class="bull">(ICON) (NAME) (STATUS)</span></li>
  52. <li class="href_link_button">
  53. <a href="http://127.0.0.1:5000/">
  54. <img src="static/logo/link_logo.png"width="25" height="25">
  55. </a>
  56. <button type="submit">Edit</button>
  57. </li>
  58. </ul>
  59. <br>
  60. </div>
  61. </div>
  62. <!--(End) Code: Each Group of Box (End)-->
  63. <div class="clearfix"></div>
  64. </div>
  65. <div class="clearfix"></div>
  66. </div>
  67. {% endblock %}
  68. </div>