AquaCare/AquaCare.View/Stylealt.xaml

48 lines
1.7 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>
<!--Textboxen-->
<Style Selector="TextBox">
<Setter Property="Background" Value="White"/>
<Setter Property="Foreground" Value="Black"/>
<Setter Property="FontSize" Value="18"/>
<Setter Property="BorderBrush" Value="Red"/>
<Setter Property="BorderThickness" Value="2"/>
</Style>
</Style>