-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
154 lines (150 loc) · 3.66 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Benoit Formet - Ingénieur logiciel | Formet.info</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
</head>
<body>
<style>
html {
font-size: 100%;
background-color: grey;
}
body {
margin: 0 auto;
padding: 0;
font-size: 0.8em;
max-width: 800px;
box-shadow: 0px 0px 50px 5px rgba(0,0,0,0.75);
}
@media (min-width: 640px) {
body {
font-size: 1em;
}
}
@media (min-width: 990px) {
body {
font-size: 1.1em;
}
}
.picture {
position: relative;
background: grey url(avatar-square.jpg) no-repeat center center;
background-size: cover;
height: calc(100vh - 5.5em);
max-height: 100vw;
transition: height 0.3s ease;
}
.container {
padding: 1em 1em 1em 1em;
font: bold 1em arial, helvetica, sans-serif;
}
.title {
margin: 0;
position: absolute;
bottom: 0;
left: 0.33em;
color: beige;
font: bold italic 3em Georgia, DejaVu Serif, Norasi, serif;
letter-spacing: -0.01em;
text-shadow: 2px 2px 5px rgba(50, 50, 50, 1);
}
@media (min-width: 640px) {
.title {
font-size: 4em;
left: 0.25em;
}
}
@media (min-width: 990px) {
.title {
font-size: 5em;
left: 0.2em;
}
}
.jobtitle {
margin: 0.1em 0 0.2em 0;
font-size: 3em;
font-family: Arial Black, sans-serif;
letter-spacing: -0.04em;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
line-height: 1em;
}
.skills {
background: beige;
color: #666;
}
.skills ul {
font: 1.5em Georgia, DejaVu Serif, Norasi, serif;
margin: 0;
padding: 0;
list-style-type: none;
}
.links {
background: #666 url(grey_wash_wall.png);
color: #ddd;
text-shadow: 1px 1px 2px rgba(50, 50, 50, 1);
}
.links ul {
font-size: 1.5em;
margin: 0;
padding: 0;
list-style-type: none;
}
.contact {
font-size: 2em;
margin: 0.3em 0;
}
a {
color: lightblue;
text-decoration: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:active, a:hover {
-webkit-filter: brightness(1.2);
filter: brightness(1.2);
}
li {
margin: 0.8em 0;
}
i.fa {
color: darkgrey;
}
.serif {
font-family: georgia;
font-style: italic;
font-weight: normal;
}
</style>
<div class="picture">
<h1 class="title">I'm<br>Benoit Formet</h1>
</div>
<div class="container skills">
<h2 class="jobtitle">Software Engineer</h2>
<ul>
<li>Full-stack web developer (Vue.js, D3.js, Boostrap, Django)</li>
<li>Python lover</li>
<li>C programmer</li>
<li>UI/UX creator</li>
<!-- <li>Swiss knife</li> -->
<li>Playful father</li>
</ul>
</div>
<div class="container links">
<p class="contact">Contactez-moi !</p>
<ul>
<li><a href="https://twitter.com/bformet"><i class="fa fa-fw fa-twitter" aria-hidden="true"></i> Twitter <span class="serif">@bformet</span></a></li>
<li><a href="https://www.linkedin.com/in/benoitformet"><i class="fa fa-fw fa-linkedin-square" aria-hidden="true"></i> Linkedin</a></li>
<li><a href="/screencasts/"><i class="fa fa-fw fa-commenting" aria-hidden="true"></i> Talks</a></li>
<li><a href="https://github.com/bformet"><i class="fa fa-fw fa-github" aria-hidden="true"></i> Github</a></li>
<li>
<a href="https://stackoverflow.com/users/1189651/bformet"><i class="fa fa-fw fa-stack-overflow" aria-hidden="true"></i> Stack Overflow</a> ~
<a href="https://stackoverflow.com/users/story/1189651" class="serif">My developer story</a>
</li>
<li><a href="https://www.indeed.com/me/benoit_formet"><i class="fa fa-fw fa-graduation-cap" aria-hidden="true"></i> CV Indeed</a></li>
</ul>
</div>
</body>
</html>