-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyles.xaml
132 lines (100 loc) · 4.32 KB
/
Styles.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style x:Key="StartBtn"
TargetType="{x:Type Button}">
<Setter Property="Height"
Value="80" />
<Setter Property="Width"
Value="80" />
<Setter Property="HorizontalAlignment"
Value="Right" />
<Setter Property="VerticalAlignment"
Value="Bottom" />
<Setter Property="Margin"
Value="0,0,50,50" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Border x:Name="border"
Background="#E60B60"
CornerRadius="50">
<TextBlock x:Name="txt"
Text="S T A R T"
Foreground="#DEDCDE"
HorizontalAlignment="Center"
VerticalAlignment="Center"
FontSize="11"
FontFamily="Fonts/#Rubik" />
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver"
Value="True">
<Setter Property="Background"
TargetName="border"
Value="#fc427e" />
<Setter Property="Foreground"
TargetName="txt"
Value="#EBEBEB" />
</Trigger>
<Trigger Property="IsPressed"
Value="True">
<Setter Property="Background"
TargetName="border"
Value="#716F6F" />
<Setter Property="Foreground"
TargetName="txt"
Value="#EBEBEB" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="Path_One"
TargetType="{x:Type Path}">
<Setter Property="Stroke"
Value="#b3084a" />
<Setter Property="StrokeThickness"
Value="70" />
<Setter Property="StrokeStartLineCap"
Value="Round" />
<Setter Property="StrokeEndLineCap"
Value="Round" />
<Setter Property="Data"
Value="M430,180 L780,180 C1080,170 1000,420 800,400 C620,380 550,590 920,520
C1100,480 920,870 610,580 C430,400 630,320 500,280 C180,220 250,500 400,540
C660,620 430,730 280,700 C150,670 110,700 100,500 C80,300 50,180 250,180
L430,180" />
</Style>
<Style x:Key="Path_Two"
TargetType="{x:Type Path}">
<Setter Property="Stroke"
Value="#413F43" />
<Setter Property="StrokeThickness"
Value="60" />
<Setter Property="StrokeStartLineCap"
Value="Round" />
<Setter Property="StrokeEndLineCap"
Value="Round" />
<Setter Property="Data"
Value="M430,180 L780,180 C1080,170 1000,420 800,400 C620,380 550,590 920,520
C1100,480 920,870 610,580 C430,400 630,320 500,280 C180,220 250,500 400,540
C660,620 430,730 280,700 C150,670 110,700 100,500 C80,300 50,180 250,180
L430,180" />
</Style>
<Style x:Key="P1"
TargetType="{x:Type Border}">
<Setter Property="Background"
Value="Transparent" />
<Setter Property="Height"
Value="35" />
<Setter Property="Width"
Value="16" />
<Setter Property="BorderBrush"
Value="#7A7A7A" />
<Setter Property="BorderThickness"
Value="0,2,2,2" />
<Setter Property="Margin"
Value="442,162.5,0,0" />
</Style>
</ResourceDictionary>