Answered by:
How to modify _Layout

Question
-
User-1790113996 posted
Good day to all,
kindly ask how to modify my current _Layout.cshtml
looks like this https://bootswatch.com/solar/
and the fonts like this again https://bootswatch.com/sketchy/
kindly refer my code below, thank you._Layout.cshtml
_Layout.cshtml <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="shortcut icon" type="image/x-icon" href="~/favicon.ico" /> <title> ON semiconductors Application</title> @Styles.Render("~/Content/css") <link href="~/Content/bootstrap-datetimepicker.css" rel="stylesheet" /> <link href="~/Content/bootstrap-theme.min.css" rel="stylesheet" /> <script src="~/Scripts/jquery-ui-1.11.4.min.js"></script> <style> div, nav { margin: 0; padding: 0; font-size: 9pt; } .inner { margin-left: 2%; margin-right: 2%; } .navbar-fixed-bottom { margin-left: 2%; margin-right: 2%; height: 4px; } </style> </head> <body class="w3-light-grey"> <nav class="navbar navbar-fixed-top w3-light-grey w3-text-blue" style=""> <div class="inner w3-light-blue navbar-inverse"> <div class="navbar-header w3-text-black"> <button type="button" class="navbar-toggle collapsed w3-text-black" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <h2 class=""> <strong> @Html.ActionLink("Requesting System", "Index", "Home", null, new { @class = "w3-text-deep-orange" })</strong> </h2> </div> <div id="navbar" class="collapse navbar-collapse" style="margin-left: 5%;"> <ul class="nav navbar-nav"> <li>@Html.ActionLink("Home", "Index", "Home")</li> <li>@Html.ActionLink("Main Window", "WorkingWindow", "Home")</li> <li> <a href="~/Catalog/Index">Catalog</a> </li> <li> <a href="#" class=" dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Help <span class="caret"></span></a> <ul class="dropdown-menu "> <li>@Html.ActionLink("How to Create Request", "HowToRequest", "Home")</li> <li>@Html.ActionLink("How to Approved Request", "HowToApprove", "Home")</li> <li>@Html.ActionLink("How to Release", "HowToRelease", "Home")</li> <li>@Html.ActionLink("Definiton Of Terms", "Definition" ,"Home")</li> <li>@Html.ActionLink("Contact Us", "ContactUs", "Home")</li> </ul> </li> <li> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Task <span class="caret"></span></a> <ul class="dropdown-menu w3-text-blue" style=""> <li> @Html.ActionLink("Budget", "Index", "Budget")</li> <li>@Html.ActionLink("Request", "Index", "Requesting")</li> <li>@Html.ActionLink("Approve", "Index", "Approving")</li> <li>@Html.ActionLink("Release", "Index", "Releasing")</li> <li>@Html.ActionLink("System Inventory", "Index", "Inventory")</li> </ul> </li> </ul> <div style="margin-right: 10%;"> @Html.Partial("_LoginPartial") </div> </div> <!--/.nav-collapse --> </div> </nav> <div class="body"> <div class="w3-col m12 "> <br /> </div> <div class="w3-col m12 "> <br /> </div> <div class="inner w3-text-light-grey"> <div class="w3-border w3-white"> <div class="w3-container"> <div class="w3-container"> @RenderBody() </div> </div> <div class="navbar navbar-inverse navbar-fixed-bottom" style=""> <div class="container-fluid"> <div class="navbar-text pull-right"> <b> © 2017 - OSPI Tarlac Applications</b> </div> </div> </div> </div> </div> </div> @Scripts.Render("~/bundles/modernizr") @Scripts.Render("~/scripts/jquery-1.10.2.js") @Scripts.Render("~/bundles/jquery") @Scripts.Render("~/bundles/bootstrap") @Scripts.Render("~/bundles/jqueryval") @RenderSection("scripts", false) </body> </html>
BundleConfig
using System.Web.Optimization; namespace RequestingSystem { public class BundleConfig { // For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862 public static void RegisterBundles(BundleCollection bundles) { bundles.Add(new ScriptBundle("~/bundles/jquery").Include( "~/Scripts/jquery-{version}.js")); bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include( "~/Scripts/jquery.validate*")); // Use the development version of Modernizr to develop with and learn from. Then, when you're // ready for production, use the build tool at http://modernizr.com to pick only the tests you need. bundles.Add(new ScriptBundle("~/bundles/modernizr").Include( "~/Scripts/modernizr-*")); bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include( "~/Scripts/bootstrap.js", "~/Scripts/respond.js")); bundles.Add(new StyleBundle("~/Content/css").Include( "~/Content/bootstrap.css", "~/Content/themes/W3CSS.css", "~/Content/site.css")); } } }
W3CSS.css
/* W3.CSS 1.9 by J.E.Refsnes. Do not remove this line. */ * { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box } /* Extract from normalize.css by Nicolas Gallagher and Jonathan Neal git.io/normalize */ html { -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100% } body { margin: 0 } article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block } audio, canvas, video { display: inline-block; vertical-align: baseline } audio:not([controls]) { display: none; height: 0 } [hidden], template { display: none } a { -webkit-tap-highlight-color: transparent; background-color: transparent } a:active, a:hover { outline: 0 } abbr[title] { border-bottom: 1px dotted } b, strong { font-weight: bold } dfn { font-style: italic } mark { background: #ff0; color: #000 } small { font-size: 80% } sub, sup { font-size: 75%; line-height: 0; ; vertical-align: baseline } sup { top: -0.5em } sub { bottom: -0.25em } img { border: 0 } svg:not(:root) { overflow: hidden } figure { margin: 1em 40px } hr { -moz-box-sizing: content-box; box-sizing: content-box } code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em } button, input, optgroup, select, textarea { color: inherit; font: inherit; margin: 0 } button { overflow: visible } button, select { text-transform: none } button, html input[type=button], input[type=reset], input[type=submit] { -webkit-appearance: button; cursor: pointer } button[disabled], html input[disabled] { cursor: default } button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0 } input[type=checkbox], input[type=radio] { padding: 0 } input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button { height: auto } input[type=search] { -moz-box-sizing: content-box; -webkit-appearance: textfield; -webkit-box-sizing: content-box; box-sizing: content-box; } input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration { -webkit-appearance: none } fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em } legend { border: 0; padding: 0 } pre, textarea { overflow: auto } optgroup { font-weight: bold } /* End extract from normalize.css */ html, body { font-family: Verdana, sans-serif; font-size: 15px; line-height: 1.5 } h1, h2, h3, h4, h5, h6 { font-family: "Segoe UI", Arial, sans-serif; font-weight: 400; margin: 10px 0 } h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit } h1 { font-size: 36px } h2 { font-size: 30px } h3 { font-size: 24px } h4 { font-size: 20px } h5 { font-size: 18px } h6 { font-size: 16px } hr { border: 0; border-top: 1px solid #eee; height: 0; margin: 20px 0 } img { margin-bottom: -5px } a { color: inherit } table { border-collapse: collapse; border-spacing: 0; display: table; width: 100%; } table, th, td { border: none } .w3-table-all { border: 1px solid #ccc } .w3-bordered tr, .w3-table-all tr { border-bottom: 1px solid #ddd } .w3-striped tbody tr:nth-child(even) { background-color: #f1f1f1 } .w3-table-all tr:nth-child(odd) { background-color: #fff } .w3-table-all tr:nth-child(even) { background-color: #f1f1f1 } .w3-hoverable tbody tr { transition: background-color .25s ease } .w3-hoverable tbody tr:hover { background-color: #ccc } .w3-centered tr th, .w3-centered tr td { text-align: center } .w3-table td, .w3-table th, .w3-table-all td, .w3-table-all th { display: table-cell; padding: 6px 8px; text-align: left; vertical-align: top } .w3-table th:first-child, .w3-table td:first-child, .w3-table-all th:first-child, .w3-table-all td:first-child { padding-left: 16px } .w3-btn { background-color: #000; border: none; color: #fff; cursor: pointer; display: inline-block; outline: 0; overflow: hidden; padding: 6px 16px; text-align: center; text-decoration: none !important; transition: .2s ease-out; vertical-align: middle; white-space: nowrap } .w3-btn.w3-disabled, .w3-btn-floating.w3-disabled, .w3-btn:disabled, .w3-btn-floating:disabled, .w3-btn-floating-large.w3-disabled, .w3-btn-floating-large:disabled { cursor: not-allowed; opacity: 0.3 } .w3-btn.w3-disabled *, .w3-btn-floating.w3-disabled *, .w3-btn:disabled *, .w3-btn-floating:disabled * { pointer-events: none } .w3-btn.w3-disabled:hover, .w3-btn:disabled:hover, .w3-btn-floating.w3-disabled:hover, .w3-btn-floating:disabled:hover, .w3-btn-floating-large.w3-disabled:hover, .w3-btn-floating-large:disabled:hover { box-shadow: none } .w3-btn:hover, .w3-btn-floating:hover, .w3-btn-floating-large:hover { box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) } .w3-btn-floating, .w3-btn-floating-large { background-color: #000; border-radius: 50%; color: #fff; cursor: pointer; display: inline-block; font-size: 24px; overflow: hidden; padding: 0; ; text-align: center; transition: .3s; z-index: 1; } .w3-btn-floating { height: 40px; line-height: 40px; width: 40px; } .w3-btn-floating-large { height: 56px; line-height: 56px; width: 56px; } .w3-btn-group .w3-btn { float: left } .w3-btn.w3-ripple { } .w3-ripple:after { background: #90EE90; content: ""; display: block; margin-left: -20px !important; margin-top: -120%; opacity: 0; padding-left: 350%; padding-top: 300%; ; transition: all 0.8s } .w3-ripple:active:after { margin: 0; opacity: 1; padding: 0; transition: 0s } .w3-badge, .w3-tag, .w3-sign { background-color: #000; color: #fff; display: inline-block; font-weight: bold; padding-left: 8px; padding-right: 8px; text-align: center } .w3-badge { border-radius: 50% } .w3-blockquote { border-left: 5px solid #ccc; font-style: italic; margin: 0; padding: 0.01em 16px; } ul.w3-ul { list-style-type: none; margin: 0; padding: 0; } ul.w3-ul li { border-bottom: 1px solid #ddd; padding: 6px 2px 6px 16px; } ul.w3-ul li:last-child { border-bottom: none } .w3-image, .w3-tooltip { } img.w3-image, .w3-image img { height: auto; max-width: 100%; } .w3-image .w3-title { bottom: 8px; color: #fff; font-size: 20px; left: 16px; ; } .w3-fluid { height: auto; max-width: 100%; } .w3-tooltip .w3-text { display: none } .w3-tooltip:hover .w3-text { display: inline-block } .w3-topnav { padding: 8px 8px } .w3-topnav a, .w3-sidenav a, .w3-dropnav a, .w3-dropdown-content a { text-decoration: none !important } .w3-topnav a { -webkit-transition: all 0.3s ease; border-bottom: 3px solid transparent; padding: 0 8px; transition: all 0.3s ease } .w3-topnav a:hover { border-bottom: 3px solid #fff } .w3-topnav .w3-dropdown-hover a { border-bottom: 0 } .w3-opennav, .w3-closenav { color: inherit } .w3-opennav:hover, .w3-closenav:hover { cursor: pointer; opacity: 0.8 } .w3-sidenav { background-color: #fff; height: 100%; overflow: auto; !important; width: 200px; z-index: 1; } .w3-sidenav a { padding: 4px 2px 4px 16px } .w3-sidenav a:hover, .w3-sidenav a:focus { background-color: #ccc } .w3-sidenav a, .w3-dropnav a { display: block; transition: .3s } .w3-dropnav { background-color: #fff } .w3-dropnav a:hover { text-decoration: underline !important } .w3-tab div { display: none } .w3-tab div:target { display: block } .w3-modal { background-color: rgb(0, 0, 0); background-color: rgba(0, 0, 0, 0.4); display: none; height: 100%; left: 0; overflow: auto; padding-top: 100px; ; top: 0; width: 100%; z-index: 1; } .w3-modal:target { display: block } .w3-modal-content { background-color: #fff; margin: auto; outline: 0; padding: 0; ; width: 600px } .w3-closebtn { color: inherit; float: right; font-size: 24px; font-weight: bold; text-decoration: none; } .w3-closebtn:hover, .w3-closebtn:focus { color: #000; cursor: pointer; text-decoration: none; } .w3-pagination { display: inline-block; margin: 0; padding: 0; } .w3-pagination li { display: inline } .w3-pagination li a { color: #000; float: left; padding: 8px 16px; text-decoration: none; transition: background-color .3s } .w3-pagination li a:hover, .w3-pagination li a:focus { background-color: #ccc } .w3-input-group, .w3-group { margin-bottom: 24px; margin-top: 24px; } .w3-input { border: none; border-bottom: 1px solid #808080; display: block; padding: 8px; width: 100% } .w3-label { color: #009688 } .w3-input:not(:valid) ~ .w3-validate { color: #f44336 } .w3-select { border: 1px solid transparent; border-bottom: 1px solid #009688; color: #000; padding: 4px 0; width: 100%; } .w3-select select:focus { border: 1px solid #009688; color: #000; } .w3-select option[disabled] { color: #009688 } .w3-dropdown-click, .w3-dropdown-hover { cursor: pointer; display: inline-block; ; } .w3-dropdown-hover:hover .w3-dropdown-content { display: block; z-index: 1 } .w3-dropdown-content { background-color: #fff; display: none; margin: 0; min-width: 160px; padding: 0; ; } .w3-dropdown-content a { display: block; padding: 6px 16px; } .w3-dropdown-content a:hover { background-color: #ccc } input[type=checkbox].w3-check, input[type=radio].w3-radio { height: 24px; ; top: 6px; width: 24px; } input[type=checkbox].w3-check:checked + .w3-validate, input[type=radio].w3-radio:checked + .w3-validate { color: #009688 } input[type=checkbox].w3-check:disabled + .w3-validate, input[type=radio].w3-radio:disabled + .w3-validate { color: #aaa } .w3-responsive { overflow-x: auto } .w3-container:after, .w3-row:after, .w3-row-padding:after, .w3-topnav:after, .w3-clear:after, .w3-btn-group:before, .w3-btn-group:after { clear: both; content: ""; display: table; } .w3-col, .w3-half, .w3-third, .w3-twothird, .w3-quarter { float: left; width: 100% } .w3-col.s1 { width: 8.33333% } .w3-col.s2 { width: 16.66666% } .w3-col.s3 { width: 24.99999% } .w3-col.s4 { width: 33.33333% } .w3-col.s5 { width: 41.66666% } .w3-col.s6 { width: 49.99999% } .w3-col.s7 { width: 58.33333% } .w3-col.s8 { width: 66.66666% } .w3-col.s9 { width: 74.99999% } .w3-col.s10 { width: 83.33333% } .w3-col.s11 { width: 91.66666% } .w3-col.s12, .w3-half, .w3-third, .w3-twothird, .w3-quarter { width: 99.99999% } @media only screen and (min-width: 601px) { .w3-col.m1 { width: 8.33333% } .w3-col.m2 { width: 16.66666% } .w3-col.m3, .w3-quarter { width: 24.99999% } .w3-col.m4, .w3-third { width: 33.33333% } .w3-col.m5 { width: 41.66666% } .w3-col.m6, .w3-half { width: 49.99999% } .w3-col.m7 { width: 58.33333% } .w3-col.m8, .w3-twothird { width: 66.66666% } .w3-col.m9 { width: 74.99999% } .w3-col.m10 { width: 83.33333% } .w3-col.m11 { width: 91.66666% } .w3-col.m12 { width: 99.99999% } } @media only screen and (min-width: 993px) { .w3-col.l1 { width: 8.33333% } .w3-col.l2 { width: 16.66666% } .w3-col.l3, .w3-quarter { width: 24.99999% } .w3-col.l4, .w3-third { width: 33.33333% } .w3-col.l5 { width: 41.66666% } .w3-col.l6, .w3-half { width: 49.99999% } .w3-col.l7 { width: 58.33333% } .w3-col.l8, .w3-twothird { width: 66.66666% } .w3-col.l9 { width: 74.99999% } .w3-col.l10 { width: 83.33333% } .w3-col.l11 { width: 91.66666% } .w3-col.l12 { width: 99.99999% } } .w3-content { margin: auto; max-width: 980px; } .w3-rest { overflow: hidden } @media (max-width: 601px) { .w3-modal-content { margin: 50px 10px 10px 10px; width: auto !important } } @media (max-width: 768px) { .w3-modal-content { width: 500px } } @media (min-width: 992px) { .w3-modal-content { width: 900px } } @media screen and (max-width: 601px) { .w3-topnav a { display: block } } @media screen and (max-width: 601px) { .w3-topnav .w3-dropdown-hover .w3-dropdown-content { } } @media screen and (max-width: 601px) { .w3-topnav { text-align: center } } @media (max-width: 601px) { .w3-hide-small { display: none !important } } @media (max-width: 991px) and (min-width: 601px) { .w3-hide-medium { display: none !important } } @media (min-width: 992px) { .w3-hide-large { display: none !important } } .w3-top, .w3-bottom { ; width: 100%; z-index: 1 } .w3-top { top: 0 } .w3-bottom { bottom: 0 } .w3-left { float: left !important } .w3-right { float: right !important } .w3-hide { display: none !important } .w3-show { display: block !important } .w3-tiny { font-size: 10px !important } .w3-small { font-size: 12px !important } .w3-medium { font-size: 15px !important } .w3-large { font-size: 18px !important } .w3-xlarge { font-size: 24px !important } .w3-xxlarge { font-size: 36px !important } .w3-xxxlarge { font-size: 48px !important } .w3-jumbo { font-size: 64px !important } .w3-slim { font-family: "Segoe UI", Arial, sans-serif !important } .w3-wide { font-family: "Segoe UI", Arial, sans-serif !important; letter-spacing: 4px } .w3-left-align { text-align: left !important } .w3-right-align { text-align: right !important } .w3-justify { text-align: justify !important } .w3-center { text-align: center !important } .w3-circle { border-radius: 50% !important } .w3-round-small { border-radius: 2px !important } .w3-round, .w3-round-medium { border-radius: 4px !important } .w3-round-large { border-radius: 8px !important } .w3-round-xlarge { border-radius: 16px !important } .w3-round-xxlarge { border-radius: 32px !important } .w3-round-jumbo { border-radius: 64px !important } .w3-border-0 { border: 0 !important } .w3-border { border: 1px solid #ccc !important } .w3-border-top { border-top: 1px solid #ccc !important } .w3-border-bottom { border-bottom: 1px solid #ccc !important } .w3-border-left { border-left: 1px solid #ccc !important } .w3-border-right { border-right: 1px solid #ccc !important } .w3-margin-0 { margin: 0 !important } .w3-margin-2 { margin: 2px !important } .w3-margin-4 { margin: 4px !important } .w3-margin-8 { margin: 8px !important } .w3-margin-12 { margin: 12px !important } .w3-margin-16 { margin: 16px !important } .w3-margin-24 { margin: 24px !important } .w3-margin-32 { margin: 32px !important } .w3-margin-64 { margin: 64px !important } .w3-margin { margin: 16px !important } .w3-margin-top { margin-top: 16px !important } .w3-margin-bottom { margin-bottom: 16px !important } .w3-margin-left { margin-left: 16px !important } .w3-margin-right { margin-right: 16px !important } .w3-padding-tiny { padding: 2px 4px !important } .w3-padding-small { padding: 4px 8px !important } .w3-padding-medium, .w3-padding, .w3-form { padding: 8px 16px !important } .w3-padding-large { padding: 12px 24px !important } .w3-padding-xlarge { padding: 16px 32px !important } .w3-padding-xxlarge { padding: 24px 48px !important } .w3-padding-jumbo { padding: 32px 64px !important } .w3-padding-0 { padding: 0 !important } .w3-padding-4 { padding-bottom: 4px !important; padding-top: 4px !important; } .w3-padding-8 { padding-bottom: 8px !important; padding-top: 8px !important; } .w3-padding-16 { padding-bottom: 16px !important; padding-top: 16px !important; } .w3-padding-24 { padding-bottom: 24px !important; padding-top: 24px !important; } .w3-padding-32 { padding-bottom: 32px !important; padding-top: 32px !important; } .w3-padding-48 { padding-bottom: 48px !important; padding-top: 48px !important; } .w3-padding-64 { padding-bottom: 64px !important; padding-top: 64px !important; } .w3-padding-top { padding-top: 8px !important } .w3-padding-bottom { padding-bottom: 8px !important } .w3-padding-left { padding-left: 16px !important } .w3-padding-right { padding-right: 16px !important } .w3-row-padding, .w3-row-padding > .w3-half, .w3-row-padding > .w3-third, .w3-row-padding > .w3-twothird, .w3-row-padding > .w3-quarter, .w3-row-padding > .w3-col { padding: 0 8px } .w3-spin { -webkit-animation: w3-spin 2s infinite linear; animation: w3-spin 2s infinite linear; } @-webkit-keyframes w3-spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(359deg); transform: rotate(359deg) } } @keyframes w3-spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(359deg); transform: rotate(359deg) } } .w3-container { padding: 0.01em 16px } .w3-example { background-color: #f1f1f1; padding: 0.01em 16px } .w3-section, .w3-paragraph { margin-bottom: 16px; margin-top: 16px; } .w3-code { background-color: #fff; border-left: 4px solid #009688; font-family: Consolas, "courier new"; font-size: 16px; line-height: 1.4; padding: 8px 12px; width: auto; word-wrap: break-word } .w3-example, .w3-code, .w3-reference { margin: 20px 0 } .w3-card { border: 1px solid #ccc } .w3-card-2, .w3-example { box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important } .w3-card-4 { box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important } .w3-card-8 { box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important } .w3-card-12 { box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19) !important } .w3-card-16 { box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21) !important } .w3-card-24 { box-shadow: 0 24px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22) !important } .w3-animate-opacity { -webkit-animation-duration: 4s; -webkit-animation-name: opac; animation-duration: 4s; animation-name: opac; } @-webkit-keyframes opac { from { opacity: 0 } to { opacity: 1 } } @keyframes opac { from { opacity: 0 } to { opacity: 1 } } /* TOP */ .w3-animate-top { -webkit-animation-duration: 0.4s; -webkit-animation-name: animatetop; animation-duration: 0.4s; animation-name: animatetop; ; } @-webkit-keyframes animatetop { from { opacity: 0; top: -300px; } to { opacity: 1; top: 0; } } @keyframes animatetop { from { opacity: 0; top: -300px; } to { opacity: 1; top: 0; } } /* LEFT */ .w3-animate-left { -webkit-animation-duration: 0.4s; -webkit-animation-name: animateleft; animation-duration: 0.4s; animation-name: animateleft; ; } @-webkit-keyframes animateleft { from { left: -300px; opacity: 0 } to { left: 0; opacity: 1 } } @keyframes animateleft { from { left: -300px; opacity: 0 } to { left: 0; opacity: 1 } } /* RIGHT */ .w3-animate-right { -webkit-animation-duration: 0.4s; -webkit-animation-name: animateright; animation-duration: 0.4s; animation-name: animateright; ; } @-webkit-keyframes animateright { from { opacity: 0; right: -300px; } to { opacity: 1; right: 0; } } @keyframes animateright { from { opacity: 0; right: -300px; } to { opacity: 1; right: 0; } } /* BOTTOM */ .w3-animate-bottom { -webkit-animation-duration: 0.4s; -webkit-animation-name: animatebottom; animation-duration: 0.4s; animation-name: animatebottom; ; } @-webkit-keyframes animatebottom { from { bottom: -300px; opacity: 0 } to { bottom: 0px; opacity: 1 } } @keyframes animatebottom { from { bottom: -300px; opacity: 0 } to { bottom: 0; opacity: 1 } } /* ZOOM */ .w3-animate-zoom { -webkit-animation-duration: 0.6s; -webkit-animation-name: zoom; animation-duration: 0.6s; animation-name: animatezoom; } @-webkit-keyframes animatezoom { from { transform: scale(0) } to { transform: scale(1) } } @keyframes animatezoom { from { transform: scale(0) } to { transform: scale(1) } } /* COLORS */ .w3-text-amber { color: #ffc107 !important } .w3-amber { background-color: #ffc107 !important; color: #000 !important; } .w3-text-aqua { color: #00ffff !important } .w3-aqua { background-color: #00ffff !important; color: #000 !important; } .w3-text-blue { color: #2196F3 !important } .w3-blue { background-color: #2196F3 !important; color: #fff !important; } .w3-text-light-blue { color: #87CEEB !important } .w3-light-blue { background-color: #87CEEB !important; color: #000 !important; } .w3-text-brown { color: #795548 !important } .w3-brown { background-color: #795548 !important; color: #fff !important; } .w3-text-cyan { color: #00bcd4 !important } .w3-cyan { background-color: #00bcd4 !important; color: #000 !important; } .w3-text-blue-grey { color: #607d8b !important } .w3-blue-grey { background-color: #607d8b !important; color: #fff !important; } .w3-text-green { color: #4CAF50 !important } .w3-green { background-color: #4CAF50 !important; color: #fff !important; } .w3-text-light-green { color: #8bc34a !important } .w3-light-green { background-color: #8bc34a !important; color: #000 !important; } .w3-text-indigo { color: #3f51b5 !important } .w3-indigo { background-color: #3f51b5 !important; color: #fff !important; } .w3-text-khaki { color: #b4aa50 !important } .w3-khaki { background-color: #f0e68c !important; color: #000 !important; } .w3-text-lime { color: #cddc39 !important } .w3-lime { background-color: #cddc39 !important; color: #000 !important; } .w3-text-orange { color: #ff9800 !important } .w3-orange { background-color: #ff9800 !important; color: #000 !important; } .w3-text-deep-orange { color: #ff5722 !important } .w3-deep-orange { background-color: #ff5722 !important; color: #fff !important; } .w3-text-pink { color: #e91e63 !important } .w3-pink { background-color: #e91e63 !important; color: #fff !important; } .w3-text-purple { color: #9c27b0 !important } .w3-purple { background-color: #9c27b0 !important; color: #fff !important; } .w3-text-deep-purple { color: #673ab7 !important } .w3-deep-purple { background-color: #673ab7 !important; color: #fff !important; } .w3-text-red { color: #f44336 !important } .w3-red { background-color: #f44336 !important; color: #fff !important; } .w3-text-sand { color: #fdf5e6 !important } .w3-sand { background-color: #fdf5e6 !important; color: #000 !important; } .w3-text-teal { color: #009688 !important } .w3-teal { background-color: #009688 !important; color: #fff !important; } .w3-text-yellow { color: #d2be0e !important } .w3-yellow { background-color: #ffeb3b !important; color: #000 !important; } .w3-text-white { color: #fff !important } .w3-white { background-color: #fff !important; color: #000 !important; } .w3-text-black { color: #000 !important } .w3-black { background-color: #000 !important; color: #fff !important; } .w3-text-grey { color: #757575 !important } .w3-grey { background-color: #9e9e9e !important; color: #000 !important; } .w3-text-light-grey { color: #f1f1f1 !important } .w3-light-grey { background-color: #f1f1f1 !important; color: #000; } .w3-text-dark-grey { color: #3a3a3a !important } .w3-dark-grey { background-color: #616161 !important; color: white; } .w3-opacity { opacity: 0.60 } .w3-text-shadow { text-shadow: 1px 1px 0 #444 } .w3-text-shadow-white { text-shadow: 1px 1px 0 #ddd }
thank you again
Tuesday, February 13, 2018 9:17 AM
Answers
-
User283571144 posted
Hi Cloudfiers,
Cloudfiers
Good day to all,
kindly ask how to modify my current _Layout.cshtml
looks like this https://bootswatch.com/solar/
and the fonts like this again https://bootswatch.com/sketchy/
kindly refer my code below, thank you.According to your description, I suggest you could try to change the CSS style by yourself.
Since if we change the css style, it may not match your requirement.
I have already combine the solar and sketchy as your requirement.
You change the html codes with the right class according to your requirement.
Besides, I suggest you could use browser(F12 ) develop tool which could change the html codes in the browser.
After changing the css style as you want, you could copy all the html codes into the page.
More details about the combined boostrap css, you could download from below url:
https://1drv.ms/u/s!At8k4dll_NA7g0NyHbpwkBovg7nP
Here is a example about this css.
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <link href="Scripts/bootstrap.css" rel="stylesheet" /> <link href="Scripts/_variables.scss" rel="stylesheet" /> <script src="Scripts/_bootswatch.scss"></script> <script src="Scripts/jquery-1.10.2.min.js"></script> </head> <body> <h1>Test</h1> <div> <a href="#" class="btn btn-primary">Primary</a> <a href="#" class="btn btn-secondary">Secondary</a> <a href="#" class="btn btn-success">Success</a> <a href="#" class="btn btn-info">Info</a> <a href="#" class="btn btn-warning">Warning</a> <a href="#" class="btn btn-danger">Danger</a> </div> </body> </html>
Result:
Best Regards,
Brando
- Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
Wednesday, February 14, 2018 5:30 AM