39 lines
1.4 KiB
XML
39 lines
1.4 KiB
XML
<Style xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
|
<!-- Allgemeiner Button-Style -->
|
|
<Style Selector="Button">
|
|
<Setter Property="FontSize" Value="30"/>
|
|
<Setter Property="Background" Value="Transparent"/>
|
|
<Setter Property="Foreground" Value="#BEBEBE"/>
|
|
<Setter Property="FontWeight" Value="Bold"/>
|
|
<Setter Property="HorizontalContentAlignment" Value="Center"/>
|
|
<Setter Property="VerticalContentAlignment" Value="Center"/>
|
|
</Style>
|
|
|
|
<!-- Image Button-Style -->
|
|
<Style Selector="Button.ImageButton">
|
|
<Setter Property="Background" Value="Transparent"/>
|
|
</Style>
|
|
|
|
<!-- Überschrift-TextBlock-Style -->
|
|
<Style Selector="TextBlock.ÜberschriftText">
|
|
<Setter Property="FontSize" Value="50"/>
|
|
<Setter Property="FontWeight" Value="Bold"/>
|
|
<Setter Property="Foreground" Value="#BEBEBE"/>
|
|
<Setter Property="TextDecorations" Value="Underline"/>
|
|
</Style>
|
|
|
|
<!-- Allgemeiner TextBlock-Style (Buttons usw.) -->
|
|
<Style Selector="TextBlock">
|
|
<Setter Property="FontSize" Value="20"/>
|
|
<Setter Property="FontWeight" Value="Bold"/>
|
|
<Setter Property="Foreground" Value="#BEBEBE"/>
|
|
</Style>
|
|
<!--Default Hintergrundfarbe-->
|
|
<Style Selector="Window">
|
|
<Setter Property="Background" Value="#1C1C1C"/>
|
|
</Style>
|
|
|
|
</Style>
|