-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
124 lines (109 loc) · 3.09 KB
/
index.html
File metadata and controls
124 lines (109 loc) · 3.09 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
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Gabe Ruttner</title>
<link rel="apple-touch-icon" sizes="180x180" href="/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicons/favicon-16x16.png">
<link rel="manifest" href="/favicons/site.webmanifest">
<link rel="mask-icon" href="/favicons/safari-pinned-tab.svg" color="#40ff7f">
<link rel="shortcut icon" href="/favicons/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="/favicons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<style media="screen">
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro:400,900');
body, html{
height:100%;
padding:0px;
margin:0px;
font-family: 'Source Code Pro', monospace;
}
@media (min-width: 575px){
.about{
position:absolute;
z-index:10;
width:46%;
max-width: 427px;
left:50%;
top:15%;
border-radius: 3px;
box-shadow: 4px 7px 20px rgba(0,0,0,.8);
}
.cover{
width: 100%;
height: 100%;
position: absolute;
}
}
@media (max-width: 575px){
body{
display:flex;
flex-direction:column;
flex-wrap: nowrap;
}
.cover{
flex-grow: 1;
}
a{
display:block;
}
}
.cover{
background-image: url('./assets/cover.jpg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.about{
background:rgba(28,28,28,.9);
}
.about-title{
background: rgba(0,0,0,1);
color:#bcffd2;;
padding:15px;
font-size: 1.1em;
border-radius: 3px 3px 0px 0px;
}
.about-title b{
font-size: 1.3em;
color:#40ff7f
}
.about-body{
padding:15px;
color:white;
}
.about-body a{
color: #bcffd2;
text-decoration: none;
}
.about-body a:hover{
color: #40ff7f;
text-decoration: underline;
}
.about-body a b{
opacity:0;
}
.about-body a:hover b{
opacity:1;
}
</style>
</head>
<body>
<div class="about">
<div class="about-title">
<b>GABE RUTTNER</b><br />
human-centric engineer
</div>
<div class="about-body">
i build technical products which
are deeply connected with customer needs.<br /><br />
<a href="https://www.linkedin.com/in/gruttner/"><b>></b> connect on linkedin</a><br />
<a href="https://goo.gl/maps/F425kQR8pw82"><b>></b> explore my favorite places</a>
</div>
</div>
<div class="cover">
</div>
</body>
</html>