97 lines
No EOL
2.2 KiB
HTML
97 lines
No EOL
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Your Website Title</title>
|
|
<style>
|
|
@import url('https://fonts.googleapis.com/css2?family=OpenSans:wght@400;700&display=swap');
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: OpenSans, sans-serif;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 100vh;
|
|
background: #354150;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.about-me {
|
|
padding: 2.5rem;
|
|
color: white;
|
|
}
|
|
|
|
.wrapper {
|
|
background-color: #223142;
|
|
position: relative;
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
padding: 20px;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
align-content: center;
|
|
justify-content: center;
|
|
gap: 24px;
|
|
}
|
|
|
|
.card {
|
|
padding: 0.5rem;
|
|
aspect-ratio: 1 / 1;
|
|
background-color: white;
|
|
border-radius: 10px;
|
|
box-shadow: 0 5px 10px 5px rgba(200, 200, 200, 0.2);
|
|
transition: transform 0.2s ease-in-out;
|
|
text-align: center;
|
|
}
|
|
|
|
.card:hover {
|
|
transform: scale(1.04);
|
|
}
|
|
|
|
.logo {
|
|
width: 100%;
|
|
padding-left: 1rem;
|
|
padding-right: 1rem;
|
|
display: block;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.divider {
|
|
margin-left: 1rem;
|
|
margin-right: 1rem;
|
|
border: 1px solid #213141;
|
|
}
|
|
|
|
.description {
|
|
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="wrapper">
|
|
<div class="card">
|
|
<img src="https://git.myco.systems/assets/img/logo.svg" alt="Logo" class="logo">
|
|
<hr class="divider">
|
|
<p class="description">Description text goes here.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<section class="about-me">
|
|
<h1>About</h1>
|
|
<p>This is a brief description about...</p>
|
|
</section>
|
|
|
|
</body>
|
|
|
|
</html> |