diff --git a/.gitignore b/.gitignore index ce2c8f9..1dafcd8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,14 +1,18 @@ -################################################################################ -# This .gitignore file was automatically created by Microsoft(R) Visual Studio. -################################################################################ - -*.user - -[Bb]in/ -[Oo]bj/ -.vs/ - -/MyWebsite/.config -/MyWebsite/MyWebsite/Properties/PublishProfiles -/MyWebsite/MyWebsite/.config -/MyWebsite/MyWebsite/logs +################################################################################ +# This .gitignore file was automatically created by Microsoft(R) Visual Studio. +################################################################################ + +*.user + +[Bb]in/ +[Oo]bj/ +.vs/ +.vscode/ + +MyWebsite/MyWebsite/wwwroot/assets/SharedFiles +MyWebsite/MyWebsite/wwwroot/Projects/FoxTube/Screenshots + +/MyWebsite/.config +/MyWebsite/MyWebsite/Properties/PublishProfiles +/MyWebsite/MyWebsite/.config +/MyWebsite/MyWebsite/logs diff --git a/MyWebsite/MyWebsite/Areas/API/GUTScheduleController.cs b/MyWebsite/MyWebsite/Areas/API/GUTScheduleController.cs index a3164c7..eeadba4 100644 --- a/MyWebsite/MyWebsite/Areas/API/GUTScheduleController.cs +++ b/MyWebsite/MyWebsite/Areas/API/GUTScheduleController.cs @@ -1,20 +1,30 @@ -using Microsoft.AspNetCore.Mvc; -using MyWebsite.Controllers; -using MyWebsite.Models.Databases; -using System.Linq; - -namespace MyWebsite.Areas.API -{ - [ApiController] - [Route("API/[controller]")] - public class GUTScheduleController : ExtendedController - { - GUTScheduleDatabaseContext databaseContext; - public GUTScheduleController(DatabaseContext context, GUTScheduleDatabaseContext db) : base(context) => - databaseContext = db; - - [Route("SemesterOffsetDay")] - public string SemesterOffsetDay() => - databaseContext.OffsetDates?.FirstOrDefault()?.Value ?? "undefined"; - } +using Microsoft.AspNetCore.Mvc; +using System; +using MyWebsite.Controllers; +using MyWebsite.Models.Databases; +using System.Linq; + +namespace MyWebsite.Areas.API +{ + [ApiController] + [Route("API/[controller]")] + public class GUTScheduleController : ExtendedController + { + GUTScheduleDatabaseContext databaseContext; + public GUTScheduleController(DatabaseContext context, GUTScheduleDatabaseContext db) : base(context) => + databaseContext = db; + + [Route("SemesterOffsetDay")] + public string SemesterOffsetDay() + { + try + { + return DateTime.Parse(databaseContext.OffsetDates?.FirstOrDefault()?.Value).Ticks.ToString(); + } + catch + { + return "undefined"; + } + } + } } \ No newline at end of file diff --git a/MyWebsite/MyWebsite/Areas/Admin/Controllers/ShortenerController.cs b/MyWebsite/MyWebsite/Areas/Admin/Controllers/ShortenerController.cs index 4e3139a..a4ab11f 100644 --- a/MyWebsite/MyWebsite/Areas/Admin/Controllers/ShortenerController.cs +++ b/MyWebsite/MyWebsite/Areas/Admin/Controllers/ShortenerController.cs @@ -1,6 +1,8 @@ using System; +using System.IO; using System.Linq; using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using MyWebsite.Controllers; using MyWebsite.Models; @@ -19,7 +21,7 @@ namespace MyWebsite.Areas.Admin.Controllers public IActionResult Index() => View(ViewPath, Database.ShortLinks.ToList()); - [HttpPost] + [HttpGet] public IActionResult Create(string url, string id = "") { if (!string.IsNullOrWhiteSpace(id) && Database.ShortLinks.Find(id) != null) @@ -64,9 +66,43 @@ namespace MyWebsite.Areas.Admin.Controllers { key = new string(Enumerable.Repeat(chars, length) .Select(s => s[random.Next(s.Length)]).ToArray()); - } while (Database.ShortLinks.Any(i => i.LinkId == key)); + } while (Database.ShortLinks.AsEnumerable().Any(i => i.LinkId == key)); return key; } + + [HttpPost] + public IActionResult Upload() + { + if (Request?.Form?.Files == null || Request.Form.Files.Count < 1) + throw new ArgumentNullException("Files"); + + foreach (IFormFile file in Request.Form.Files) + { + if (!string.IsNullOrWhiteSpace(Request.Form["directory"])) + Directory.CreateDirectory("wwwroot/assets/SharedFiles" + Request.Form["directory"]); + string path = string.Join('/', new[] { Request.Form["directory"].ToString(), file.FileName }); + using FileStream stream = System.IO.File.Create("wwwroot/assets/SharedFiles" + path); + + if (stream != null) + file.CopyTo(stream); + } + return RedirectToAction("Index"); + } + + [HttpGet] + public IActionResult DeleteFile(string file) + { + if (System.IO.File.Exists("wwwroot" + file)) + System.IO.File.Delete("wwwroot" + file); + + if (Database.ShortLinks.AsEnumerable().FirstOrDefault(i => i.Uri.LocalPath == file.Replace("\\", "/")) is ShortLinkModel link) + { + Database.ShortLinks.Remove(link); + Database.SaveChanges(); + } + + return RedirectToAction("Index"); + } } } \ No newline at end of file diff --git a/MyWebsite/MyWebsite/Areas/Admin/Views/Projects/Create.cshtml b/MyWebsite/MyWebsite/Areas/Admin/Views/Projects/Create.cshtml index 343a34a..ece445d 100644 --- a/MyWebsite/MyWebsite/Areas/Admin/Views/Projects/Create.cshtml +++ b/MyWebsite/MyWebsite/Areas/Admin/Views/Projects/Create.cshtml @@ -1,107 +1,112 @@ -@model MyWebsite.Models.ProjectModel -@{ - ViewData["Title"] = "New Project"; -} - -
-

Back to the list

-

Create new project

-
- -
-
-
- -
- - - -
-
- - - -
-
- - - -
-
- - - -
-
- - - -
-
- - - -
-
- - - -
-
- - - -
- @foreach (BadgeModel badge in ViewData["Badges"] as List) - { - -
- @badge.Description
- } -
-
- - -
-
- -@section Imports -{ - - - +@model MyWebsite.Models.ProjectModel +@{ + ViewData["Title"] = "New Project"; +} + +
+

Back to the list

+

Create new project

+
+ +
+
+
+ +
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+ @foreach (BadgeModel badge in ViewData["Badges"] as List) + { + +
+ @badge.Description
+ } +
+
+ + +
+
+ +@section Imports +{ + + + } \ No newline at end of file diff --git a/MyWebsite/MyWebsite/Areas/Admin/Views/Projects/Delete.cshtml b/MyWebsite/MyWebsite/Areas/Admin/Views/Projects/Delete.cshtml index 772126d..95db8e7 100644 --- a/MyWebsite/MyWebsite/Areas/Admin/Views/Projects/Delete.cshtml +++ b/MyWebsite/MyWebsite/Areas/Admin/Views/Projects/Delete.cshtml @@ -10,6 +10,10 @@
+ @if (Uri.IsWellFormedUriString(Model.Logo, UriKind.RelativeOrAbsolute)) + { + + }

@Html.DisplayNameFor(model => model.Id): @Model.Id

@@ -59,5 +63,11 @@ display: inline-block; background-size: contain; } + + img + { + width: 128px; + height: 128px; + } } \ No newline at end of file diff --git a/MyWebsite/MyWebsite/Areas/Admin/Views/Projects/Edit.cshtml b/MyWebsite/MyWebsite/Areas/Admin/Views/Projects/Edit.cshtml index 5b9aec5..5aaed9d 100644 --- a/MyWebsite/MyWebsite/Areas/Admin/Views/Projects/Edit.cshtml +++ b/MyWebsite/MyWebsite/Areas/Admin/Views/Projects/Edit.cshtml @@ -1,111 +1,116 @@ -@model MyWebsite.Models.ProjectModel -@{ - ViewData["Title"] = "Edit"; -} - -
-  Back to the list -

