| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>xmake-icons</title>
- <style>
- body {
- font-family: sans-serif;
- margin: 0;
- padding: 10px 20px;
- text-align: center;
- }
- .preview {
- width: 100px;
- display: inline-block;
- margin: 10px;
- }
- .preview .inner {
- display: inline-block;
- width: 100%;
- text-align: center;
- background: #f5f5f5;
- -webkit-border-radius: 3px 3px 0 0;
- -moz-border-radius: 3px 3px 0 0;
- border-radius: 3px 3px 0 0;
- }
- .preview .inner {
- line-height: 85px;
- font-size: 40px;
- color: #333;
- }
- .label {
- display: inline-block;
- width: 100%;
- box-sizing: border-box;
- padding: 5px;
- font-size: 10px;
- font-family: Monaco, monospace;
- color: #666;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- background: #ddd;
- -webkit-border-radius: 0 0 3px 3px;
- -moz-border-radius: 0 0 3px 3px;
- border-radius: 0 0 3px 3px;
- color: #666;
- }
- </style>
- <link rel="stylesheet" type="text/css" href="xmake-icons.css" />
- </head>
- <body>
- <h1>xmake-icons</h1>
- <div class="preview">
- <span class="inner">
- <i class="icon icon-xmake-logo"></i>
- </span>
- <br>
- <span class='label'>xmake-logo</span>
- </div>
- <div class="preview">
- <span class="inner">
- <i class="icon icon-xmake-build"></i>
- </span>
- <br>
- <span class='label'>xmake-build</span>
- </div>
- </body>
- </html>
|