1<!--
2//*********************************************************
3//
4// Copyright (c) Microsoft. All rights reserved.
5// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
6// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
7// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
8// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
9//
10//*********************************************************
11-->
12<ResourceDictionary
13    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
14    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
15
16    <Style x:Key="TitleTextStyle" TargetType="TextBlock">
17        <Setter Property="FontFamily" Value="Segoe UI Light" />
18        <Setter Property="FontSize" Value="16" />
19    </Style>
20    <Style x:Key="HeaderTextStyle" TargetType="TextBlock">
21        <Setter Property="FontFamily" Value="Segoe UI Semilight" />
22        <Setter Property="FontSize" Value="26.667" />
23        <Setter Property="Margin" Value="0,0,0,25" />
24    </Style>
25    <Style x:Key="H2Style" TargetType="TextBlock">
26        <Setter Property="FontFamily" Value="Segoe UI" />
27        <Setter Property="FontSize" Value="14.667" />
28        <Setter Property="Margin" Value="0,0,0,0" />
29    </Style>
30    <Style x:Key="SubheaderTextStyle" TargetType="TextBlock">
31        <Setter Property="FontFamily" Value="Segoe UI Semilight" />
32        <Setter Property="FontSize" Value="14.667" />
33        <Setter Property="Margin" Value="0,0,0,5" />
34    </Style>
35    <Style x:Key="BasicTextStyle" TargetType="TextBlock">
36        <Setter Property="FontFamily" Value="Segoe UI Light" />
37        <Setter Property="FontSize" Value="16" />
38    </Style>
39    <Style x:Key="SeparatorStyle" TargetType="TextBlock">
40        <Setter Property="FontFamily" Value="Segoe UI" />
41        <Setter Property="FontSize" Value="9" />
42    </Style>
43    <Style x:Key="FooterStyle" TargetType="TextBlock">
44        <Setter Property="FontFamily" Value="Segoe UI" />
45        <Setter Property="FontSize" Value="12" />
46        <Setter Property="Margin" Value="0,8,0,0" />
47    </Style>
48    <Style x:Key="HyperlinkStyle" TargetType="HyperlinkButton">
49        <Setter Property="Padding" Value="5"/>
50    </Style>
51</ResourceDictionary>
52