template.html 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>{{font_name}} v{{font_version}} Cheatsheet</title>
  5. <style>
  6. * {
  7. -moz-box-sizing: border-box;
  8. -webkit-box-sizing: border-box;
  9. box-sizing: border-box;
  10. margin: 0;
  11. padding: 0;
  12. -webkit-touch-callout: none;
  13. -webkit-user-select: none;
  14. -khtml-user-select: none;
  15. -moz-user-select: none;
  16. -ms-user-select: none;
  17. user-select: none;
  18. }
  19. body {
  20. background: #fff;
  21. color: #444;
  22. font: 16px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif;
  23. }
  24. a, a:visited {
  25. color: #888;
  26. text-decoration: underline;
  27. }
  28. a:hover, a:focus { color: #000; }
  29. header {
  30. border-bottom: 2px solid #ddd;
  31. margin-bottom: 20px;
  32. overflow: hidden;
  33. padding: 20px 0;
  34. }
  35. header h1 {
  36. color: #888;
  37. float: left;
  38. font-size: 36px;
  39. font-weight: 300;
  40. }
  41. header a {
  42. float: right;
  43. font-size: 14px;
  44. }
  45. .container {
  46. margin: 0 auto;
  47. max-width: 1200px;
  48. min-width: 960px;
  49. padding: 0 20px;
  50. width: 95%;
  51. }
  52. .icon-row {
  53. border-bottom: 1px dotted #ccc;
  54. padding: 10px 0 20px;
  55. margin-bottom: 20px;
  56. }
  57. .ion {
  58. -webkit-touch-callout: text;
  59. -webkit-user-select: text;
  60. -khtml-user-select: text;
  61. -moz-user-select: text;
  62. -ms-user-select: text;
  63. user-select: text;
  64. }
  65. .preview-icon { vertical-align: bottom; }
  66. .preview-scale {
  67. color: #888;
  68. font-size: 12px;
  69. margin-top: 5px;
  70. }
  71. .step {
  72. display: inline-block;
  73. line-height: 1;
  74. position: relative;
  75. width: 10%;
  76. }
  77. .step i {
  78. -webkit-transition: opacity .3s;
  79. -moz-transition: opacity .3s;
  80. -ms-transition: opacity .3s;
  81. -o-transition: opacity .3s;
  82. transition: opacity .3s;
  83. }
  84. .step:hover i { opacity: .3; }
  85. .size-12 { font-size: 12px; }
  86. .size-14 { font-size: 14px; }
  87. .size-16 { font-size: 16px; }
  88. .size-18 { font-size: 18px; }
  89. .size-21 { font-size: 21px; }
  90. .size-24 { font-size: 24px; }
  91. .size-32 { font-size: 32px; }
  92. .size-48 { font-size: 48px; }
  93. .size-64 { font-size: 64px; }
  94. .size-96 { font-size: 96px; }
  95. .usage { margin-top: 10px; }
  96. .usage input {
  97. font-family: monospace;
  98. margin-right: 3px;
  99. padding: 2px 5px;
  100. text-align: center;
  101. -webkit-touch-callout: text;
  102. -webkit-user-select: text;
  103. -khtml-user-select: text;
  104. -moz-user-select: text;
  105. -ms-user-select: text;
  106. user-select: text;
  107. }
  108. .usage label {
  109. font-size: 12px;
  110. text-align: right;
  111. padding: 0 3px 0 60px;
  112. }
  113. .usage label:first-child { padding-left: 0; }
  114. .usage .name { width: 180px; }
  115. .usage .html { width: 80px; }
  116. .usage .css { width: 80px; }
  117. footer {
  118. color: #888;
  119. font-size: 12px;
  120. padding: 20px 0;
  121. }
  122. </style>
  123. <link href="css/ionicons.css" rel="stylesheet" type="text/css" />
  124. </head>
  125. <body>
  126. <div class="container">
  127. <header>
  128. <h1>{{font_name}} v{{font_version}} Cheatsheet, {{icon_count}} icons:</h1>
  129. <p><a href="http://ionicons.com/">Ionicons Homepage</a></p>
  130. </header>
  131. <div class="content">
  132. {{content}}
  133. </div>
  134. <footer>
  135. Made with love by the <a href="http://ionicframework.com/">Ionic Framework</a>
  136. </footer>
  137. </div>
  138. </body>
  139. </html>