-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (96 loc) · 3.97 KB
/
index.html
File metadata and controls
103 lines (96 loc) · 3.97 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
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<title>NEWOBJECT.dev</title>
<style>
body, html {
padding: 0;
margin: 0;
height: 100%;
}
body {
-webkit-font-smoothing: antialiased;
background: #000000;
overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
svg path {
fill: #FFFFFF;
}
a {
position: fixed;
top: 25px;
right: 25px;
}
a svg path {
opacity: 0.3;
-webkit-transition: opacity 0.5s linear;
-moz-transition: opacity 0.5s linear;
transition: opacity 0.5s linear;
}
a:hover svg path {
opacity: 1;
}
#logo {
height: auto;
-webkit-transition: width 0.5s linear;
-moz-transition: width 0.5s linear;
transition: width 0.5s linear;
}
@media all and (max-width: 499px) {
#logo {
width: 200px;
}
}
@media all and (min-width: 500px) and (max-width: 899px) {
#logo {
width: 350px;
}
}
@media all and (min-width: 900px) and (max-width: 1399px) {
#logo {
width: 400px;
}
}
@media all and (min-width: 1400px) {
#logo {
width: 500px;
}
}
</style>
</head>
<body>
<div>
<svg id="logo" viewBox="0 0 510 493">
<path d="m162.851,22.9896c185.592,-80.3362 330.904,59.5157 342.12,148.6884c1.422,11.302 4.139,32.088 4.076,45.855c-0.32,91.722 -35.093,154.09 -44.09,170.736c-21.808,40.347 -54.089,68.995 -95.444,83.071c-138.555,47.161 -306.5145,21.696 -353.611,-161.764c-22.15328,-86.297 -47.2277,-202.533 146.949,-286.5864z" clip-rule="evenodd" fill-rule="evenodd"/>
</svg>
<a href="https://github.com/newobject-dev">
<svg width="40" height="40">
<path d="M20 20.0149C23.5917 20.0149 27.9834 17.4199 27.9817 23.7749C27.9817 25.8299 26.3133 27.5 24.2567 27.5H15.7416C13.6833 27.5 12.015 25.8299 12.015 23.7749C12.015 17.4849 16.4067 20.0149 20 20.0149ZM16.6667 25V21.6667H15V25H16.6667ZM25 25V21.6667H23.3333V25H25ZM20 0C31.0283 0 40 8.97167 40 20C40 31.0283 31.0283 40 20 40C8.97167 40 0 31.0283 0 20C0 8.97167 8.97167 0 20 0ZM31.6317 23.8716C31.8217 21.4132 31.2283 19.3784 30.1433 17.7534L30.18 17.78C30.18 17.78 32.9967 12.9116 29.5383 10.0732C27.4067 10.0732 24.15 13.5916 24.15 13.5916L24.1783 13.605C21.5267 12.8283 18.5517 12.8218 15.895 13.5901C15.8767 13.5718 12.6317 10.0732 10.51 10.0732C7.13001 12.8449 9.73165 17.54 9.85498 17.7583C8.76998 19.385 8.18001 21.4116 8.36835 23.8716C8.62501 27.1982 11.4 30.8333 14.7367 30.8333H25.2633C28.6016 30.8333 31.3767 27.1982 31.6317 23.8716Z"></path>
</svg>
</a>
</div>
</body>
</html>