forked from cobolab/ionicon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
91 lines (87 loc) · 1.65 KB
/
Copy pathindex.css
File metadata and controls
91 lines (87 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
body {
padding: 40px;
}
body, input {
font-family: "Verdana";
font-size: 14px;
}
body * {
box-sizing: border-box;
}
ul {
display: block;
margin: 0;
padding: 0;
list-style: none;
}
code {
color: red;
background: #ffffff;
}
/* Icon Listing */
.symbol-list {
box-sizing: border-box;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
width: 101.35593%;
-webkit-box-direction: row;
-webkit-box-orient: row;
-webkit-moz-direction: row;
-webkit-moz-orient: row;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: flex-start;
-moz-box-pack: flex-start;
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
-webkit-box-align: stretch;
-moz-box-align: stretch;
-webkit-align-items: stretch;
align-items: stretch;
-ms-flex-align: stretch;
margin-left: -1.35593%;
}
.symbol-list .symbol-box {
-ms-flex-preferred-size: 11.14407%;
-webkit-flex-basis: 11.14407%;
flex-basis: 11.14407%;
margin-left: 1.35593%;
margin-bottom: 1.35593%;
text-align: center;
position: relative;
border: 1px solid #ddd;
background-color: #fff;
height: 100px;
}
.symbol-list .symbol {
display: block;
width: 48px;
height: 48px;
margin: 10px auto;
}
.symbol-list .symbol:before {
font-size: 48px;
}
.symbol-list .label {
display: block;
width: 100%;
position: absolute;
bottom: 0;
left: 0;
border: none;
font: 12px "opensans regular";
line-height: 18px;
background-color: #eee;
padding: 4px 12px;
}
.symbol-list .label:focus {
border-bottom: 1px solid steelblue;
}