layout.html 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Layout - Puppertino Framework</title>
  5. <link
  6. href="https://rsms.me/inter/inter.css"
  7. rel="stylesheet"
  8. />
  9. <link
  10. rel="stylesheet"
  11. href="https://cdn.jsdelivr.net/npm/flexboxgrid@6.3.1/dist/flexboxgrid.min.css"
  12. />
  13. <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/codedgar/Puppertino@latest/dist/css/newfull.css" />
  14. <meta
  15. name="viewport"
  16. content="width=device-width, initial-scale=1, shrink-to-fit=no"
  17. />
  18. <meta http-equiv="x-ua-compatible" content="ie=edge" />
  19. <link rel="stylesheet" type="text/css" href="doc.css" />
  20. <meta
  21. name="description"
  22. content="This is the documentation for layout on the Puppertino Framework, a framework that mimics Apple's design, woof!"
  23. />
  24. <link rel="icon" type="image/png" href="../landing-images/doggo.png" />
  25. <!-- Global site tag (gtag.js) - Google Analytics -->
  26. <script async src="https://www.googletagmanager.com/gtag/js?id=UA-176821843-1"></script>
  27. <script>
  28. window.dataLayer = window.dataLayer || [];
  29. function gtag(){dataLayer.push(arguments);}
  30. gtag('js', new Date());
  31. gtag('config', 'UA-176821843-1');
  32. </script>
  33. </head>
  34. <body class="p-layout">
  35. <div class="route">
  36. <a
  37. href="https://codedgar.github.io/Puppertino/"
  38. class="p-btn p-btn-scope p-btn-scope-unactive"
  39. >Puppertino</a
  40. >
  41. <p>/</p>
  42. <a href="index.html" class="p-btn p-btn-scope p-btn-scope-unactive"
  43. >Examples</a
  44. >
  45. <p>/</p>
  46. <a href="layout.html" class="p-btn p-btn-scope">Layout</a>
  47. </div>
  48. <h1>Layout</h1>
  49. <div class="master">
  50. <p>
  51. Text is the motor of websites and apps. Without them there would be no
  52. actual usage for them. So in Puppertino we created a font sizing to rule
  53. them all. Puppertino includes a base font called <strong>Inter</strong>.
  54. We also have included a curated list of font sizes. You can use the
  55. layout component using the
  56. <a
  57. href="https://github.com/codedgar/Puppertino/blob/master/dist/css/layout.css"
  58. target="_blank"
  59. >CSS of Layout</a
  60. >
  61. or
  62. <a
  63. href="https://github.com/codedgar/Puppertino/blob/master/dist/css/newfull.css"
  64. target="_blank"
  65. >downloading the full CSS</a
  66. >
  67. (Not recommended if you are just going to use this component).
  68. </p>
  69. <div class="talk-about-it">
  70. <div class="row middle-xs around-xs">
  71. <div class="col-xs-9 col-md-4">
  72. <h1 class="p-large-title">Aa<br />Inter</h1>
  73. </div>
  74. <div class="col-xs-9 col-md-4">
  75. <p>
  76. The font is defined in every CSS that exists, it can be change easily if you desire to use another one.
  77. </p>
  78. </div>
  79. </div>
  80. </div>
  81. <div class="talk-about-it">
  82. <h2>Layout.</h2>
  83. <p>
  84. We have included a curated list of font sizes for you to use based on
  85. human guidelines and transformed into <strong>rem</strong> for
  86. accesibility. You can use all of these font sizes just by adding the
  87. <code class="code">p-layout</code> class to your body tag. And it
  88. looks like this:
  89. </p>
  90. <h1>Title 1 (h1)</h1>
  91. <h2>Title 2 (h2)</h2>
  92. <h3>Title 3 (h3)</h3>
  93. <p>Content (p)</p>
  94. </div>
  95. <div class="talk-about-it">
  96. <h2>Other classes.</h2>
  97. <p>
  98. There also are other classes that feature other optional sizes. These
  99. sizes can come in handy in other types of scenarios.
  100. </p>
  101. <h1 class="p-large-title">Large Title (p-large-title)</h1>
  102. <h3 class="p-headline">Title 3 (p-headline)</h3>
  103. <p class="p-callout">Callout (p-callout)</p>
  104. <p class="p-subhead">Subhead (p-subhead)</p>
  105. <p class="p-footnote">Footnote (p-footnote)</p>
  106. <p class="p-caption">Caption (p-caption)</p>
  107. </div>
  108. </div>
  109. </body>
  110. <script src="https://cdn.jsdelivr.net/gh/codedgar/Puppertino@latest/src/js/dakmode_manager.js"></script>
  111. </html>