Created
October 4, 2024 22:32
-
-
Save kalkin/3ded10fc8282ce04b7c471380a2eceb1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<article> | |
<template id="element-details-template" shadowrootmode="open"> | |
<style> | |
details { | |
font-family: "Open Sans Light", Helvetica, Arial, sans-serif; | |
} | |
.name { | |
font-weight: bold; | |
color: #217ac0; | |
font-size: 120%; | |
} | |
h4 { | |
margin: 10px 0 -8px 0; | |
background: #217ac0; | |
color: white; | |
padding: 2px 6px; | |
border: 1px solid #cee9f9; | |
border-radius: 4px; | |
} | |
.attributes { | |
margin-left: 22px; | |
font-size: 90%; | |
} | |
.attributes p { | |
margin-left: 16px; | |
font-style: italic; | |
} | |
</style> | |
<details> | |
<summary> | |
<code class="name"> | |
<<slot name="element-name">NEED NAME</slot>> | |
</code> | |
<span class="desc"><slot name="description">NEED DESCRIPTION</slot></span> | |
</summary> | |
<div class="attributes"> | |
<h4>Attributes</h4> | |
<slot name="attributes"><p>None</p></slot> | |
</div> | |
</details> | |
<hr /> | |
</template> | |
<p slot="element-name">template | |
<p slot="description">Defines a template that can be cloned to produce new | |
documents. | |
<span slot="attributes"> | |
<dl> | |
<dt>Rating <dd> 4.5 | |
</dl> | |
</span> | |
</article> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment