-
Notifications
You must be signed in to change notification settings - Fork 0
/
logo-square-qrcode.html
98 lines (87 loc) · 1.88 KB
/
logo-square-qrcode.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
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
92
93
94
95
96
97
98
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<style>
@font-face {
font-family: Cascadia;
src: url('Cascadia.ttf')
}
body {
display: flex;
justify-content: center;
align-items: center;
font-family: Montserrat, sans-serif;
font-weight: bold;
}
.logo {
display: flex;
}
.left .abc {
display: flex;
justify-content: center;
align-items: center;
width: 100px;
height: 100px;
background: #24292e;
color: white;
font-size: 61.8px;
}
.right {
position: relative;
width: 188px;
height: 300px;
background: #24292e;
display: flex;
align-items: center;
margin-left: 12px;
}
.right .key {
position: relative;
left: -19px;
top: 72px;
letter-spacing: 12px;
font-size: 90px;
color: #fff;
}
.right .qrcode {
position: absolute;
width: 70%;
top: 27px;
left: 0;
right: 0;
margin: 0 auto;
}
.github {
display: block;
background: transparent;
width: 100%;
height: 100%;
position: fixed;
}
.slogan {
text-align: center;
line-height: 1;
font-size: 34px;
margin-top: 34px;
}
</style>
</head>
<body>
<a class="github" href="https://github.com/abclib"></a>
<div>
<div class="logo">
<div class="left">
<div class="abc">A</div>
<div class="abc">B</div>
<div class="abc">C</div>
</div>
<div class="right">
<img class="qrcode" src="./assets/qrcode.png">
<span class="key">Key</span>
</div>
</div>
<div class="slogan"> A BlockChain Key</div>
</div>
</body>
</html>