-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.xaml
92 lines (71 loc) · 4.31 KB
/
App.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?xml version = "1.0" encoding = "UTF-8" ?>
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:ScrollToDemo"
x:Class="ScrollToDemo.App">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Resources/Styles/Colors.xaml" />
<ResourceDictionary Source="Resources/Styles/Styles.xaml" />
</ResourceDictionary.MergedDictionaries>
<Style x:Key="AppBaseSpan" TargetType="Span">
<Setter Property="FontFamily" Value="ACaslonProRegular"/>
<Setter Property="FontSize" Value="18.5" />
</Style>
<Style x:Key="AppAllSmallCaps" TargetType="Span" BasedOn="{StaticResource AppBaseSpan}">
<Setter Property="FontFamily" Value="ACaslonProBold"/>
<Setter Property="TextTransform" Value="Uppercase" />
<Setter Property="FontSize" Value="16.0" />
</Style>
<Style x:Key="AppSmallCaps" TargetType="Span" BasedOn="{StaticResource AppAllSmallCaps}"/>
<Style x:Key="AppBaseSpanBold" TargetType="Span" BasedOn="{StaticResource AppBaseSpan}">
<Setter Property="FontFamily" Value="ACaslonProBold"/>
</Style>
<Style x:Key="AppBaseSpanItalic" TargetType="Span" BasedOn="{StaticResource AppBaseSpan}">
<Setter Property="FontFamily" Value="ACaslonProItalic"/>
</Style>
<Style x:Key="AppOpeningSpan" TargetType="Span" BasedOn="{StaticResource AppAllSmallCaps}"/>
<Style x:Key="AppBaseParagaphSpan" TargetType="Span" BasedOn="{StaticResource AppBaseSpan}" />
<Style x:Key="AppRegularSpan" TargetType="Span" BasedOn="{StaticResource AppBaseParagaphSpan}" />
<Style x:Key="AppSectionSpan" TargetType="Span" BasedOn="{StaticResource AppBaseSpanBold}">
<Setter Property="FontSize" Value="17.5" />
<Setter Property="TextTransform" Value="Uppercase" />
</Style>
<Style x:Key="AppRegularSpaceSpan" TargetType="Span" BasedOn="{StaticResource AppRegularSpan}">
<Setter Property="Text" Value=" " />
</Style>
<Style x:Key="AppTitleSpan" TargetType="Span" BasedOn="{StaticResource AppBaseSpanBold}">
<Setter Property="FontSize" Value="17.5" />
<Setter Property="TextTransform" Value="Uppercase" />
</Style>
<Style x:Key="AppTabsSpan" TargetType="Span">
<Setter Property="Text" Value=" " />
</Style>
<Style x:Key="AppPID" TargetType="Span">
<Setter Property="TextColor" Value="Gray"/>
<Setter Property="FontSize" Value="14"/>
<Setter Property="FontFamily" Value="OldStyle7Std" />
</Style>
<Style x:Key="AppBaseParagraph" TargetType="Label">
<Setter Property="FontSize" Value="18.5"/>
<Setter Property="Margin" Value="0,0,0,0" />
</Style>
<Style x:Key="AppTitleParagraph" TargetType="Label" BasedOn="{StaticResource AppBaseParagraph}">
<Setter Property="HorizontalOptions" Value="Center"/>
<Setter Property="HorizontalTextAlignment" Value="Center" />
<Setter Property="Margin" Value="0,0,0,0" />
</Style>
<Style x:Key="AppSectionParagraph" TargetType="Label" BasedOn="{StaticResource AppTitleParagraph}">
<Setter Property="HorizontalOptions" Value="Center"/>
<Setter Property="VerticalOptions" Value="Center" />
<Setter Property="Margin" Value="0,20,0,0" />
</Style>
<Style x:Key="AppOpeningParagraph" TargetType="Label" BasedOn="{StaticResource AppBaseParagraph}" />
<Style x:Key="AppRegularParagraph" TargetType="Label" BasedOn="{StaticResource AppBaseParagraph}"/>
<Style x:Key="AppPaperContent" TargetType="VerticalStackLayout">
<Setter Property="Padding" Value="20,0,20,30" />
</Style>
</ResourceDictionary>
</Application.Resources>
</Application>