mirror of
https://github.com/MilkBarModding/MilkBarLauncher.git
synced 2025-06-16 12:11:01 +00:00
24 lines
962 B
XML
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> |