Fan website of IMMORTAL: Gates of Pyre.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

30 lines
529 B

<details class="makingOfSection">
<summary>
@Title
</summary>
@ChildContent
</details>
<style>
.makingOfSection {
width: 100%;
background-color: rgba(0, 0, 0, 0.1);
padding: 25px;
border-radius: 8px;
border: 2px black dashed;
}
.makingOfSection > summary {
font-size: 3.4em;
}
</style>
@code {
[Parameter] public string Title { get; set; } = default!;
[Parameter] public RenderFragment ChildContent { get; set; } = default!;
}