-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (72 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Matteo Ridolfi</title>
<style>
* {
margin: 0;
box-sizing: border-box;
}
.logo {
padding-bottom: 50px;
padding-top: 20px;
padding-left: 50px;
text-align: left;
}
.home {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: -webkit-flex;
display: flex;
align-items: center;
justify-content: center;
z-index: -1;
}
.main {
-webkit-flex: none;
-moz-flex: none;
flex: none;
text-align: center;
}
h1 {
font-size: 14px;
font-weight: normal;
}
body {
font: 13px Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
}
a {
//color: #22BAD9;
color: #8487af;
-webkit-tap-highlight-color: rgba(0,0,0,0);
text-decoration: none;
}
a:hover {
color: #fff;
//background: #22BAD9;
background: #8487af;
text-decoration: none;
}
</style>
</head>
<body>
<div class="main">
<div class="logo">
:wq
</div>
</div>
<div class="home">
<div class="main">
<h1>Matteo Ridolfi</h1>
<br/>
<a target="_blank" href="mailto:spezam@gmail.com">Email</a>
|
<a target="_blank" href="https://github.com/spezam">GitHub</a>
</div>
</div>
</body>
</html>