-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (108 loc) · 3.09 KB
/
index.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<html>
<head>
<meta charset="utf-8">
<meta content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" name="viewport">
<title>Code and Coffe 💻 ☕ </title>
<link rel="shortcut icon" type="image/x-icon" href="css/code.png">
<style>
html,
body {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
background-color: #F7F8FB;
height: 100%;
-webkit-font-smoothing: antialiased;
}
body {
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.message {
text-align: center;
align-self: center;
display: flex;
flex-direction: column;
align-items: center;
padding: 0px 20px;
max-width: 450px;
}
.message__title {
font-size: 18px;
font-weight: 100;
margin-top: 15px;
color: #47494E;
margin-bottom: 8px;
}
p {
-webkit-margin-after: 0px;
-webkit-margin-before: 0px;
font-size: 15px;
color: #7F828B;
line-height: 21px;
margin-bottom: 4px;
}
.btn {
text-decoration: none;
padding: 8px 15px;
border-radius: 4px;
margin-top: 10px;
font-size: 14px;
color: #7F828B;
border: 1px solid #7F828B;
}
.hk-logo,
.app-icon {
fill: #DBE1EC;
}
.info {
fill: #9FABBC;
}
body.friendly {
background: -webkit-linear-gradient(-45deg, #83640B 0%, #74a8c3 100%);
background: linear-gradient(135deg, #83640B 0%, #74a8c3 100%);
}
body.friendly .message__title {
color: #fff;
}
body.friendly p {
color: rgba(255, 255, 255, 0.6);
}
body.friendly .hk-logo,
body.friendly .app-icon {
fill: rgba(255, 255, 255, 0.9);
}
body.friendly .info {
fill: rgba(255, 255, 255, 0.9);
}
body.friendly .btn {
color: #fff;
border: 1px solid rgba(255, 255, 255, 0.9);
}
.info_area {
position: fixed;
right: 12px;
bottom: 12px;
}
.logo {
position: fixed;
left: 12px;
bottom: 12px;
}
</style>
<base target="_parent"> </head>
<body class="friendly" cz-shortcut-listen="true">
<div class="spacer"></div>
<div class="message">
<img style="width: 40px; height: 46px" src="css/code.svg">
<div class="message__title"> 💻 Coding, ☕ coffe and build something amazing...</div>
</div>
<div class="logo">
<img style="width: 22px; height: 25px" src="css/code.svg">
</div>
</body>
</html>