mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2025-10-30 15:06:06 +00:00
Police système
This commit is contained in:
parent
a5e0f52265
commit
5e870cd180
11 changed files with 2807 additions and 2750 deletions
|
|
@ -441,6 +441,12 @@
|
||||||
<AndroidAsset Include="Assets\Cinzel-Regular.otf" />
|
<AndroidAsset Include="Assets\Cinzel-Regular.otf" />
|
||||||
<None Include="Resources\AboutResources.txt" />
|
<None Include="Resources\AboutResources.txt" />
|
||||||
<None Include="Assets\AboutAssets.txt" />
|
<None Include="Assets\AboutAssets.txt" />
|
||||||
|
<AndroidResource Include="Resources\font\cinzel_black.otf" />
|
||||||
|
<AndroidResource Include="Resources\font\cinzel_bold.otf" />
|
||||||
|
<AndroidResource Include="Resources\font\cinzel_regular.otf" />
|
||||||
|
<AndroidResource Include="Resources\font\cinzeldecorative_black.otf" />
|
||||||
|
<AndroidResource Include="Resources\font\cinzeldecorative_bold.otf" />
|
||||||
|
<AndroidResource Include="Resources\font\cinzeldecorative_regular.otf" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<AndroidResource Include="Resources\drawable\icon.png" />
|
<AndroidResource Include="Resources\drawable\icon.png" />
|
||||||
|
|
|
||||||
5533
AideDeJeu/AideDeJeu.Android/Resources/Resource.designer.cs
generated
5533
AideDeJeu/AideDeJeu.Android/Resources/Resource.designer.cs
generated
File diff suppressed because it is too large
Load diff
BIN
AideDeJeu/AideDeJeu.Android/Resources/font/cinzel_black.otf
Normal file
BIN
AideDeJeu/AideDeJeu.Android/Resources/font/cinzel_black.otf
Normal file
Binary file not shown.
BIN
AideDeJeu/AideDeJeu.Android/Resources/font/cinzel_bold.otf
Normal file
BIN
AideDeJeu/AideDeJeu.Android/Resources/font/cinzel_bold.otf
Normal file
Binary file not shown.
BIN
AideDeJeu/AideDeJeu.Android/Resources/font/cinzel_regular.otf
Normal file
BIN
AideDeJeu/AideDeJeu.Android/Resources/font/cinzel_regular.otf
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -8,4 +8,5 @@
|
||||||
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
|
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
|
||||||
app:tabIndicatorColor="@color/HDRed"
|
app:tabIndicatorColor="@color/HDRed"
|
||||||
app:tabGravity="fill"
|
app:tabGravity="fill"
|
||||||
app:tabMode="scrollable" />
|
app:tabMode="scrollable"
|
||||||
|
app:tabTextAppearance="@style/TabBar.TitleText"/>
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,12 @@
|
||||||
<android.support.v7.widget.Toolbar
|
<android.support.v7.widget.Toolbar
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
android:id="@+id/toolbar"
|
android:id="@+id/toolbar"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="?attr/colorPrimary"
|
android:background="?attr/colorPrimary"
|
||||||
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
|
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
|
||||||
android:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
|
android:popupTheme="@style/ThemeOverlay.AppCompat.Light"
|
||||||
|
app:titleTextAppearance="@style/Toolbar.TitleText"
|
||||||
|
/>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -42,4 +42,14 @@
|
||||||
<style name="MyTheme.Splash" parent="MainTheme">
|
<style name="MyTheme.Splash" parent="MainTheme">
|
||||||
<item name="android:windowBackground">@drawable/splash</item>
|
<item name="android:windowBackground">@drawable/splash</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
<style name="Toolbar.TitleText" parent="TextAppearance.Widget.AppCompat.Toolbar.Title">
|
||||||
|
<!--set your custom font properties-->
|
||||||
|
<item name="android:fontFamily">@font/cinzel_bold</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style name="TabBar.TitleText" parent="TextAppearance.Design.Tab">
|
||||||
|
<!--set your custom font properties-->
|
||||||
|
<item name="android:fontFamily">@font/cinzel_bold</item>
|
||||||
|
</style>
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue