box.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. ---
  2. title: Box
  3. layout: documentation
  4. doc-tab: elements
  5. doc-subtab: box
  6. ---
  7. {% include subnav/subnav-elements.html %}
  8. {% capture box_example %}
  9. <div class="box">
  10. <article class="media">
  11. <div class="media-left">
  12. <figure class="image is-64x64">
  13. <img src="{{site.url}}/images/placeholders/128x128.png" alt="Image">
  14. </figure>
  15. </div>
  16. <div class="media-content">
  17. <div class="content">
  18. <p>
  19. <strong>John Smith</strong> <small>@johnsmith</small> <small>31m</small>
  20. <br>
  21. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean efficitur sit amet massa fringilla egestas. Nullam condimentum luctus turpis.
  22. </p>
  23. </div>
  24. <nav class="level is-mobile">
  25. <div class="level-left">
  26. <a class="level-item" aria-label="reply">
  27. <span class="icon is-small">
  28. <i class="fas fa-reply" aria-hidden="true"></i>
  29. </span>
  30. </a>
  31. <a class="level-item" aria-label="retweet">
  32. <span class="icon is-small">
  33. <i class="fas fa-retweet" aria-hidden="true"></i>
  34. </span>
  35. </a>
  36. <a class="level-item" aria-label="like">
  37. <span class="icon is-small">
  38. <i class="fas fa-heart" aria-hidden="true"></i>
  39. </span>
  40. </a>
  41. </div>
  42. </nav>
  43. </div>
  44. </article>
  45. </div>
  46. {% endcapture %}
  47. <section class="section">
  48. <div class="container">
  49. <h1 class="title">Box</h1>
  50. <h2 class="subtitle">
  51. A white <strong>box</strong> to contain other elements
  52. </h2>
  53. {%
  54. include meta.html
  55. colors=false
  56. sizes=false
  57. variables=true
  58. %}
  59. <hr>
  60. <div class="content">
  61. <p>
  62. The <code>.box</code> element is simply a container with a shadow, a border, a radius, and some padding.
  63. <br>
  64. For example, you can include a media object:
  65. </p>
  66. </div>
  67. {% include snippet.html content=box_example more=true %}
  68. {% include variables.html type='element' %}
  69. </div>
  70. </section>