firq-dev-website/src/layouts/baseSection.astro

62 lines
969 B
Text
Raw Normal View History

---
export interface Props {
2023-03-09 11:44:18 +01:00
title: string
}
2023-03-09 11:44:18 +01:00
const { title } = Astro.props
---
2023-03-16 23:29:16 +01:00
<div class="base">
2023-03-09 11:44:18 +01:00
<h1>{title}</h1>
<div>
<slot />
</div>
</div>
<style>
2023-03-09 11:44:18 +01:00
div {
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}
div > div {
row-gap: 1em;
column-gap: 1em;
justify-content: center;
align-self: center;
display: flex;
flex-flow: row wrap;
padding: 1em;
position: relative;
}
2023-03-16 23:29:16 +01:00
div h1 {
2023-03-09 11:44:18 +01:00
color: white;
2023-03-16 23:29:16 +01:00
margin-top: 2rem;
margin-bottom: 0;
margin-left: auto;
margin-right: auto;
2023-03-09 11:44:18 +01:00
padding: 0.25rem 0.75rem;
max-width: max-content;
2023-03-09 11:44:18 +01:00
background-color: var(--c-darkgray);
}
@media (min-width: 512px) {
div {
2023-03-09 11:44:18 +01:00
row-gap: 1.5em;
column-gap: 1.5em;
}
2023-03-09 11:44:18 +01:00
}
2023-03-16 23:29:16 +01:00
.base {
margin-left: 3rem;
margin-right: 3rem;
}
@media (min-width: 1500px) {
.base {
margin-left: 10%;
margin-right: 10%;
}
}
2023-03-09 11:44:18 +01:00
</style>