Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

default.md 3.9 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. ---
  2. title: Typography
  3. ---
  4. ! Details on the full capabilities of Spectre.css can be found in the [Official Spectre Documentation](https://picturepan2.github.io/spectre/elements.html)
  5. The [Quark theme](https://github.com/getgrav/grav-theme-quark) is the new default theme for Grav built with [Spectre.css](https://picturepan2.github.io/spectre/) the lightweight, responsive and modern CSS framework. Spectre provides basic styles for typography, elements, and a responsive layout system that utilizes best practices and consistent language design.
  6. ### Headings
  7. # H1 Heading `40px`
  8. ## H2 Heading `32px`
  9. ### H3 Heading `28px`
  10. #### H4 Heading `24px`
  11. ##### H5 Heading `20px`
  12. ###### H6 Heading `16px`
  13. ```html
  14. # H1 Heading
  15. # H1 Heading `40px`</small>`
  16. <span class="h1">H1 Heading</span>
  17. ```
  18. ### Paragraphs
  19. Lorem ipsum dolor sit amet, consectetur [adipiscing elit. Praesent risus leo, dictum in vehicula sit amet](#), feugiat tempus tellus. Duis quis sodales risus. Etiam euismod ornare consequat.
  20. Climb leg rub face on everything give attitude nap all day for under the bed. Chase mice attack feet but rub face on everything hopped up on goofballs.
  21. ### Markdown Semantic Text Elements
  22. **Bold** `**Bold**`
  23. _Italic_ `_Italic_`
  24. ~~Deleted~~ `~~Deleted~~`
  25. `Inline Code` `` `Inline Code` ``
  26. ### HTML Semantic Text Elements
  27. <abbr>I18N</abbr> `<abbr>`
  28. <cite>Citation</cite> `<cite>`
  29. <kbd>Ctrl + S</kbd> `<kbd>`
  30. Text<sup>Superscripted</sup> `<sup>`
  31. Text<sub>Subscripted</sub> `<sub>`
  32. <u>Underlined</u> `<u>`
  33. <mark>Highlighted</mark> `<mark>`
  34. <time>20:14</time> `<time>`
  35. <var>x = y + 2</var> `<var>`
  36. ### Blockquote
  37. > The advance of technology is based on making it fit in so that you don't really even notice it,
  38. > so it's part of everyday life.
  39. >
  40. > <cite>- Bill Gates</cite>
  41. ```markdown
  42. > The advance of technology is based on making it fit in so that you don't really even notice it,
  43. > so it's part of everyday life.
  44. >
  45. > <cite>- Bill Gates</cite>
  46. ```
  47. ### Unordered List
  48. * list item 1
  49. * list item 2
  50. * list item 2.1
  51. * list item 2.2
  52. * list item 2.3
  53. * list item 3
  54. ```markdown
  55. * list item 1
  56. * list item 2
  57. * list item 2.1
  58. * list item 2.2
  59. * list item 2.3
  60. * list item 3
  61. ```
  62. ### Ordered List
  63. 1. list item 1
  64. 1. list item 2
  65. 1. list item 2.1
  66. 1. list item 2.2
  67. 1. list item 2.3
  68. 1. list item 3
  69. ```markdown
  70. 1. list item 1
  71. 1. list item 2
  72. 1. list item 2.1
  73. 1. list item 2.2
  74. 1. list item 2.3
  75. 1. list item 3
  76. ```
  77. ### Table
  78. | Name | Genre | Release date |
  79. | :-------------------------- | :---------------------------: | -------------------: |
  80. | The Shawshank Redemption | Crime, Drama | 14 October 1994 |
  81. | The Godfather | Crime, Drama | 24 March 1972 |
  82. | Schindler's List | Biography, Drama, History | 4 February 1994 |
  83. | Se7en | Crime, Drama, Mystery | 22 September 1995 |
  84. ```markdown
  85. | Name | Genre | Release date |
  86. | :-------------------------- | :---------------------------: | -------------------: |
  87. | The Shawshank Redemption | Crime, Drama | 14 October 1994 |
  88. | The Godfather | Crime, Drama | 24 March 1972 |
  89. | Schindler's List | Biography, Drama, History | 4 February 1994 |
  90. | Se7en | Crime, Drama, Mystery | 22 September 1995 |
  91. ```
  92. ### Notices
  93. The notices styles are actually provided by the `markdown-notices` plugin but are useful enough to include here:
  94. ! This is a warning notification
  95. !! This is a error notification
  96. !!! This is a default notification
  97. !!!! This is a success notification
  98. ```markdown
  99. ! This is a warning notification
  100. !! This is a error notification
  101. !!! This is a default notification
  102. !!!! This is a success notification
  103. ```