examples.html 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <title>min - examples</title>
  8. <link href="entireframework.min.css" rel="stylesheet" type="text/css" />
  9. <!--[if lt IE 9]>
  10. <style>
  11. html {
  12. overflow-x: hidden;
  13. }
  14. </style>
  15. <![endif]-->
  16. <style type="text/css">
  17. /* Min+ plugin*/
  18. message {
  19. display: block;
  20. padding: 2em;
  21. background: #def;
  22. border-left: 5px solid #44e;
  23. }
  24. .warning {
  25. border-color: #e44;
  26. background: #fdd;
  27. }
  28. .great {
  29. border-color: #2d2;
  30. background: #dfd;
  31. }
  32. /* Fun h1s */
  33. h1:not(.exampleh1) {
  34. margin: 0.2em 0;
  35. border-bottom: 5px solid;
  36. margin-bottom: 15px;
  37. padding-bottom: 5px;
  38. }
  39. .fourways {
  40. color: #666;
  41. margin-bottom: 0;
  42. }
  43. small {
  44. color: #6b6;
  45. font-size: 0.6em;
  46. }
  47. /* New css */
  48. img {
  49. border: 1px solid;
  50. border-radius: 6px;
  51. align-self: center;
  52. vertical-align: middle;
  53. margin-right: 10px;
  54. }
  55. a {
  56. color: #5583bb;
  57. }
  58. </style>
  59. <!--[if lte IE 6]>
  60. <style>
  61. .col {
  62. margin: 0.5%;
  63. }
  64. .c12 {
  65. margin: 0.5%;
  66. margin-left: 0.5%;
  67. width: 97%;
  68. }
  69. .container {
  70. width: 90%;
  71. }
  72. </style>
  73. <![endif]-->
  74. </head>
  75. <body>
  76. <nav class="nav" tabindex="-1" onclick="this.focus()">
  77. <div class="container">
  78. <a class="pagename current" href="index.html">Min</a>
  79. <a href="docs.html">Docs</a>
  80. <!--
  81. <a href="bootstrapconverter.html">Bootstrap Converter</a>
  82. <a href="examples.html">Examples</a>
  83. -->
  84. <a href="download.html">Download</a>
  85. <a class="current" href="#">Examples</a>
  86. <a href="https://github.com/owenversteeg/min">Github</a>
  87. </div>
  88. </nav>
  89. <button class="btn btn-sm btn-close">×</button>
  90. <div class="container">
  91. <h1>Examples</h1>
  92. <p>
  93. All of these examples are completely free to use, copy, and distribute however you like; they are all MIT licensed.
  94. <br><br>
  95. <a href="example.html"><img class="exampleimg" src="example-1.jpg">Basic Page w/Nav</a>
  96. <br><br>
  97. <a href="example2.html"><img class="exampleimg" src="example-2.jpg">Standard Page w/Hero</a>
  98. <br><br>
  99. <a href="example3.html"><img class="exampleimg" src="example-3.jpg">Page w/More Elements</a>
  100. </p>
  101. </div>
  102. <script src="compiledcss.js" type="text/javascript"></script>
  103. <script src="download.js" type="text/javascript"></script>
  104. <script type="text/javascript">
  105. function downloadJSAtOnload() {
  106. var element = document.createElement("script");
  107. element.src = "defer.js";
  108. document.body.appendChild(element);
  109. }
  110. if (window.addEventListener)
  111. window.addEventListener("load", downloadJSAtOnload, false);
  112. else if (window.attachEvent)
  113. window.attachEvent("onload", downloadJSAtOnload);
  114. else window.onload = downloadJSAtOnload;
  115. </script>
  116. <script src="defer.js"></script>
  117. </body>
  118. </html>