1
0

Updated logo for FoxTube

Improved blog CSS
This commit is contained in:
Michael Gordeev
2020-06-15 10:01:31 +03:00
parent 6c70e9a618
commit 20bfa2aa95
5 changed files with 105 additions and 3356 deletions
@@ -1,90 +1,91 @@
@model ViewModelBase @model ViewModelBase
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>@ViewData["Title"] - FoxTube - XFox111.NET</title> <title>@ViewData["Title"] - FoxTube - XFox111.NET</title>
<base href="~/assets/FoxTube/" /> <base href="~/assets/FoxTube/" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" /> <link rel="shortcut icon" type="image/png" href="favicon.png" />
<link rel="apple-touch-icon" type="image/png" href="apple-touch-favicon.png" />
<link rel="stylesheet" type="text/css" href="~/css/Fonts.css" />
<link rel="stylesheet" type="text/css" href="~/css/Socicon.css" /> <link rel="stylesheet" type="text/css" href="~/css/Fonts.css" />
<link rel="stylesheet" type="text/css" href="FoxTube.css" /> <link rel="stylesheet" type="text/css" href="~/css/Socicon.css" />
<link rel="stylesheet" type="text/css" href="FoxTube.css" />
<script type="text/javascript">
function ToggleMenu() <script type="text/javascript">
{ function ToggleMenu()
var menu = document.querySelector("menu"); {
var menu = document.querySelector("menu");
if (menu.style.display == "none")
menu.style.display = "initial"; if (menu.style.display == "none")
else menu.style.display = "initial";
menu.style.display = "none"; else
} menu.style.display = "none";
</script> }
</script>
@RenderSection("Imports", false)
@RenderSection("Imports", false)
@if (IsSectionDefined("OpenGraph"))
RenderSection("OpenGraph"); @if (IsSectionDefined("OpenGraph"))
else RenderSection("OpenGraph");
{ else
<meta name="author" content="Michael 'XFox' Gordeev"> {
<meta name="description" content="YouTube client for Windows 10 family devices. It's fast and convenient. It also supports live streams and 8K videos!"> <meta name="author" content="Michael 'XFox' Gordeev">
<meta name="description" content="YouTube client for Windows 10 family devices. It's fast and convenient. It also supports live streams and 8K videos!">
<meta property="og:image" content="/assets/FoxTube/Logo.svg">
<meta property="og:site_name" content="FoxTube - New YouTube client for Windows 10" /> <meta property="og:image" content="/assets/FoxTube/Logo.svg">
<meta property="og:video" content="//www.youtube.com/embed/Mio9FbxmbhM"> <meta property="og:site_name" content="FoxTube - New YouTube client for Windows 10" />
<meta property="og:video" content="https://www.youtube.com/embed/Mio9FbxmbhM"> <meta property="og:video" content="//www.youtube.com/embed/Mio9FbxmbhM">
<meta property="og:video" content="https://www.youtube.com/v/Mio9FbxmbhM"> <meta property="og:video" content="https://www.youtube.com/embed/Mio9FbxmbhM">
<meta property="ya:ovs:allow_embed" content="true" /> <meta property="og:video" content="https://www.youtube.com/v/Mio9FbxmbhM">
<meta property="og:type" content="article"> <meta property="ya:ovs:allow_embed" content="true" />
<meta property="og:locale" content="en_US"> <meta property="og:type" content="article">
<meta property="og:description" content="YouTube client for Windows 10 family devices. It's fast and convenient. It also supports live streams and 8K videos!"> <meta property="og:locale" content="en_US">
<meta property="og:title" content="Meet FoxTube! - New YouTube client for Windows 10"> <meta property="og:description" content="YouTube client for Windows 10 family devices. It's fast and convenient. It also supports live streams and 8K videos!">
} <meta property="og:title" content="Meet FoxTube! - New YouTube client for Windows 10">
}
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta charset="utf-8" />
</head> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<body> </head>
<nav> <body>
<img class="logo" src="Logo.svg" /> <nav>
<a asp-action="Index"> <img class="logo" src="Logo.svg" />
<b>FoxTube</b><br /> <a asp-action="Index">
<span>YouTube client for Windows 10</span> <b>FoxTube</b><br />
</a> <span>YouTube client for Windows 10</span>
</a>
<menu type="toolbar" style="display:none">
<partial name="~/Views/Shared/TopBarMenu.cshtml" /> <menu type="toolbar" style="display:none">
</menu> <partial name="~/Views/Shared/TopBarMenu.cshtml" />
</menu>
<p>
<a asp-controller="Home" asp-action="Index" asp-area="">XFox111.NET</a><br /> <p>
<a asp-controller="Home" asp-action="SwitchLanguage" lang="ru">РУС &#xE12B;</a> <a asp-controller="Home" asp-action="Index" asp-area="">XFox111.NET</a><br />
<a id="menu-toggle" onclick="ToggleMenu();">&#xE700;</a> <a asp-controller="Home" asp-action="SwitchLanguage" lang="ru">РУС &#xE12B;</a>
</p> <a id="menu-toggle" onclick="ToggleMenu();">&#xE700;</a>
</nav> </p>
</nav>
<main onclick="document.querySelector('menu').style.display = 'none'">
@RenderBody() <main onclick="document.querySelector('menu').style.display = 'none'">
</main> @RenderBody()
</main>
@{
if (IsSectionDefined("Footer")) @{
RenderSection("Footer"); if (IsSectionDefined("Footer"))
else RenderSection("Footer");
{ else
<footer> {
<span class="comment">// Copyright &copy;@(DateTime.Today.Year) Michael "XFox" Gordeev</span> <footer>
<span class="comment">// Copyright &copy;@(DateTime.Today.Year) Michael "XFox" Gordeev</span>
<div>
@foreach (LinkModel link in Model.Links.Where(i => i.DisplayInFooter).OrderBy(i => i.Order)) <div>
{ @foreach (LinkModel link in Model.Links.Where(i => i.DisplayInFooter).OrderBy(i => i.Order))
<a class="socicon-@(link.Name)" href="@(link.Url)" target="_blank" title="@(link.Title)"></a> {
} <a class="socicon-@(link.Name)" href="@(link.Url)" target="_blank" title="@(link.Title)"></a>
</div> }
</footer> </div>
} </footer>
} }
</body> }
</body>
</html> </html>
File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 241 KiB

After

Width:  |  Height:  |  Size: 116 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 644 B

+14
View File
@@ -164,6 +164,20 @@ main > form
margin-bottom: 25px; margin-bottom: 25px;
} }
.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
{
margin-right: 25px;
margin-left: 25px;
}
.share-btns .share-btns
{ {
display: inline-grid; display: inline-grid;