This is an automated email from the ASF dual-hosted git repository. rclabo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/lucenenet.git
commit 1ffe4f95a11c1abe9308be6dad61adcdfa817237 Author: Ron Clabo <[email protected]> AuthorDate: Mon Mar 21 17:33:33 2022 -0400 website: body font larger. Hyperlinks now brighter and provide better hover feedback. Body Hyperlinks now not same styles as main nav. --- websites/site/lucenetemplate/styles/main.css | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/websites/site/lucenetemplate/styles/main.css b/websites/site/lucenetemplate/styles/main.css index 64005bd..9c2505a 100644 --- a/websites/site/lucenetemplate/styles/main.css +++ b/websites/site/lucenetemplate/styles/main.css @@ -39,15 +39,21 @@ .btn-primary:hover { background-color: #1764aa; } -button, -a { + +article.content {font-size: 15px} + +a, a:hover, a:focus { + color: #0098ff; +} +a:hover { + text-decoration: underline; +} + +button { color: #1764aa; - /* #0095eb */ } button:hover, -button:focus, -a:hover, -a:focus { +button:focus { color: #143653; text-decoration: none; } @@ -74,6 +80,14 @@ header ul.navbar-nav { float: right; font-weight: 600; } + +.navbar-nav>li>a { + color:#177cc8; +} +.navbar-nav>li>a:hover, .navbar-nav>li>a:focus { + color:#143653; +} + @media screen and (min-width: 768px) { header ul.navbar-nav { padding-right: 100px;
