blob: c3719da5d186245d4d05b6ee7d51899b876f7333 [file] [log] [blame]
Nicolas Jager998fbd72016-08-08 11:41:28 -04001<!-- **********************************************************************
2* Copyright (C) 2016 by Savoir-faire Linux *
3* Author: Jäger Nicolas<nicolas.jager@savoirfairelinux.com> *
4* *
5* This program is free software; you can redistribute it and/or modify *
6* it under the terms of the GNU General Public License as published by *
7* the Free Software Foundation; either version 3 of the License, or *
8* (at your option) any later version. *
9* *
10* This program is distributed in the hope that it will be useful, *
11* but WITHOUT ANY WARRANTY; without even the implied warranty of *
12* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13* GNU General Public License for more details. *
14* *
15* You should have received a copy of the GNU General Public License *
16* along with this program. If not, see <http://www.gnu.org/licenses/> . *
17*********************************************************************** -->
18<ResourceDictionary
19 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
20 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
21
22<!-- general styles section -->
23 <Style x:Key="TextStyle1"
24 TargetType="TextBlock">
25 <Setter Property="FontSize"
26 Value="20"/>
27 <Setter Property="Foreground"
28 Value="Black"/>
29 </Style>
30
31<!-- styles for the console -->
32 <Style x:Key="ConsoleScrollViewerStyle"
33 TargetType="ScrollViewer">
34 <Setter Property="Background"
35 Value="Black"/>
36 </Style>
37 <Style x:Key="ConsoleTextStyle1"
38 TargetType="RichTextBlock">
39 <Setter Property="FontSize"
40 Value="12"/>
41 <Setter Property="Foreground"
42 Value="GreenYellow"/>
43 </Style>
44 <Style x:Key="ButtonSendCmdStyle"
45 TargetType="Button">
46 <Setter Property="FontFamily"
47 Value="Segoe MDL2 Assets"/>
48 <Setter Property="Width"
49 Value="50"/>
50 <Setter Property="Height"
51 Value="30"/>
52 <Setter Property="Foreground"
53 Value="Black"/>
54 <Setter Property="FontSize"
55 Value="17"/>
56 <Setter Property="Content"
57 Value="&#xE751;"/>
58 <Setter Property="Background"
59 Value="Transparent"/>
60 </Style>
61 <Style x:Key="ConsoleTextBoxStyle"
62 TargetType="TextBox">
63 <Setter Property="Height"
64 Value="30"/>
65 </Style>
66
67</ResourceDictionary>