-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (75 loc) · 1.71 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
<html>
<head>
<title>Branch & Merge, LLC</title>
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<style type="text/css">
html, body {
margin:0;
padding:0;
font-size:100%;
line-height: 1.4;
}
body {
background: url('/branches.jpg') no-repeat center center #1e4a69;
background-size: cover;
font-size: 16px;
font-family: 'Lora', serif;
}
#outer {
background:rgba(0,0,0,0.8);
height: 100%;
width: 100%;
box-sizing: border-box;
overflow: auto;
}
#main {
text-align: center;
font-size:1.5em;
margin: 4em auto 2em;
padding: 0 2em;
color: #fbfefb;
max-width: 960px;
}
h1 {
margin-bottom: 0em;
}
h3 {
margin-top: 0.5em;
margin-bottom: 1em;
}
a.btn {
font-size: 0.75em;
line-height: normal;
box-sizing: border-box;
vertical-align: middle;
text-align: center;
cursor: pointer;
text-decoration: none;
padding: .4em 1em 0.5em;
color: #fbfefb;
border-radius: 4px;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
background: rgb(28, 184, 65);
}
a.btn.secondary {
background: rgb(110,110,110);
}
a.btn:hover {
background-image: linear-gradient(transparent,rgba(0,0,0,.05) 40%,rgba(0,0,0,.1));
}
</style>
</head>
<body>
<div id="outer">
<div id="main">
<h1>Branch and Merge, LLC</h1>
<h3>Software Architecture & Consulting</h3>
<p>Experienced with web applications of all shapes and sizes.</p>
<p>
<a class="btn secondary" target="_blank" href="https://github.com/karlkeefer">github</a>
<a class="btn" target="_blank" href="mailto:[email protected]">contact</a>
</p>
</div>
</div>
</body>
</html>