shared.html 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. <!-- Code: Each Link in the Box-->
  42. <ul class="list">
  43. <li><span class="bull">(ICON) (NAME)</span></li>
  44. <li class="href_link_button">
  45. <a href="(Web_link)">
  46. <img src="static/logo/link_logo.png"width="25" height="25">
  47. </a>
  48. </li>
  49. </ul>
  50. <!-- (End) Code: Each Link in the Box (End)-->
  51. <br>
  52. </div>
  53. </div>
  54. <!--(End) Code: Each Group of Box (End)-->
  55. <div class="clearfix"></div>
  56. </div>
  57. <div class="clearfix"></div>
  58. </div>
  59. <div class="clearfix"></div>
  60. {% endblock %}
  61. </div>