| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>edu-icon-demo</title>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="stylesheet" href="../css/icons.css"></head>
- <body>
- <style>
- body {
- padding: 0;
- margin: 0;
- font-family: sans-serif;
- font-size: 1em;
- line-height: 1.5;
- color: #555;
- background: #fff;
- }
- h1 {
- font-size: 1.5em;
- font-weight: normal;
- }
- small {
- font-size: .66666667em;
- }
- a {
- color: #e74c3c;
- text-decoration: none;
- }
- a:hover, a:focus {
- box-shadow: 0 1px #e74c3c;
- }
- .bshadow0, input {
- box-shadow: inset 0 -2px #e7e7e7;
- }
- input:hover {
- box-shadow: inset 0 -2px #ccc;
- }
- input, fieldset {
- font-family: sans-serif;
- font-size: 1em;
- margin: 0;
- padding: 0;
- border: 0;
- }
- input {
- color: inherit;
- line-height: 1.5;
- height: 1.5em;
- padding: .25em 0;
- }
- input:focus {
- outline: none;
- box-shadow: inset 0 -2px #449fdb;
- }
- .glyph {
- font-size: 16px;
- width: 15em;
- padding-bottom: 1em;
- margin-right: 4em;
- margin-bottom: 1em;
- float: left;
- overflow: hidden;
- }
- .liga {
- width: 80%;
- width: calc(100% - 2.5em);
- }
- .talign-right {
- text-align: right;
- }
- .talign-center {
- text-align: center;
- }
- .bgc1 {
- background: #f1f1f1;
- }
- .fgc1 {
- color: #999;
- }
- .fgc0 {
- color: #000;
- }
- p {
- margin-top: 1em;
- margin-bottom: 1em;
- }
- .mvm {
- margin-top: .75em;
- margin-bottom: .75em;
- }
- .mtn {
- margin-top: 0;
- }
- .mtl, .mal {
- margin-top: 1.5em;
- }
- .mbl, .mal {
- margin-bottom: 1.5em;
- }
- .mal, .mhl {
- margin-left: 1.5em;
- margin-right: 1.5em;
- }
- .mhmm {
- margin-left: 1em;
- margin-right: 1em;
- }
- .mls {
- margin-left: .25em;
- }
- .ptl {
- padding-top: 1.5em;
- }
- .pbs, .pvs {
- padding-bottom: .25em;
- }
- .pvs, .pts {
- padding-top: .25em;
- }
- .unit {
- float: left;
- }
- .unitRight {
- float: right;
- }
- .size1of2 {
- width: 50%;
- }
- .size1of1 {
- width: 100%;
- }
- .clearfix:before, .clearfix:after {
- content: " ";
- display: table;
- }
- .clearfix:after {
- clear: both;
- }
- .hidden-true {
- display: none;
- }
- .textbox0 {
- width: 3em;
- background: #f1f1f1;
- padding: .25em .5em;
- line-height: 1.5;
- height: 1.5em;
- }
- #testDrive {
- display: block;
- padding-top: 24px;
- line-height: 1.5;
- }
- .fs0 {
- font-size: 16px;
- }
- .fs1 {
- font-size: 32px;
- }
- </style>
- <div class="bgc1 clearfix">
- <h1 class="mhmm mvm">
- <span class="fgc1">Font Name:</span> ux-icon-edu
-      
- <span class="fgc1">total:</span> <%= total %>
- </h1>
- </div>
- <div class="clearfix mhl ptl">
- <h1 class="mvm mtn fgc1"></h1>
- <% arr.forEach((item) => {%>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="<%= item.key %>"></span>
- <span class="mls"> <%= item.key %></span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="<%= item.value %>" class="unit size1of2" />
- <input type="text" maxlength="1" readonly class="unitRight size1of2 talign-right" />
- </fieldset>
- </div>
- <%});%>
- </div>
- <div class="bgc1 clearfix">
- <p class="mhl">Generated by <a href="https://icomoon.io/app">hzchenqinhui@corp.163.com</a></p>
- </div>
- </body>
- </html>
|