From acb7daf0cd588c8c2b35b590d02ddd18a67a1d8c Mon Sep 17 00:00:00 2001 From: cuqmbr Date: Thu, 31 Mar 2022 17:55:20 +0300 Subject: [PATCH] feat: add style for topnav, cleanup _Layout.cshtml --- TicketOffice/Pages/Shared/_Layout.cshtml | 14 ++++++--- TicketOffice/wwwroot/css/Layout.css | 40 ++++++++++++++++++++++++ 2 files changed, 49 insertions(+), 5 deletions(-) create mode 100644 TicketOffice/wwwroot/css/Layout.css diff --git a/TicketOffice/Pages/Shared/_Layout.cshtml b/TicketOffice/Pages/Shared/_Layout.cshtml index b7ebdd1..5fdfe2a 100644 --- a/TicketOffice/Pages/Shared/_Layout.cshtml +++ b/TicketOffice/Pages/Shared/_Layout.cshtml @@ -3,16 +3,20 @@ - @ViewData["Title"] - Ticket Office + + @ViewData["Title"] - auto.bus + - + + + -
- @RenderBody() -
+ +@RenderBody() + diff --git a/TicketOffice/wwwroot/css/Layout.css b/TicketOffice/wwwroot/css/Layout.css new file mode 100644 index 0000000..2ca6b3b --- /dev/null +++ b/TicketOffice/wwwroot/css/Layout.css @@ -0,0 +1,40 @@ +html { + font-size: 16px; + min-height: 100%; + font-family: 'Roboto', sans-serif; + background-color: #eaeef1; +} + +body { + margin: 0; +} + +/*-----Navbar-----*/ + +.topnav { + width: 100%; + background-color: white; + border-bottom: .2rem solid #78b5da; + overflow: auto; +} + +.topnav a { + float: left; + padding: 12px; + text-decoration: none; + color: #1d4965; + font-size: 1.25rem; + font-weight: 700; +} + +.topnav a:hover { + background-color: rgba(121, 182, 219, 0.5); +} + +.topnav a.active { + background-color: #79b6db; +} + +.topnav-right { + float: right; +} \ No newline at end of file