2023-07-12 04:43:56 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2023-07-14 01:46:09 +00:00
|
|
|
|
2023-07-12 04:43:56 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Your Website Title</title>
|
|
|
|
<style>
|
2023-07-14 01:46:09 +00:00
|
|
|
@import url('https://fonts.googleapis.com/css2?family=OpenSans:wght@400;700&display=swap');
|
|
|
|
|
|
|
|
* {
|
2023-07-12 04:43:56 +00:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2023-07-14 01:46:09 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
font-family: OpenSans, sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
min-height: 100vh;
|
2023-07-14 19:49:02 +00:00
|
|
|
background: #354150;
|
2023-07-14 01:46:09 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.about-me {
|
|
|
|
padding: 2.5rem;
|
2023-07-14 19:49:02 +00:00
|
|
|
color: white;
|
2023-07-14 01:46:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.wrapper {
|
2023-07-19 01:32:47 +00:00
|
|
|
background-image: url('https://images.unsplash.com/photo-1689703400849-4befa701d0e8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1934&q=80');
|
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
2023-07-14 01:46:09 +00:00
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
min-height: 100vh;
|
|
|
|
padding: 20px;
|
|
|
|
display: grid;
|
2023-07-19 01:32:47 +00:00
|
|
|
grid-template-columns: 1fr 1fr 1fr;
|
2023-07-14 01:46:09 +00:00
|
|
|
align-content: center;
|
|
|
|
justify-content: center;
|
|
|
|
gap: 24px;
|
|
|
|
}
|
2023-07-18 04:37:07 +00:00
|
|
|
|
|
|
|
.card {
|
|
|
|
padding: 0.5rem;
|
2023-07-19 01:32:47 +00:00
|
|
|
aspect-ratio: 4 / 1;
|
|
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
|
|
backdrop-filter: blur(10px);
|
2023-07-18 04:37:07 +00:00
|
|
|
border-radius: 10px;
|
|
|
|
transition: transform 0.2s ease-in-out;
|
2023-07-19 01:32:47 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2023-07-18 04:37:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.card:hover {
|
2023-07-19 01:32:47 +00:00
|
|
|
transform: scale(1.02);
|
|
|
|
cursor: pointer;
|
2023-07-18 04:37:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
2023-07-19 01:32:47 +00:00
|
|
|
aspect-ratio: 1 / 1;
|
|
|
|
height: 100%;
|
|
|
|
min-width: 6.5rem;
|
|
|
|
padding-left: 0.5rem;
|
|
|
|
padding-right: 0.5rem;
|
2023-07-18 04:37:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.description {
|
2023-07-19 01:32:47 +00:00
|
|
|
font-weight: 700;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
height: 30%;
|
|
|
|
font-size: 18px;
|
|
|
|
color: white;
|
|
|
|
mix-blend-mode: difference;
|
2023-07-18 04:37:07 +00:00
|
|
|
}
|
2023-07-12 04:43:56 +00:00
|
|
|
</style>
|
|
|
|
</head>
|
2023-07-14 01:46:09 +00:00
|
|
|
|
2023-07-12 04:43:56 +00:00
|
|
|
<body>
|
|
|
|
|
2023-07-14 01:46:09 +00:00
|
|
|
<div class="wrapper">
|
2023-07-18 04:37:07 +00:00
|
|
|
<div class="card">
|
|
|
|
<img src="https://git.myco.systems/assets/img/logo.svg" alt="Logo" class="logo">
|
2023-07-19 01:32:47 +00:00
|
|
|
<p class="description">Git with a cup of tea</p>
|
|
|
|
</div>
|
|
|
|
<div class="card">
|
|
|
|
<img src="https://raw.githubusercontent.com/NX211/homer-icons/fbf21fb653358f1cf55fe45cd569d757ebc283aa/svg/adguardhome.svg" alt="Logo" class="logo">
|
|
|
|
<p class="description">AdGuard home</p>
|
|
|
|
</div>
|
|
|
|
<div class="card">
|
|
|
|
<img src="https://raw.githubusercontent.com/NX211/homer-icons/fbf21fb653358f1cf55fe45cd569d757ebc283aa/svg/filerun.svg" alt="Logo" class="logo">
|
|
|
|
<p class="description">FileRun</p>
|
2023-07-18 04:37:07 +00:00
|
|
|
</div>
|
2023-07-19 01:32:47 +00:00
|
|
|
|
2023-07-14 01:46:09 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<section class="about-me">
|
2023-07-18 04:37:07 +00:00
|
|
|
<h1>About</h1>
|
|
|
|
<p>This is a brief description about...</p>
|
2023-07-14 01:46:09 +00:00
|
|
|
</section>
|
|
|
|
|
2023-07-12 04:43:56 +00:00
|
|
|
</body>
|
|
|
|
|
2023-07-14 01:46:09 +00:00
|
|
|
</html>
|