xmake-icons.html 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>xmake-icons</title>
  6. <style>
  7. body {
  8. font-family: sans-serif;
  9. margin: 0;
  10. padding: 10px 20px;
  11. text-align: center;
  12. }
  13. .preview {
  14. width: 100px;
  15. display: inline-block;
  16. margin: 10px;
  17. }
  18. .preview .inner {
  19. display: inline-block;
  20. width: 100%;
  21. text-align: center;
  22. background: #f5f5f5;
  23. -webkit-border-radius: 3px 3px 0 0;
  24. -moz-border-radius: 3px 3px 0 0;
  25. border-radius: 3px 3px 0 0;
  26. }
  27. .preview .inner {
  28. line-height: 85px;
  29. font-size: 40px;
  30. color: #333;
  31. }
  32. .label {
  33. display: inline-block;
  34. width: 100%;
  35. box-sizing: border-box;
  36. padding: 5px;
  37. font-size: 10px;
  38. font-family: Monaco, monospace;
  39. color: #666;
  40. white-space: nowrap;
  41. overflow: hidden;
  42. text-overflow: ellipsis;
  43. background: #ddd;
  44. -webkit-border-radius: 0 0 3px 3px;
  45. -moz-border-radius: 0 0 3px 3px;
  46. border-radius: 0 0 3px 3px;
  47. color: #666;
  48. }
  49. </style>
  50. <link rel="stylesheet" type="text/css" href="xmake-icons.css" />
  51. </head>
  52. <body>
  53. <h1>xmake-icons</h1>
  54. <div class="preview">
  55. <span class="inner">
  56. <i class="icon icon-xmake-logo"></i>
  57. </span>
  58. <br>
  59. <span class='label'>xmake-logo</span>
  60. </div>
  61. <div class="preview">
  62. <span class="inner">
  63. <i class="icon icon-xmake-build"></i>
  64. </span>
  65. <br>
  66. <span class='label'>xmake-build</span>
  67. </div>
  68. </body>
  69. </html>