Update 'index.html'
Still not a huge fan of how it looks, but I'm just trying out different ideas
This commit is contained in:
parent
1423cb9a19
commit
821bb7f701
1 changed files with 39 additions and 2 deletions
41
index.html
41
index.html
|
@ -42,17 +42,54 @@
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
gap: 24px;
|
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>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<div class="wrapper">
|
<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>
|
</div>
|
||||||
|
|
||||||
<section class="about-me">
|
<section class="about-me">
|
||||||
<h1>About Me</h1>
|
<h1>About</h1>
|
||||||
<p>This is a brief description about me.</p>
|
<p>This is a brief description about...</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
Reference in a new issue