David Vogel
6fbc00655f
- Add example colors page - Store all theme colors in CSS variables - Add layer container component - Use accent color for active pagination page - Automatically use layer-1 color in sidebar, sidebar menu and code containers - Adjust tag padding - Add base color scheme/theme
36 lines
843 B
Plaintext
36 lines
843 B
Plaintext
<svg viewBox="0 0 16 16" vg-attr='utils.AttributesAppend{AttrMap: c.AttrMap, Classes: "d3c-icon d3-lineicon"}'>
|
|
<path class="d3c-icon-stroke" d="M3.98 2.5l8 0c0.83,0 1.5,0.67 1.5,1.5l0 8c0,0.83 -0.67,1.5 -1.5,1.5l-8 0c-0.83,0 -1.5,-0.67 -1.5,-1.5l0 -8c0,-0.83 0.67,-1.5 1.5,-1.5z" stroke-width="1" stroke-linejoin="round" stroke-linecap="round" fill="none"/>
|
|
</svg>
|
|
|
|
<style>
|
|
.d3c-icon {
|
|
height: 1em;
|
|
}
|
|
|
|
.d3c-icon-stroke {
|
|
stroke: var(--d3c-color-text);
|
|
}
|
|
|
|
.d3c-icon-fill {
|
|
fill: var(--d3c-color-text);
|
|
}
|
|
|
|
.d3c-icon-use-color .d3c-icon-stroke {
|
|
stroke: var(--d3c-color-background);
|
|
}
|
|
|
|
.d3c-icon-use-color .d3c-icon-fill {
|
|
fill: var(--d3c-color-background);
|
|
}
|
|
</style>
|
|
|
|
<script type="application/x-go">
|
|
import (
|
|
"git.d3nexus.de/Dadido3/D3vugu-components/utils"
|
|
)
|
|
|
|
type LStop struct{
|
|
AttrMap vugu.AttrMap
|
|
}
|
|
</script>
|