-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (114 loc) · 3.31 KB
/
index.html
File metadata and controls
117 lines (114 loc) · 3.31 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Onur Aslan</title>
<link
rel="shortcut icon"
type="image/png"
href="https://s.cdpn.io/profiles/user/1844768/80.jpg?1547398190"
/>
<style>
@import url("https://fonts.googleapis.com/css?family=Roboto");
:root {
--dx: 0;
--dy: 0;
}
body {
/*background: linear-gradient(to bottom, #1f1033 17%, #04010e 100%);*/
background: linear-gradient(to bottom, #0c0614 17%, #04010e 100%);
overflow: hidden;
font-size: 16px;
font-family: "Roboto", sans-serif;
}
canvas {
background: transparent;
cursor: grabbing;
filter: contrast(1.5);
user-select: none;
pointer-events: none;
}
img {
width: 48px;
height: 48px;
position: absolute;
z-index: 2;
display: block;
left: 0;
top: 0;
transform: translate(var(--dx), var(--dy));
border-radius: 500px;
}
div {
color: white;
position: fixed;
left: 0;
top: 0%;
max-width: 560px;
width: 100%;
z-index: 99999999999;
padding: 2rem;
background: #000000;
height: 100vh;
backdrop-filter: blur(15px);
overflow: auto;
}
h1 {
font-size: 1.6rem;
}
h6 {
font-size: 1.1rem;
font-weight: 300;
margin: 0;
opacity: 0.5;
}
h6:hover {
opacity: 1;
}
p {
font-size: 1.3rem;
line-height: 1.85rem;
}
a {
color: cornflowerblue;
}
.flex {
display: flex;
flex-direction: column;
}
@media only screen and (max-width:1024px){
div {
padding: 1rem;
display: flex;
max-width: inherit;
width: fit-content;
background: black;
}
}
</style>
</head>
<body>
<div class="flex">
<h1>
✋ Hi, I'm Onur.
</h1>
<h6>
front-end developer
co-fo <a href="https://zetup.me/">@zetup.me</a>
</h6>
<p>
I am developing interfaces with popular technologies for mobile and web
applications. I also create illustrations and animations for these
interfaces.<br /><br />
</p>
<a href="https://twitter.com/aslanon?ref_src=twsrc%5Etfw" class="twitter-follow-button" data-show-count="false">Follow @aslanon</a><script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<iframe src="https://zetup.me/aslanon?setup=6202495b707a4645fe4319d1&embed=true" style="border-radius:1rem; margin-top:1rem; width: 100%;height: 360px;" frameborder="0" allowtransparency="true"></iframe>
<iframe src="https://zetup.me/embed/aslanon" style="border-radius:1rem; margin-top:1rem; width: 100%;height: 255px;" frameborder="0" allowtransparency="true"></iframe>
</div>
<canvas
center="https://raw.githubusercontent.com/aslanon/aslanon.github.io/master/statics/mee.jpeg"
></canvas>
<script type="text/javascript" src="./js/canvas.bundle.js"></script></body>
</html>