Edit project

-
- -
-
-
- -
- - -
-
- - - -
-
- - - -
-
- - - -
-
- - - -
-
- - - -
-
- - - -
-
- - - -
-
- - - -
- @foreach (BadgeModel badge in ViewData["Badges"] as List) - { - -
- @badge.Description
- } -
-
- - -
-
- -@section Imports -{ - - - +@model MyWebsite.Models.ProjectModel +@{ + ViewData["Title"] = "Edit"; +} + +
+  Back to the list +

Edit project

+
+ +
+
+
+ +
+ + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+ @foreach (BadgeModel badge in ViewData["Badges"] as List) + { + +
+ @badge.Description
+ } +
+
+ + +
+
+ +@section Imports +{ + + + } \ No newline at end of file diff --git a/MyWebsite/MyWebsite/Areas/Admin/Views/Projects/Index.cshtml b/MyWebsite/MyWebsite/Areas/Admin/Views/Projects/Index.cshtml index 8a55a4c..154e7a5 100644 --- a/MyWebsite/MyWebsite/Areas/Admin/Views/Projects/Index.cshtml +++ b/MyWebsite/MyWebsite/Areas/Admin/Views/Projects/Index.cshtml @@ -18,6 +18,9 @@ @Html.DisplayNameFor(model => model.projects.First().Id) + + @Html.DisplayNameFor(model => model.projects.First().Logo) + @Html.DisplayNameFor(model => model.projects.First().Title) @@ -44,6 +47,12 @@ @item.Id + + @if (Uri.IsWellFormedUriString(item.Logo, UriKind.RelativeOrAbsolute)) + { + + } + @item.EnglishTitle (en)
@(item.RussianTitle ?? "") (ru) @@ -104,6 +113,12 @@ color: gray; text-decoration: underline; } + + img + { + width: 25px; + height: 25px; + } diff --git a/MyWebsite/MyWebsite/Areas/Admin/Views/Shared/GUTSchedule.cshtml b/MyWebsite/MyWebsite/Areas/Admin/Views/Shared/GUTSchedule.cshtml index e0be6f0..3824631 100644 --- a/MyWebsite/MyWebsite/Areas/Admin/Views/Shared/GUTSchedule.cshtml +++ b/MyWebsite/MyWebsite/Areas/Admin/Views/Shared/GUTSchedule.cshtml @@ -16,7 +16,7 @@
- +
diff --git a/MyWebsite/MyWebsite/Areas/Admin/Views/Shared/LinkShortener.cshtml b/MyWebsite/MyWebsite/Areas/Admin/Views/Shared/LinkShortener.cshtml index 12ade19..2dd6eb1 100644 --- a/MyWebsite/MyWebsite/Areas/Admin/Views/Shared/LinkShortener.cshtml +++ b/MyWebsite/MyWebsite/Areas/Admin/Views/Shared/LinkShortener.cshtml @@ -1,6 +1,10 @@ @model List @{ ViewData["Title"] = "Link shortener"; + + var blogLinks = Model.Where(i => i.Uri.AbsoluteUri.Contains("xfox111.net/Blog/Post")); + var fileLinks = Model.Where(i => i.Uri.AbsoluteUri.Contains("xfox111.net/assets/SharedFiles") && System.IO.File.Exists("wwwroot" + i.Uri.LocalPath)); + var otherLinks = Model.Where(i => !blogLinks.Contains(i) && !fileLinks.Contains(i)); }
@@ -12,9 +16,9 @@

Create new link

