2025-01-20 14:05:21 -06:00

24 lines
962 B
XML

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style x:Key="MinigameTimerStyle" TargetType="Label">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Label">
<Border Background="#66000000" CornerRadius="20">
<Label
Content="{TemplateBinding Content}"
Foreground="White"
FontFamily="Roboto"
FontWeight="Bold"
FontStyle="Italic"
FontSize="26"
Padding="60,0,60,0"
/>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>