-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathicon.html
51 lines (51 loc) · 2 KB
/
icon.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>icons</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"/>
<style>
* {
box-sizing: border-box;
}
.circle {
position: relative;
display: inline-block;
margin: 5px 20px;
border-radius: 50%;
border: 1px solid;
text-align: center;
vertical-align: middle;
}
.small { width: 16px; height: 16px; line-height: 15px; font-size: 10px; }
.medium { width: 48px; height: 48px; line-height: 49px; font-size: 33px; }
.large { width:128px; height:128px; line-height:136px; font-size: 96px; }
.logo { width: 56px; height: 56px; line-height: 58px; font-size: 40px; }
.deflt { background-color: rgb(235,235,235); color: rgb(166,166,166); border-color: rgb(166,166,166); }
.canon { background-color: rgb(232,250,200); color: rgb( 79,138, 16); border-color: rgb( 79,138, 16); }
.notcn { background-color: rgb(255,248,188); color: rgb(159, 96, 0); border-color: rgb(159, 96, 0); }
.badcn { background-color: rgb(255,216,216); color: rgb(216, 0, 12); border-color: rgb(216, 0, 12); }
.toolbar { background-color: rgb(242,242,242); }
.text {
position: absolute;
top: 0;
left: 0;
font-weight: bold;
font-family: Verdana;
text-align: center;
-webkit-filter: opacity(100%);
}
</style>
</head>
<body>
<div class="toolbar">
<div class="circle small deflt"><i class="fa fa-refresh" aria-hidden="true"></i></div><br>
<div class="circle small canon"><i class="fa fa-refresh" aria-hidden="true"></i></div><br>
<div class="circle small notcn"><i class="fa fa-refresh" aria-hidden="true"></i></div><br>
<div class="circle small badcn"><i class="fa fa-refresh" aria-hidden="true"></i></div><br>
</div>
<div class="circle medium canon"><i class="fa fa-refresh" aria-hidden="true"></i></div><br>
<div class="circle large canon"><i class="fa fa-refresh" aria-hidden="true"></i></div><br>
<div class="circle logo canon"><i class="fa fa-refresh" aria-hidden="true"></i></div><br>
</body>
</html>