This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "background" : "#282828", | |
| "black" : "#282828", | |
| "blue" : "#458588", | |
| "brightBlack" : "#928374", | |
| "brightBlue" : "#83A598", | |
| "brightCyan" : "#8EC07C", | |
| "brightGreen" : "#B8BB26", | |
| "brightPurple" : "#D3869B", | |
| "brightRed" : "#FB4934", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .headroom { | |
| position: fixed; | |
| top: 0; | |
| -webkit-transition: top 0.15s; | |
| transition: top 0.15s; | |
| } | |
| .headroom-hidden { | |
| top: -60px; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Web.Mvc.Html; | |
| public static class HtmlHelpers | |
| { | |
| public static MvcHtmlString MenuLink(this HtmlHelper htmlHelper, string linkText, string actionName, string controllerName) | |
| { | |
| var currentAction = htmlHelper.ViewContext.RouteData.GetRequiredString("action"); | |
| var currentController = htmlHelper.ViewContext.RouteData.GetRequiredString("controller"); | |
| var builder = new TagBuilder("li") |