23 lines
809 B
XML
23 lines
809 B
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="20"/>
|
|
<Setter Property="Background" Value="#50A3B9CC"/>
|
|
<Setter Property="Foreground" Value="#BEBEBE"/>
|
|
<Setter Property="FontWeight" Value="Bold"/>
|
|
<Setter Property="HorizontalContentAlignment" Value="Center"/>
|
|
<Setter Property="VerticalContentAlignment" Value="Center"/>
|
|
</Style>
|
|
|
|
<!-- Allgemeiner TextBlock-Style -->
|
|
<Style Selector="TextBlock">
|
|
<Setter Property="FontSize" Value="18"/>
|
|
<Setter Property="FontWeight" Value="Bold"/>
|
|
<Setter Property="Foreground" Value="#80BEBEBE"/>
|
|
</Style>
|
|
|
|
</Style>
|