added Back To Top functionality and Pankuzu list, Q and A Box, and Hamburger menu components

This commit is contained in:
2024-10-12 20:52:13 +09:00
parent 545ac73e0e
commit e99db9f8bd
80 changed files with 1413 additions and 723 deletions

View File

@@ -19,16 +19,41 @@ const property = defineProps<QAndABoxProperty>();
}
.q-and-a > h2 {
position: relative;
color: var(--deep-space);
background-color: var(--starlight1);
border-radius: 1rem;
font-weight: 600;
line-height: 2;
padding-inline: 1.5rem;
padding: 0.5rem 1.5rem;
}
.q-and-a > h2::before {
content: 'Q.';
position: absolute;
display: flex;
top: -1.5rem;
left: -1.75rem;
width: 3.2rem;
height: 3.2rem;
border-radius: 3.2rem;
place-content: center;
background-color: var(--venus2);
color: var(--starlight1);
}
.q-and-a > div {
position: relative;
width: 90%;
margin-inline: 3rem;
}
@media screen and (max-width: 640px) {
.q-and-a > h2 {
line-height: 1.25;
}
.q-and-a > div {
margin-inline: 1rem;
}
}
</style>