26 lines
953 B
XML
26 lines
953 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<?xaml-comp compile="true" ?>
|
|
|
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
|
|
|
|
|
|
<Style x:Key="MainStackLayout" TargetType="VerticalStackLayout">
|
|
<Setter Property="Marign" Value="0,10,0,0"/>
|
|
<Setter Property="Spacing" Value="15"/>
|
|
<Setter Property="VerticalOptions" Value="Center"/>
|
|
</Style>
|
|
|
|
<Style TargetType="Label">
|
|
<Setter Property="TextColor" Value="{StaticResource Lightpurple}" />
|
|
<Setter Property="FontFamily" Value="Rubik" />
|
|
<Setter Property="HorizontalOptions" Value="Center" />
|
|
<Setter Property="VerticalOptions" Value="Center" />
|
|
</Style>
|
|
|
|
<Style x:Key="Title" TargetType="Label">
|
|
<Setter Property="FontAttributes" Value="Bold"/>
|
|
<Setter Property="FontSize" Value="Large"/>
|
|
</Style>
|
|
|
|
</ResourceDictionary> |