-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
123 lines (109 loc) · 3.61 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
<!DOCTYPE html>
<html lang="pl">
<title>kris.ovh</title>
<link rel="icon" type="image/png" href="favicon.png">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1">
<meta name="description" content="My personal website with links to my linkedin, github and contact e-mail.">
<style>
body {
background: black;
}
#center {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
max-width: 90%;
}
a,
#text {
font-family: 'Courier New', Courier, monospace;
color: lightgreen;
transition: 0.1s linear;
padding: calc(0.5vh + 0.5vw);
}
a:hover {
transition: 0.1s linear;
color: green;
}
#text {
text-align: center;
font-size: calc(1.2vh + 1.2vw);
line-height: calc(2.4vh + 2.4vw);
white-space: nowrap;
}
#subtext {
font-size: calc(0.8vh + 0.8vw);
line-height: calc(1.6vh + 1.6vw);
}
#links {
padding: calc(0.5vh + 0.5vw);
font-size: calc(1vh + 1vw);
line-height: calc(2vh + 2vw);
text-align: left;
}
#twitter {
position: absolute;
left: 100%;
top: 50%;
transform: translate(-100%, -50%);
padding: calc(0.5vh + 0.5vw);
min-width: 300px;
width: 20vw;
opacity: 1;
transition: 0.3s linear;
pointer-events: all;
}
@media only screen and (max-width: 1200px),
screen and (max-height: 700px)
{
#twitter {
opacity: 0;
transition: 0.3s linear;
pointer-events: none;
}
}
</style>
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9Y4V099L5W"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-9Y4V099L5W');
</script>
<body>
<div id="twitter">
<a class="twitter-timeline" data-width="" data-height="600" data-theme="dark"
href="https://twitter.com/krisu_tech" data-proofer-ignore></a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<div id="center">
<div id="text">
Krzysztof Kołodziejczyk<br>
<div id="subtext">
Senior DevOps Engineer
</div>
<div id="links">
- <a href="https://www.linkedin.com/in/krzysztof-kolodziejczyk/" data-proofer-ignore>
Linkedin.com/in/krzysztof-kolodziejczyk</a><br>
- <a href="https://github.com/N0zz">
GitHub.com/n0zz</a><br>
- <a href="https://twitter.com/krisu_tech" data-proofer-ignore>
Twitter.com/krisu_tech</a><br>
- <a href="mailto:[email protected]">
[email protected]</a><br>
<br>
<center>Projects</center>
- <a href="https://github.com/N0zz/cnf-install">
GitHub.com/n0zz/cnf-install</a><br>
- <a href="https://github.com/N0zz/infra-docs">
GitHub.com/n0zz/infra-docs</a>
</div>
</div>
</div>
</body>
</html>