-
+ - + @@ -31,11 +35,13 @@ - @foreach (ShortLinkModel link in Model) + @foreach (ShortLinkModel link in otherLinks) { - @link.Uri.OriginalString - //xfox111.net/@link.LinkId + + @link.Uri.OriginalString + + https://xfox111.net/@link.LinkId Delete @@ -43,4 +49,71 @@ } + +

Blog links

+ + + + + + + + + @foreach (ShortLinkModel link in blogLinks) + { + + + + + + } + +
Original linkShort link
+ @link.Uri.OriginalString + https://xfox111.net/@link.LinkId + Delete +
+ +

Shared files

+ + + + + + + + +
+ + + + + + + + + + @foreach (string file in System.IO.Directory.GetFiles("wwwroot/assets/SharedFiles", "*", System.IO.SearchOption.AllDirectories)) + { + + + + + + } + +
File nameShort linkAction
+ @(file.Replace("wwwroot", "")) + + @if (fileLinks.FirstOrDefault(i => i.Uri.OriginalString.EndsWith(file.Replace("wwwroot", "").Replace("\\", "/"), StringComparison.InvariantCultureIgnoreCase)) is ShortLinkModel link) + { + https://xfox111.net/@link.LinkId + } + else + { + Shorten link + } + + Delete file +
\ No newline at end of file diff --git a/MyWebsite/MyWebsite/Areas/Projects/Views/FoxTube/_Layout.cshtml b/MyWebsite/MyWebsite/Areas/Projects/Views/FoxTube/_Layout.cshtml index beff3c3..8840a48 100644 --- a/MyWebsite/MyWebsite/Areas/Projects/Views/FoxTube/_Layout.cshtml +++ b/MyWebsite/MyWebsite/Areas/Projects/Views/FoxTube/_Layout.cshtml @@ -3,13 +3,13 @@ @ViewData["Title"] - FoxTube - XFox111.NET - + - + @section Imports { - } @functions @@ -116,18 +103,16 @@ var comment = Model.Post.Replies.Items.FirstOrDefault(i => i.Id == commentId); return $@"
+
- +

+ {comment.Author.DisplayName} | {DateTime.Parse(comment.Published).ToString()} +

+

+ {comment.Content} +

- - {comment.Author.DisplayName} | {DateTime.Parse(comment.Published).ToString()} - -

- {comment.Content} -

-
- {(string.Join(string.Empty, Model.Post.Replies.Items.Where(i => i.InReplyTo?.Id == commentId).Select(i => GetCommentCard(i.Id))))} -
+ {(string.Join(string.Empty, Model.Post.Replies.Items.Where(i => i.InReplyTo?.Id == commentId).Select(i => GetCommentCard(i.Id))))}
diff --git a/MyWebsite/MyWebsite/Views/Gallery/Index.cshtml b/MyWebsite/MyWebsite/Views/Gallery/Index.cshtml index e2bf044..0133d98 100644 --- a/MyWebsite/MyWebsite/Views/Gallery/Index.cshtml +++ b/MyWebsite/MyWebsite/Views/Gallery/Index.cshtml @@ -1,25 +1,30 @@ -@model ArtworkViewModel -@{ - ViewData["Title"] = SharedLocalizer["My artworks"]; -} - -
-

@SharedLocalizer["My artworks"]

-
- - - -@section Imports -{ - +@model ArtworkViewModel +@{ + ViewData["Title"] = SharedLocalizer["My artworks"]; +} + +
+

@SharedLocalizer["My artworks"]

+

+ @(Localizer["Important notice"]):
+ @Localizer["These artworks are made by me for me. I'm not a professional artist or even beginner and I never planned to become any of them."]
+ @Localizer["So if you don't like this stuff, you can leave your feedback at ask@who-cares.com and I will gladly review your suggestions"] +

+
+ + + +@section Imports +{ + } \ No newline at end of file diff --git a/MyWebsite/MyWebsite/Views/Resume/Index.cshtml b/MyWebsite/MyWebsite/Views/Resume/Index.cshtml index b6d63bd..82140ec 100644 --- a/MyWebsite/MyWebsite/Views/Resume/Index.cshtml +++ b/MyWebsite/MyWebsite/Views/Resume/Index.cshtml @@ -34,4 +34,14 @@ @section Footer { +} + +@section Imports +{ + } \ No newline at end of file diff --git a/MyWebsite/MyWebsite/Views/Shared/Projects.cshtml b/MyWebsite/MyWebsite/Views/Shared/Projects.cshtml index 86dd509..f3665e4 100644 --- a/MyWebsite/MyWebsite/Views/Shared/Projects.cshtml +++ b/MyWebsite/MyWebsite/Views/Shared/Projects.cshtml @@ -17,13 +17,11 @@ @foreach (ProjectModel project in Model.Projects.OrderBy(i => i.Order)) {
-
-

@project.Title

-

- @Html.Raw(project.Description?.Replace("\n", "
")) -

- @project.LinkCaption -
+

@project.Title

+

+ @Html.Raw(project.Description?.Replace("\n", "
")) +

+ @project.LinkCaption
@foreach (string b in (project.Badges ?? "").Split(',')) { @@ -31,6 +29,10 @@
}
+ @if(Uri.IsWellFormedUriString(project.Logo, UriKind.RelativeOrAbsolute)) + { + + }
} } diff --git a/MyWebsite/MyWebsite/Views/Shared/_Layout.cshtml b/MyWebsite/MyWebsite/Views/Shared/_Layout.cshtml index 7fbcebd..4442ed0 100644 --- a/MyWebsite/MyWebsite/Views/Shared/_Layout.cshtml +++ b/MyWebsite/MyWebsite/Views/Shared/_Layout.cshtml @@ -14,7 +14,7 @@ } diff --git a/MyWebsite/MyWebsite/web.config b/MyWebsite/MyWebsite/web.config index c565720..6644b4d 100644 --- a/MyWebsite/MyWebsite/web.config +++ b/MyWebsite/MyWebsite/web.config @@ -17,17 +17,8 @@ - - - - - - - - - diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Logo.svg b/MyWebsite/MyWebsite/wwwroot/Projects/FoxTube/Logo.svg similarity index 100% rename from MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Logo.svg rename to MyWebsite/MyWebsite/wwwroot/Projects/FoxTube/Logo.svg diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/FoxTube.css b/MyWebsite/MyWebsite/wwwroot/Projects/FoxTube/Style.css similarity index 80% rename from MyWebsite/MyWebsite/wwwroot/assets/FoxTube/FoxTube.css rename to MyWebsite/MyWebsite/wwwroot/Projects/FoxTube/Style.css index 8d37ec9..0cec34d 100644 --- a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/FoxTube.css +++ b/MyWebsite/MyWebsite/wwwroot/Projects/FoxTube/Style.css @@ -1,190 +1,203 @@ -/* Header styles */ -nav -{ - display: grid; - grid-template-columns: auto auto 1fr auto; - grid-column-gap: 10px; - background-color: #343434; - position: fixed; - top: 0; - right: 0; - left: 0; - z-index: 10; - font-size: 26px; - padding: 10px; - min-height: 64px; -} - - nav img - { - height: 64px; - } - - nav a - { - text-decoration: none; - color: white; - } - - nav a:hover - { - color: gray; - } - - nav p - { - grid-column: 4; - user-select: none; - cursor: pointer; - text-align: right; - margin: 0px; - } - -menu -{ - margin: 26px 0px; - grid-row: 2; - grid-column: 1/5; - list-style: none; -} - - menu li - { - font-size: 20px; - margin-top: 10px; - display: block; - } - -/* Body styles */ -html -{ - overflow: hidden; -} - -body -{ - font-family: 'Consolas', 'SegoeMDL2Assets'; - overflow: auto; - margin: 0px; - margin-top: 84px; - display: grid; - grid-template-rows: 1fr auto; - height: calc(100vh - 84px); -} - -main -{ - font-family: 'Calibri', 'SegoeMDL2Assets'; -} - -.back -{ - text-decoration: none; - color: black !important; -} - - .back:hover - { - text-decoration: underline; - } - -article -{ - margin: 0px 20px; -} - - article a:visited, article a:link - { - color: blue; - } - -.comment, .comment:visited -{ - color: #57a64a !important; -} - -.video -{ - max-width: 560px; - height: 315px; - width: 100%; -} - -*[hidden] -{ - display: none; -} - -/* Footer styles */ -footer -{ - padding: 10px; - display: grid; - align-items: center; - grid-template-columns: 1fr auto; - grid-column-gap: 10px; -} - - footer a - { - text-decoration: none; - color: black; - } - - footer a:hover - { - color: orangered; - } - -/* Adaptive code */ -@media only screen and (min-width: 1150px) -{ - menu - { - display: initial !important; - grid-row: 1; - grid-column: 3; - margin: 0px; - align-self: end; - margin-bottom: 3px; - } - - menu li - { - display: inline-block; - margin-right: 10px; - margin-top: 0px; - } - - #menu-toggle - { - display: none; - } -} - -@media only screen and (max-width: 700px) and (min-width: 480px) -{ - body - { - margin-top: 112px !important; - height: calc(100vh - 112px) !important; - } -} - -@media only screen and (max-width: 480px) -{ - nav > a > span - { - display: none; - } - - .video - { - height: 240px !important; - } -} - -nav > p > a:nth-last-child(2) -{ - visibility: hidden; +/* Header styles */ +nav +{ + display: grid; + grid-template-columns: auto auto 1fr auto; + grid-column-gap: 10px; + background-color: #343434; + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 10; + font-size: 26px; + padding: 10px; + min-height: 64px; +} + + nav img + { + height: 64px; + } + + nav a + { + text-decoration: none; + color: white; + } + + nav a:hover + { + color: gray; + } + + nav p + { + grid-column: 4; + user-select: none; + cursor: pointer; + text-align: right; + margin: 0px; + } + +menu +{ + margin: 26px 0px; + grid-row: 2; + grid-column: 1/5; + list-style: none; +} + + menu li + { + font-size: 20px; + margin-top: 10px; + display: block; + } + +/* Body styles */ +html +{ + overflow: hidden; +} + +body +{ + font-family: "Consolas", "Segoe MDL2 Assets"; + overflow: auto; + margin: 0px; + margin-top: 84px; + display: grid; + grid-template-rows: 1fr auto; + height: calc(100vh - 84px); +} + +main +{ + font-family: "Segoe UI", "Segoe MDL2 Assets"; + font-size: 14px; +} + +h1, h2, h3, h4, h5, h6 +{ + font-weight: 400; + margin: 0px; +} + +h1 +{ + font-size: 24px; + margin-top: 10px; +} + +h2 +{ + font-size: 20px; +} + +h3 +{ + font-size: 14px +} + +.back +{ + text-decoration: none; + color: black !important; +} + + .back:hover + { + text-decoration: underline; + } + +article +{ + margin: 0px 20px; +} + + article a:visited, article a:link + { + color: red; + } + +.video +{ + max-width: 560px; + height: 315px; + width: 100%; +} + +/* Footer styles */ +footer +{ + padding: 10px; + display: grid; + align-items: center; + grid-template-columns: 1fr auto; + grid-column-gap: 10px; +} + + footer a + { + text-decoration: none; + color: black; + } + + footer a:hover + { + color: orangered; + } + +/* Adaptive code */ +@media only screen and (min-width: 1150px) +{ + menu + { + display: initial !important; + grid-row: 1; + grid-column: 3; + margin: 0px; + align-self: end; + margin-bottom: 3px; + } + + menu li + { + display: inline-block; + margin-right: 10px; + margin-top: 0px; + } + + #menu-toggle + { + display: none; + } +} + +@media only screen and (max-width: 700px) and (min-width: 480px) +{ + body + { + margin-top: 112px !important; + height: calc(100vh - 112px) !important; + } +} + +@media only screen and (max-width: 480px) +{ + nav > a > span + { + display: none; + } + + .video + { + height: 240px !important; + } +} + +nav > p > a:nth-last-child(2) +{ + visibility: hidden; } \ No newline at end of file diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/apple-touch-favicon.png b/MyWebsite/MyWebsite/wwwroot/Projects/FoxTube/apple-touch-favicon.png similarity index 100% rename from MyWebsite/MyWebsite/wwwroot/assets/FoxTube/apple-touch-favicon.png rename to MyWebsite/MyWebsite/wwwroot/Projects/FoxTube/apple-touch-favicon.png diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/favicon.ico b/MyWebsite/MyWebsite/wwwroot/Projects/FoxTube/favicon.ico similarity index 100% rename from MyWebsite/MyWebsite/wwwroot/assets/FoxTube/favicon.ico rename to MyWebsite/MyWebsite/wwwroot/Projects/FoxTube/favicon.ico diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/favicon.png b/MyWebsite/MyWebsite/wwwroot/Projects/FoxTube/favicon.png similarity index 100% rename from MyWebsite/MyWebsite/wwwroot/assets/FoxTube/favicon.png rename to MyWebsite/MyWebsite/wwwroot/Projects/FoxTube/favicon.png diff --git a/MyWebsite/MyWebsite/wwwroot/assets/Construction/Construction.css b/MyWebsite/MyWebsite/wwwroot/assets/Construction/Construction.css index f0b3577..c516d9a 100644 --- a/MyWebsite/MyWebsite/wwwroot/assets/Construction/Construction.css +++ b/MyWebsite/MyWebsite/wwwroot/assets/Construction/Construction.css @@ -1,248 +1,248 @@ -/* Header */ -nav -{ - user-select: none; - position: fixed; - right: 0px; - left: 0px; -} - - nav > div:first-child - { - display: grid; - grid-template-columns: auto 1fr auto; - background-color: #007acc; - height: 22px; - background-image: url('Images/strip.png'); - } - - nav > div:first-child span - { - background-color: inherit; - padding: 2px 5px; - } - - nav > div:first-child > div:last-child - { - background-color: inherit; - padding: 0px 2px; - } - - nav > div:first-child > div div - { - display: inline-block; - margin: 2px 0px; - height: 17px; - width: 17px; - text-align: center; - line-height: 17px; - font-size: 11pt; - } - - nav > div:last-child - { - display: grid; - grid-template-columns: auto auto 1fr; - background-color: #2d2d30; - height: 26px; - } - - nav > div:last-child span - { - margin: 0px 6px; - line-height: 26px; - text-align: center; - } - - nav > div:last-child select - { - background-color: #333337; - color: white; - border: 1px solid #434346; - border-radius: 0px; - width: 300px; - height: 21px; - margin: 2px 0px; - } - - nav > div:last-child img - { - height: 26px; - } - -/* Body */ -html -{ - overflow: hidden; -} - -body -{ - background-color: #252526; - color: white; - font-size: 9pt; - margin: 0px; - font-family: 'SegoeUISymbol'; - overflow: auto; - display: grid; - height: 100vh; -} - -main -{ - font-family: 'Consolas'; - margin: 50px 0px 50px 12px; -} - - main p - { - margin: 0px; - display: none; - white-space: nowrap; - } - -a -{ - color: #569cd6; -} - - a:visited - { - color: #569cd6; - } - -.err -{ - color: #e51400; -} - -/* Footer */ -footer -{ - background-color: #007acc; - color: white; - height: 26px; - position: fixed; - bottom: 0; - left: 0; - right: 0; - padding-right: 12px; - display: grid; - grid-template-columns: auto 1fr auto auto auto auto auto; - user-select: none; -} - -.status-bar-btn -{ - width: 26px; - height: 26px; - display: inline-block; - text-align: center; - font-size: 12pt; -} - -.git-btn -{ - padding: 0px 5px; - margin: 4px; - height: 17px; - min-width: 26px; -} - -.btn -{ - cursor: pointer; -} - - .btn:hover - { - background-color: #ffffff33; - } - -#status -{ - margin: 0px 5px; - vertical-align: central; - line-height: 26px; -} - -/* Button icons */ -.push:before -{ - content: '\e1fe'; -} - -.commit:before -{ - content: '\e104'; -} - -.branch:before -{ - content: '\E14B'; -} - -.git:before -{ - content: '\1F4D3'; -} - -.notification:before -{ - content: '\E1FA'; -} - -.task:before -{ - content: '\23E5'; -} - -.hide:before -{ - content: '\23F7'; -} - -.maximize:before -{ - content: '\1F5D7'; -} - -.close:before -{ - content: '\1F7A8'; -} - -@media only screen and (max-width: 560px) -{ - nav > div:last-child - { - height: initial; - grid-template-columns: initial; - } - - nav > div:last-child select - { - width: initial; - margin: 0px 5px; - } - - nav > div > span - { - text-align: start !important; - } - - main - { - margin-top: 110px; - } - - .git-btn - { - min-width: 17px; - } - - .git-btn > span - { - display: none; - } -} +/* Header */ +nav +{ + user-select: none; + position: fixed; + right: 0px; + left: 0px; +} + + nav > div:first-child + { + display: grid; + grid-template-columns: auto 1fr auto; + background-color: #007acc; + height: 22px; + background-image: url('Images/strip.png'); + } + + nav > div:first-child span + { + background-color: inherit; + padding: 2px 5px; + } + + nav > div:first-child > div:last-child + { + background-color: inherit; + padding: 0px 2px; + } + + nav > div:first-child > div div + { + display: inline-block; + margin: 2px 0px; + height: 17px; + width: 17px; + text-align: center; + line-height: 17px; + font-size: 11pt; + } + + nav > div:last-child + { + display: grid; + grid-template-columns: auto auto 1fr; + background-color: #2d2d30; + height: 26px; + } + + nav > div:last-child span + { + margin: 0px 6px; + line-height: 26px; + text-align: center; + } + + nav > div:last-child select + { + background-color: #333337; + color: white; + border: 1px solid #434346; + border-radius: 0px; + width: 300px; + height: 21px; + margin: 2px 0px; + } + + nav > div:last-child img + { + height: 26px; + } + +/* Body */ +html +{ + overflow: hidden; +} + +body +{ + background-color: #252526; + color: white; + font-size: 9pt; + margin: 0px; + font-family: "Segoe UI"; + overflow: auto; + display: grid; + height: 100vh; +} + +main +{ + font-family: "Consolas"; + margin: 50px 0px 50px 12px; +} + + main p + { + margin: 0px; + display: none; + white-space: nowrap; + } + +a +{ + color: #569cd6; +} + + a:visited + { + color: #569cd6; + } + +.err +{ + color: #e51400; +} + +/* Footer */ +footer +{ + background-color: #007acc; + color: white; + height: 26px; + position: fixed; + bottom: 0; + left: 0; + right: 0; + padding-right: 12px; + display: grid; + grid-template-columns: auto 1fr auto auto auto auto auto; + user-select: none; +} + +.status-bar-btn +{ + width: 26px; + height: 26px; + display: inline-block; + text-align: center; + font-size: 12pt; +} + +.git-btn +{ + padding: 0px 5px; + margin: 4px; + height: 17px; + min-width: 26px; +} + +.btn +{ + cursor: pointer; +} + + .btn:hover + { + background-color: #ffffff33; + } + +#status +{ + margin: 0px 5px; + vertical-align: central; + line-height: 26px; +} + +/* Button icons */ +.push:before +{ + content: '\e1fe'; +} + +.commit:before +{ + content: '\e104'; +} + +.branch:before +{ + content: '\E14B'; +} + +.git:before +{ + content: '\1F4D3'; +} + +.notification:before +{ + content: '\E1FA'; +} + +.task:before +{ + content: '\23E5'; +} + +.hide:before +{ + content: '\23F7'; +} + +.maximize:before +{ + content: '\1F5D7'; +} + +.close:before +{ + content: '\1F7A8'; +} + +@media only screen and (max-width: 560px) +{ + nav > div:last-child + { + height: initial; + grid-template-columns: initial; + } + + nav > div:last-child select + { + width: initial; + margin: 0px 5px; + } + + nav > div > span + { + text-align: start !important; + } + + main + { + margin-top: 110px; + } + + .git-btn + { + min-width: 17px; + } + + .git-btn > span + { + display: none; + } +} diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Dark/Channel_dark_eng.png b/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Dark/Channel_dark_eng.png deleted file mode 100644 index 80c382a..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Dark/Channel_dark_eng.png and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Dark/Main_dark_eng.png b/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Dark/Main_dark_eng.png deleted file mode 100644 index 67c3563..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Dark/Main_dark_eng.png and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Dark/Playlist_dark_eng.png b/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Dark/Playlist_dark_eng.png deleted file mode 100644 index 813d69a..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Dark/Playlist_dark_eng.png and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Dark/Stream_dark_eng.png b/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Dark/Stream_dark_eng.png deleted file mode 100644 index dac5eba..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Dark/Stream_dark_eng.png and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Dark/Video_dark_eng.png b/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Dark/Video_dark_eng.png deleted file mode 100644 index f0be7b3..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Dark/Video_dark_eng.png and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Light/Channel_light_eng.png b/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Light/Channel_light_eng.png deleted file mode 100644 index 9671340..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Light/Channel_light_eng.png and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Light/Home_light_eng.png b/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Light/Home_light_eng.png deleted file mode 100644 index a271117..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Light/Home_light_eng.png and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Light/Playlist_light_eng.png b/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Light/Playlist_light_eng.png deleted file mode 100644 index afd01cd..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Light/Playlist_light_eng.png and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Light/Stream_light_eng.png b/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Light/Stream_light_eng.png deleted file mode 100644 index 74306c1..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Light/Stream_light_eng.png and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Light/Video_light_eng.png b/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Light/Video_light_eng.png deleted file mode 100644 index 26c3af4..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Light/Video_light_eng.png and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Pip_eng.png b/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Pip_eng.png deleted file mode 100644 index 6b3f4a6..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Eng/Pip_eng.png and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Dark/Channel_dark_rus.png b/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Dark/Channel_dark_rus.png deleted file mode 100644 index 29028c4..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Dark/Channel_dark_rus.png and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Dark/Home_dark_rus.png b/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Dark/Home_dark_rus.png deleted file mode 100644 index 761359c..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Dark/Home_dark_rus.png and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Dark/Playlist_dark_rus.png b/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Dark/Playlist_dark_rus.png deleted file mode 100644 index 4abc12c..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Dark/Playlist_dark_rus.png and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Dark/Stream_dark_rus.png b/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Dark/Stream_dark_rus.png deleted file mode 100644 index 2eaa262..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Dark/Stream_dark_rus.png and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Dark/Video_dark_rus.png b/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Dark/Video_dark_rus.png deleted file mode 100644 index 36ab600..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Dark/Video_dark_rus.png and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Light/Channel_light_rus.png b/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Light/Channel_light_rus.png deleted file mode 100644 index 75b03fe..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Light/Channel_light_rus.png and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Light/Home_light_rus.png b/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Light/Home_light_rus.png deleted file mode 100644 index 1b0c61c..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Light/Home_light_rus.png and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Light/Playlist_light_rus.png b/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Light/Playlist_light_rus.png deleted file mode 100644 index 98d97db..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Light/Playlist_light_rus.png and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Light/Stream_light_rus.png b/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Light/Stream_light_rus.png deleted file mode 100644 index 86cf3c4..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Light/Stream_light_rus.png and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Light/Video_light_rus.png b/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Light/Video_light_rus.png deleted file mode 100644 index dfda59d..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Light/Video_light_rus.png and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Pip_rus.png b/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Pip_rus.png deleted file mode 100644 index e74e2cc..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/assets/FoxTube/Screenshots/Rus/Pip_rus.png and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/css/Admin.css b/MyWebsite/MyWebsite/wwwroot/css/Admin.css index fbeccb0..f9ec14e 100644 --- a/MyWebsite/MyWebsite/wwwroot/css/Admin.css +++ b/MyWebsite/MyWebsite/wwwroot/css/Admin.css @@ -94,7 +94,7 @@ textarea padding: 10px; box-sizing: border-box; height: 68vh; - font-family: 'Consolas'; + font-family: "Consolas"; } .select-container::after @@ -141,6 +141,13 @@ th text-align: left; } +tr:nth-child(even) +{ + background: lightgray; + box-sizing: border-box; + margin: 5px; +} + td { text-align: start; @@ -151,6 +158,7 @@ table width: 100%; } + .text-danger { text-decoration: solid; diff --git a/MyWebsite/MyWebsite/wwwroot/css/Blog.css b/MyWebsite/MyWebsite/wwwroot/css/Blog.css index 0377593..00b05f2 100644 --- a/MyWebsite/MyWebsite/wwwroot/css/Blog.css +++ b/MyWebsite/MyWebsite/wwwroot/css/Blog.css @@ -6,8 +6,9 @@ grid-column-gap: 50px; grid-row-gap: 25px; max-width: 1100px; - margin: 0px auto; - padding: 0px 30px; + width: calc(100vw - 117px); + margin: 50px auto 40px auto; + box-sizing: border-box; } article, header @@ -15,61 +16,57 @@ article, header margin: 0px; } + header a:link + { + text-decoration: underline; + } + body { background-color: whitesmoke; } -.item +.timelineContainer +{ + display: grid; + grid-row-gap: 25px; +} + +.post { background: white; - margin-bottom: 20px; border-radius: 5px; } -header -{ - margin: 25px 0px; -} - -header a:link -{ - text-decoration: underline; -} - - header > h1 + .post > img { - margin-bottom: 0px; + width: 100%; + border-radius: 5px 5px 0px 0px; } -.item > img -{ - width: 100%; - border-radius: 5px 5px 0px 0px; -} - -.post-body img -{ - width: 100%; -} - -.item > div -{ - padding: 10px 25px; -} - - .item > div > p + .post > div { - color: gray; + padding: 25px; + padding-top: 0px; } - .item > div > h2 > a - { - color: black; - text-decoration: none; - } + .post > div > p + { + color: gray; + } - .item > div > h2::after + .post > div > h2 + { + margin: 0px; + } + + .post > div > h2 > a + { + color: black; + text-decoration: none; + } + + .post h2::after { content: " \E00F"; font-size: initial; @@ -79,9 +76,7 @@ header a:link main > form { align-self: center; - background-color: white; position: relative; - border-radius: 5px; } main > form > input[type=text] @@ -92,11 +87,12 @@ main > form padding: 0px 10px; height: 32px; width: 100%; + outline: none; } main > form > input[type=submit] { - font-family: "SegoeMDL2Assets"; + font-family: "Segoe MDL2 Assets"; height: 32px; width: 32px; background-color: transparent; @@ -109,9 +105,7 @@ main > form .page-navigation { background-color: white; - border-radius: 5px; display: table; - user-select: none; margin: auto; } @@ -131,18 +125,6 @@ main > form line-height: 33px; } -.follow-list a -{ - color: black; - text-decoration: none; - font-size: x-large; -} - - .follow-list a:hover - { - opacity: .5; - } - .follow-list { display: inline-grid; @@ -150,33 +132,53 @@ main > form grid-column-gap: 20px; } -.post-body -{ - background: white; - margin-bottom: 20px; - border-radius: 5px; - padding: 1px 0px; -} - - .post-body .post-header, .post-body > p + .follow-list a { - margin-right: 25px; - margin-left: 25px; - margin-bottom: 25px; + color: black; + text-decoration: none; + font-size: x-large; } - .post-body > hr, - .post-body > h1, - .post-body > h2, - .post-body > h3, - .post-body > h6, - .post-body > h5, - .post-body > h6, - .post-body > ol, - .post-body > ul + .follow-list a:hover + { + opacity: .5; + } + +article.article, .post-comments +{ + background: white; + border-radius: 5px; + padding: 5px 20px; +} + + article.article img { - margin-right: 25px; - margin-left: 25px; + width: 100%; + cursor: zoom-in; + } + + article.article > img + { + width: calc(100% + 40px); + margin: 0px -20px; + } + + article.article pre + { + margin: 0px -20px; + padding: 0px 20px; + overflow: auto; + background-color: #eee; + } + + article.article code + { + background-color: #eee; + } + + article.article p code + { + word-break: break-all; } .share-btns @@ -184,6 +186,7 @@ main > form display: inline-grid; grid-auto-flow: column; grid-column-gap: 5px; + margin-bottom: 20px; } .share-btn @@ -251,57 +254,83 @@ main > form fill: #3673be !important; } -.post-comments -{ - background-color: white; - border-radius: 5px; - padding: 5px 25px; -} - -.post-comment > div +.post-comment { display: grid; - grid-template-columns: auto 1fr; + grid-template-columns: 35px 1fr; grid-column-gap: 20px; + margin-top: 20px; } - .post-comment > div > div > span + .post-comment > div > p:first-child { + margin: 0px; line-height: 35px; } - .post-comment > div > div > div + .post-comment > img { - margin-top: 30px; + border-radius: 18px; } - .post-comment > div > img +main input, .post, article.article, .twitter-timeline, .post-comments +{ + transition-duration: .2s; + box-shadow: 0px 0px 10px rgba(0, 0, 0, .1); +} + + main input:focus, main input:hover, article .post:hover { - border-radius: 999px; + box-shadow: 0px 0px 10px rgba(0, 0, 0, .5); } +@media only screen and (max-width: 1200px) +{ + main + { + margin: 50px 50px 0px 50px; + } + + article.article + { + width: calc(100vw - 467px) + } +} + @media only screen and (max-width: 1000px) { main { grid-column-gap: 25px; } + + article.article + { + width: calc(100vw - 442px) + } } @media only screen and (max-width: 800px) { - main > aside, main > form + .twitter-timeline { - display: none; + display: none !important; + } + + main > form + { + margin: 25px 0px; } main { display: block; + margin: 20px 50px 0px 50px; } - header + + article.article { - margin-bottom: 25px; + width: unset; } } @@ -309,6 +338,7 @@ main > form { main { - padding: 10px !important; + margin: 10px; + width: calc(100vw - 37px); } } \ No newline at end of file diff --git a/MyWebsite/MyWebsite/wwwroot/css/Fonts.css b/MyWebsite/MyWebsite/wwwroot/css/Fonts.css index 8937127..c971651 100644 --- a/MyWebsite/MyWebsite/wwwroot/css/Fonts.css +++ b/MyWebsite/MyWebsite/wwwroot/css/Fonts.css @@ -1,23 +1,38 @@ -@font-face -{ - font-family: 'Consolas'; - src: local("Consolas"), url("/fonts/Consolas/consolas.eot"), url("/fonts/Consolas/consolas.eot?#iefix") format("embedded-opentype"), url("/fonts/Consolas/consolas.otf") format("opentype"), url("/fonts/Consolas/consolas.svg") format("svg"), url("/fonts/Consolas/consolas.ttf") format("truetype"), url("/fonts/Consolas/consolas.woff") format("woff"), url("/fonts/Consolas/consolas.woff2") format("woff2"); -} - -@font-face -{ - font-family: 'SegoeMDL2Assets'; - src: local("Segoe MDL2 Assets"), url("/fonts/Segoe MDL2 Assets/segoeMLD2assets.eot"), url("/fonts/Segoe MDL2 Assets/segoeMLD2assets.eot?#iefix") format("embedded-opentype"), url("/fonts/Segoe MDL2 Assets/segoeMLD2assets.otf") format("opentype"), url("/fonts/Segoe MDL2 Assets/segoeMLD2assets.svg") format("svg"), url("/fonts/Segoe MDL2 Assets/segoeMLD2assets.ttf") format("truetype"), url("/fonts/Segoe MDL2 Assets/segoeMLD2assets.woff") format("woff"), url("/fonts/Segoe MDL2 Assets/segoeMLD2assets.woff2") format("woff2"); -} - -@font-face -{ - font-family: 'Calibri'; - src: local("Calibri"), url("/fonts/Calibri/calibri.eot"), url("/fonts/Calibri/calibri.eot?#iefix") format("embedded-opentype"), url("/fonts/Calibri/calibri.otf") format("opentype"), url("/fonts/Calibri/calibri.svg") format("svg"), url("/fonts/Calibri/calibri.ttf") format("truetype"), url("/fonts/Calibri/calibri.woff") format("woff"), url("/fonts/Calibri/calibri.woff2") format("woff2"); -} - -@font-face -{ - font-family: 'SegoeUISymbol'; - src: local("Segoe UI Symbol"), url("/fonts/Segoe UI Symbol/segoeUISymbol.eot"), url("/fonts/Segoe UI Symbol/segoeUISymbol.eot?#iefix") format("embedded-opentype"), url("/fonts/Segoe UI Symbol/segoeUISymbol.otf") format("opentype"), url("/fonts/Segoe UI Symbol/segoeUISymbol.svg") format("svg"), url("/fonts/Segoe UI Symbol/segoeUISymbol.ttf") format("truetype"), url("/fonts/Segoe UI Symbol/segoeUISymbol.woff") format("woff"), url("/fonts/Segoe UI Symbol/segoeUISymbol.woff2") format("woff2"); +@font-face +{ + font-family: "Consolas"; + src: local("Consolas"), + local("DMCA Sans Serif"), + url("/fonts/DMCAsansserif.ttf") format("truetype"); +} + +@font-face +{ + font-family: "Segoe MDL2 Assets"; + src: local("Segoe MDL2 Assets"), + local("Fabric External MDL2 Assets"), + url("/fonts/fabricmdl2.ttf") format("truetype"); +} + +@font-face +{ + font-family: "Segoe UI"; + src: local("Segoe UI"), + local("Segoe UI Symbol"), + local("Selawik"), + url("/fonts/SegoeUI/segoeui.ttf") format("truetype"), + url("/fonts/Selawik/selawk.eot"), + url("/fonts/Selawik/selawk.eot?#iefix") format("embedded-opentype"), + url("/fonts/Selawik/selawk.svg") format("svg"), + url("/fonts/Selawik/selawk.ttf") format("truetype"), + url("/fonts/Selawik/selawk.woff") format("woff"), + url("/fonts/Selawik/selawk.woff2") format("woff2"); +} + +@font-face +{ + font-family: "Comic Sans MS"; + src: local("Comic Sans MS"), + url("/fonts/emcomic.ttf") format("truetype"), + url("/fonts/nyashasans.ttf") format("truetype"); } \ No newline at end of file diff --git a/MyWebsite/MyWebsite/wwwroot/css/Projects.css b/MyWebsite/MyWebsite/wwwroot/css/Projects.css index 164d7f5..9c2455d 100644 --- a/MyWebsite/MyWebsite/wwwroot/css/Projects.css +++ b/MyWebsite/MyWebsite/wwwroot/css/Projects.css @@ -1,60 +1,106 @@ -/* Header style rules */ -header -{ - display: grid; - grid-template-columns: 1fr auto; - grid-column-gap: 20px; - margin-top: 20px; - margin-bottom: 20px; -} - -h1 -{ - margin: 0px; -} - -.github-stats -{ - width: 200px; - height: 110px; -} - -@media only screen and (max-width: 600px) -{ - .github-stats - { - grid-row: 2; - } -} - -/* Content styles */ -article -{ - display: grid; - grid-row-gap: 10px; - margin: 0px 10px; -} - -.project-item -{ - display: grid; - padding: 20px; - grid-row-gap: 20px; - background-color: whitesmoke; -} - -.badge-placeholder -{ - display: grid; - grid-column-gap: 10px; - grid-auto-columns: max-content; - grid-auto-flow: column; -} - - .badge-placeholder div - { - height: 25px; - width: 25px; - display: inline-block; - background-size: contain; - } \ No newline at end of file +/* Header style rules */ +header +{ + display: grid; + grid-template-columns: 1fr auto; + grid-column-gap: 20px; + margin-top: 20px; + margin-bottom: 20px; +} + +body +{ + background-color: whitesmoke; +} + +h1 +{ + margin: 0px; +} + +.github-stats +{ + width: 200px; + height: 110px; +} + +@media only screen and (max-width: 600px) +{ + .github-stats + { + grid-row: 2; + } +} + +/* Content styles */ +article +{ + display: grid; + grid-gap: 10px; + margin: 0px 10px; + grid-template-columns: 1fr 1fr; +} + +.project-item +{ + display: grid; + padding: 20px; + grid-row-gap: 20px; + grid-column-gap: 20px; + background-color: white; + box-shadow: 0px 0px 10px rgba(0, 0, 0, .1); + border-radius: 5px; + grid-template-rows: auto 1fr auto auto; + grid-template-columns: 1fr auto; +} + +.project-item > * +{ + grid-column: 1/2; +} + + .project-item img + { + width: 150px; + height: 150px; + grid-column: 2/3; + grid-row: 1/5; + filter: drop-shadow(0px 0px 5px rgb(150, 150, 150)); + } + +.project-item > p +{ + margin: 0px; +} + +.badge-placeholder +{ + display: grid; + grid-column-gap: 10px; + grid-auto-columns: max-content; + grid-auto-flow: column; +} + + .badge-placeholder div + { + height: 25px; + width: 25px; + display: inline-block; + background-size: contain; + } + +@media only screen and (max-width: 1024px) +{ + article + { + grid-template-columns: 1fr; + } +} + +@media only screen and (max-width: 480px) +{ + .project-item img + { + display: none; + } +} \ No newline at end of file diff --git a/MyWebsite/MyWebsite/wwwroot/css/Style.css b/MyWebsite/MyWebsite/wwwroot/css/Style.css index 1cf882c..28774a7 100644 --- a/MyWebsite/MyWebsite/wwwroot/css/Style.css +++ b/MyWebsite/MyWebsite/wwwroot/css/Style.css @@ -83,7 +83,7 @@ body overflow: auto; margin: 0px; margin-top: 53px; - font-family: 'Consolas', 'SegoeMDL2Assets'; + font-family: "Consolas", "Segoe MDL2 Assets"; /* This stuff is necessary for sticky footer */ display: grid; grid-template-rows: 1fr auto; diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Calibri/calibri.eot b/MyWebsite/MyWebsite/wwwroot/fonts/Calibri/calibri.eot deleted file mode 100644 index f5a7f38..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/fonts/Calibri/calibri.eot and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Calibri/calibri.otf b/MyWebsite/MyWebsite/wwwroot/fonts/Calibri/calibri.otf deleted file mode 100644 index bd39e65..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/fonts/Calibri/calibri.otf and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Calibri/calibri.svg b/MyWebsite/MyWebsite/wwwroot/fonts/Calibri/calibri.svg deleted file mode 100644 index 645d02c..0000000 --- a/MyWebsite/MyWebsite/wwwroot/fonts/Calibri/calibri.svg +++ /dev/null @@ -1,48173 +0,0 @@ - - - - -Created by FontForge 20090622 at Wed Mar 11 15:37:07 2020 - By deploy user -© 2018 Microsoft Corporation. All Rights Reserved. -Hebrew OpenType Layout logic copyright © 2003 & 2007, Ralph Hancock & John Hudson. This layout logic for Biblical Hebrew is open source software under the MIT License; see embedded license description for details. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Calibri/calibri.ttf b/MyWebsite/MyWebsite/wwwroot/fonts/Calibri/calibri.ttf deleted file mode 100644 index aac4726..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/fonts/Calibri/calibri.ttf and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Calibri/calibri.woff b/MyWebsite/MyWebsite/wwwroot/fonts/Calibri/calibri.woff deleted file mode 100644 index 18b4256..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/fonts/Calibri/calibri.woff and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Calibri/calibri.woff2 b/MyWebsite/MyWebsite/wwwroot/fonts/Calibri/calibri.woff2 deleted file mode 100644 index da32033..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/fonts/Calibri/calibri.woff2 and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Consolas/consolas.eot b/MyWebsite/MyWebsite/wwwroot/fonts/Consolas/consolas.eot deleted file mode 100644 index b637283..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/fonts/Consolas/consolas.eot and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Consolas/consolas.otf b/MyWebsite/MyWebsite/wwwroot/fonts/Consolas/consolas.otf deleted file mode 100644 index 06d4d9e..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/fonts/Consolas/consolas.otf and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Consolas/consolas.svg b/MyWebsite/MyWebsite/wwwroot/fonts/Consolas/consolas.svg deleted file mode 100644 index 62a97da..0000000 --- a/MyWebsite/MyWebsite/wwwroot/fonts/Consolas/consolas.svg +++ /dev/null @@ -1,8228 +0,0 @@ - - - - -Created by FontForge 20120731 at Sat Aug 3 16:41:38 2019 - By www-data -(c) 2018 Microsoft Corporation. All rights reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Consolas/consolas.ttf b/MyWebsite/MyWebsite/wwwroot/fonts/Consolas/consolas.ttf deleted file mode 100644 index e881ca4..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/fonts/Consolas/consolas.ttf and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Consolas/consolas.woff b/MyWebsite/MyWebsite/wwwroot/fonts/Consolas/consolas.woff deleted file mode 100644 index 1c3f578..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/fonts/Consolas/consolas.woff and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Consolas/consolas.woff2 b/MyWebsite/MyWebsite/wwwroot/fonts/Consolas/consolas.woff2 deleted file mode 100644 index 232ce38..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/fonts/Consolas/consolas.woff2 and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/DMCAsansserif.ttf b/MyWebsite/MyWebsite/wwwroot/fonts/DMCAsansserif.ttf new file mode 100644 index 0000000..9c6c055 Binary files /dev/null and b/MyWebsite/MyWebsite/wwwroot/fonts/DMCAsansserif.ttf differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Segoe MDL2 Assets/segoeMLD2assets.eot b/MyWebsite/MyWebsite/wwwroot/fonts/Segoe MDL2 Assets/segoeMLD2assets.eot deleted file mode 100644 index c2896be..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/fonts/Segoe MDL2 Assets/segoeMLD2assets.eot and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Segoe MDL2 Assets/segoeMLD2assets.otf b/MyWebsite/MyWebsite/wwwroot/fonts/Segoe MDL2 Assets/segoeMLD2assets.otf deleted file mode 100644 index c5d8b22..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/fonts/Segoe MDL2 Assets/segoeMLD2assets.otf and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Segoe MDL2 Assets/segoeMLD2assets.svg b/MyWebsite/MyWebsite/wwwroot/fonts/Segoe MDL2 Assets/segoeMLD2assets.svg deleted file mode 100644 index a5c66bb..0000000 --- a/MyWebsite/MyWebsite/wwwroot/fonts/Segoe MDL2 Assets/segoeMLD2assets.svg +++ /dev/null @@ -1,5452 +0,0 @@ - - - - -Created by FontForge 20120731 at Sat Aug 3 16:33:25 2019 - By www-data -(c) 2019 Microsoft Corporation. All Rights Reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Segoe MDL2 Assets/segoeMLD2assets.ttf b/MyWebsite/MyWebsite/wwwroot/fonts/Segoe MDL2 Assets/segoeMLD2assets.ttf deleted file mode 100644 index 3ba8a38..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/fonts/Segoe MDL2 Assets/segoeMLD2assets.ttf and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Segoe MDL2 Assets/segoeMLD2assets.woff b/MyWebsite/MyWebsite/wwwroot/fonts/Segoe MDL2 Assets/segoeMLD2assets.woff deleted file mode 100644 index 680be24..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/fonts/Segoe MDL2 Assets/segoeMLD2assets.woff and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Segoe MDL2 Assets/segoeMLD2assets.woff2 b/MyWebsite/MyWebsite/wwwroot/fonts/Segoe MDL2 Assets/segoeMLD2assets.woff2 deleted file mode 100644 index 046dc87..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/fonts/Segoe MDL2 Assets/segoeMLD2assets.woff2 and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Segoe UI Symbol/segoeUISymbol.eot b/MyWebsite/MyWebsite/wwwroot/fonts/Segoe UI Symbol/segoeUISymbol.eot deleted file mode 100644 index 370d691..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/fonts/Segoe UI Symbol/segoeUISymbol.eot and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Segoe UI Symbol/segoeUISymbol.otf b/MyWebsite/MyWebsite/wwwroot/fonts/Segoe UI Symbol/segoeUISymbol.otf deleted file mode 100644 index 4893d00..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/fonts/Segoe UI Symbol/segoeUISymbol.otf and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Segoe UI Symbol/segoeUISymbol.svg b/MyWebsite/MyWebsite/wwwroot/fonts/Segoe UI Symbol/segoeUISymbol.svg deleted file mode 100644 index 19d09e6..0000000 --- a/MyWebsite/MyWebsite/wwwroot/fonts/Segoe UI Symbol/segoeUISymbol.svg +++ /dev/null @@ -1,37798 +0,0 @@ - - - - -Created by FontForge 20090622 at Wed Mar 11 15:39:31 2020 - By deploy user -© 2016 Microsoft Corporation. All Rights Reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Segoe UI Symbol/segoeUISymbol.ttf b/MyWebsite/MyWebsite/wwwroot/fonts/Segoe UI Symbol/segoeUISymbol.ttf deleted file mode 100644 index d987ce5..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/fonts/Segoe UI Symbol/segoeUISymbol.ttf and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Segoe UI Symbol/segoeUISymbol.woff b/MyWebsite/MyWebsite/wwwroot/fonts/Segoe UI Symbol/segoeUISymbol.woff deleted file mode 100644 index 6c71db6..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/fonts/Segoe UI Symbol/segoeUISymbol.woff and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Segoe UI Symbol/segoeUISymbol.woff2 b/MyWebsite/MyWebsite/wwwroot/fonts/Segoe UI Symbol/segoeUISymbol.woff2 deleted file mode 100644 index 5d5b3e3..0000000 Binary files a/MyWebsite/MyWebsite/wwwroot/fonts/Segoe UI Symbol/segoeUISymbol.woff2 and /dev/null differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Selawik/selawk.eot b/MyWebsite/MyWebsite/wwwroot/fonts/Selawik/selawk.eot new file mode 100644 index 0000000..dea7f2d Binary files /dev/null and b/MyWebsite/MyWebsite/wwwroot/fonts/Selawik/selawk.eot differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Selawik/selawk.svg b/MyWebsite/MyWebsite/wwwroot/fonts/Selawik/selawk.svg new file mode 100644 index 0000000..7f8f057 --- /dev/null +++ b/MyWebsite/MyWebsite/wwwroot/fonts/Selawik/selawk.svg @@ -0,0 +1,383 @@ + + + + +1.0 +Selawik +Monotype Imaging Inc. + +Fonts.com WebFonts +http://www.fonts.com +Home of the Web fonts + + +http://www.fonts.com/info/legal + +© 2015 Microsoft Corporation (www.microsoft.com), with Reserved Font Name Selawik. Selawik is a trademark of Microsoft Corporation in the United States and/or other countries. +Selawik is a trademark of the Microsoft group of companies. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz AÁÀÂÄÅÃÆ CÇ DÐ EÉÈÊË I Í Ì Î Ï NÑ +OÓÒÔÖÕØŒ SŠ UÚÙÛÜ YÝŸ ZŽ Þ aáàâäåãæ cç dð eéèêë i ı í ì î ï nñ oóòôöõøœ sšß uúùûü yýÿ zž +þ 1234567890 ½ ¼ ¾ % ‰ $¢£¥ƒ€¤ † ‡ § ¶ # ^~µ +×± < = > ÷¬ !¡?¿ " & ' * ° . , : ; () [ \ ] {} / | +¦ _ ‚ „ … ‹› «» ‘ ’ “ ” • ­ - – — @ © ® ™ ªº ¹²³ ´ ` ˆ ˜ ¨ ¯ · ¸ + diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Selawik/selawk.ttf b/MyWebsite/MyWebsite/wwwroot/fonts/Selawik/selawk.ttf new file mode 100644 index 0000000..736bac3 Binary files /dev/null and b/MyWebsite/MyWebsite/wwwroot/fonts/Selawik/selawk.ttf differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Selawik/selawk.woff b/MyWebsite/MyWebsite/wwwroot/fonts/Selawik/selawk.woff new file mode 100644 index 0000000..d269e86 Binary files /dev/null and b/MyWebsite/MyWebsite/wwwroot/fonts/Selawik/selawk.woff differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/Selawik/selawk.woff2 b/MyWebsite/MyWebsite/wwwroot/fonts/Selawik/selawk.woff2 new file mode 100644 index 0000000..489a50e Binary files /dev/null and b/MyWebsite/MyWebsite/wwwroot/fonts/Selawik/selawk.woff2 differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/emcomic.ttf b/MyWebsite/MyWebsite/wwwroot/fonts/emcomic.ttf new file mode 100644 index 0000000..4ae10da Binary files /dev/null and b/MyWebsite/MyWebsite/wwwroot/fonts/emcomic.ttf differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/fabricmdl2.ttf b/MyWebsite/MyWebsite/wwwroot/fonts/fabricmdl2.ttf new file mode 100644 index 0000000..81286ac Binary files /dev/null and b/MyWebsite/MyWebsite/wwwroot/fonts/fabricmdl2.ttf differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/nyashasans.ttf b/MyWebsite/MyWebsite/wwwroot/fonts/nyashasans.ttf new file mode 100644 index 0000000..8394915 Binary files /dev/null and b/MyWebsite/MyWebsite/wwwroot/fonts/nyashasans.ttf differ diff --git a/MyWebsite/MyWebsite/wwwroot/fonts/segoeui.ttf b/MyWebsite/MyWebsite/wwwroot/fonts/segoeui.ttf new file mode 100644 index 0000000..b0e7889 Binary files /dev/null and b/MyWebsite/MyWebsite/wwwroot/fonts/segoeui.ttf differ