35 lines
605 B
Vue
35 lines
605 B
Vue
<template>
|
|
<div class="parchment-inset">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.parchment-inset {
|
|
background: var(--parch);
|
|
color: var(--parch-text);
|
|
padding: 32px;
|
|
margin: 0;
|
|
border-bottom: 1px dashed var(--border);
|
|
}
|
|
|
|
.parchment-inset :deep(h2) {
|
|
font-family: 'Brygada 1918', serif;
|
|
font-size: 22px;
|
|
font-weight: 500;
|
|
color: var(--parch-text);
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.parchment-inset :deep(p) {
|
|
font-size: 13px;
|
|
color: #b8ae98;
|
|
line-height: 1.75;
|
|
max-width: 560px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.parchment-inset :deep(a) {
|
|
color: var(--candle-faint);
|
|
}
|
|
</style>
|