Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions components/heartbeat.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}

.heartbeat {
animation: heartbeat 1.5s infinite;
}

.heartbeat i {
color: red;
}

@keyframes heartbeat {
0% {
transform: scale(1);
}

50% {
transform: scale(1.2);
}

100% {
transform: scale(1);
}
}
15 changes: 15 additions & 0 deletions components/heartbeat.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="stylesheet" href="heartbeat.css">
</head>
<body>
<div class="heartbeat">
<i class="fa-solid fa-heart"></i>
</div>
</body>
</html>
58 changes: 0 additions & 58 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -208,61 +208,3 @@ textarea:focus {
box-shadow: 0 6px 18px rgba(98, 0, 234, 0.06);
transform: translateY(-2px);
}

input::placeholder,
textarea::placeholder {
color: #9aa0a6;
}

.two-col {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
}
.submit-row {
display: flex;
justify-content: flex-end;
align-items: center;
gap: 10px;
margin-top: 6px;
}
.btn-submit {
background: linear-gradient(90deg, var(--primary-color), #7b3bff);
color: var(--primary-contrast);
padding: 10px 16px;
border-radius: var(--radius-pill);
border: none;
cursor: pointer;
font-weight: 600;
box-shadow: 0 6px 16px rgba(98, 0, 234, 0.14);
transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.btn-submit:hover {
transform: translateY(-3px);
box-shadow: 0 14px 30px rgba(98, 0, 234, 0.18);
}
.hint {
font-size: 13px;
color: var(--text-muted);
}

@media (max-width: 820px) {
.contact-wrap {
grid-template-columns: 1fr;
padding: 18px;
}
.contact-info {
border-right: none;
border-bottom: 1px solid var(--border-color);
padding-bottom: 14px;
}
.submit-row {
justify-content: stretch;
}
.btn-submit {
width: 100%;
}
.two-col {
grid-template-columns: 1fr;
}
}