Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
karlkeefer committed Oct 4, 2024
0 parents commit 26cc982
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 0 deletions.
Binary file added branches.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added favicon.ico
Binary file not shown.
75 changes: 75 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
<html>
<head>
<title>Branch &amp; 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 &amp; 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>

0 comments on commit 26cc982

Please sign in to comment.