Initial commit
This commit is contained in:
commit
a3e6b414ab
Binary file not shown.
After Width: | Height: | Size: 739 KiB |
|
@ -0,0 +1,61 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Remi & Vicky Rampin</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<style>
|
||||
body {
|
||||
background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('background.jpg') no-repeat center center fixed;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
div.container {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: space-evenly;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
div.container {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
|
||||
display: flex;
|
||||
flex-direction: row-reverse;
|
||||
align-items: center;
|
||||
justify-content: space-evenly;
|
||||
}
|
||||
}
|
||||
|
||||
div.box a {
|
||||
text-decoration: none;
|
||||
color: black;
|
||||
}
|
||||
|
||||
div.box a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="remi box">
|
||||
<h1><a href="https://remirampin.com/">Remi Rampin<br /><span style="font-size: 60%;">Software Engineer</span></a></h1>
|
||||
</div>
|
||||
<div class="vicky box">
|
||||
<h1><a href="https://vickysteeves.com/">Vicky Rampin<br /><span style="font-size: 60%;">Librarian for Data Management<br />and Reproducibility</span></a></h1>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue