mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Making the links stand out more
This commit is contained in:
parent
f5157566ef
commit
946ad9c2c3
2 changed files with 16 additions and 11 deletions
5
docs/static/css/bootstrap-theme.css
vendored
5
docs/static/css/bootstrap-theme.css
vendored
|
@ -222,12 +222,12 @@ textarea {
|
|||
background-image: none;
|
||||
}
|
||||
a {
|
||||
color: #007aff;
|
||||
color: #ff4088;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover,
|
||||
a:focus {
|
||||
color: #0055b3;
|
||||
color: #ff4088;
|
||||
text-decoration: underline;
|
||||
}
|
||||
a:focus {
|
||||
|
@ -842,6 +842,7 @@ input[type="number"]::-webkit-inner-spin-button {
|
|||
.hidden-xs {
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
.hidden-xs {
|
||||
display: none !important;
|
||||
|
|
22
docs/static/css/style.css
vendored
22
docs/static/css/style.css
vendored
|
@ -124,14 +124,18 @@ a, a:hover, a:focus {
|
|||
outline: none;
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
.panel-body a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
input:focus, textarea:focus { outline: none; }
|
||||
*:focus {outline: none;}
|
||||
::selection {
|
||||
background: #007AFF;
|
||||
background: #ff4088;
|
||||
color: #fff;
|
||||
}
|
||||
::-moz-selection {
|
||||
background: #007AFF;
|
||||
background: #ff4088;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
|
@ -195,7 +199,7 @@ ul.sidebar-menu li ul.sub li a {
|
|||
}
|
||||
|
||||
ul.sidebar-menu li ul.sub li a:hover, ul.sidebar-menu li ul.sub li.active a {
|
||||
color: #007AFF;
|
||||
color: #ff4088;
|
||||
-webkit-transition: all 0.3s ease;
|
||||
-moz-transition: all 0.3s ease;
|
||||
-o-transition: all 0.3s ease;
|
||||
|
@ -238,7 +242,7 @@ ul.sidebar-menu li a{
|
|||
|
||||
ul.sidebar-menu li.active a, ul.sidebar-menu li a:hover, ul.sidebar-menu li a:focus {
|
||||
background: #eeeeee;
|
||||
color: #007AFF;
|
||||
color: #ff4088;
|
||||
display: block;
|
||||
/*border-radius: 4px;
|
||||
-webkit-border-radius: 4px;*/
|
||||
|
@ -249,24 +253,24 @@ ul.sidebar-menu li.active a, ul.sidebar-menu li a:hover, ul.sidebar-menu li a:fo
|
|||
transition: all 0.3s ease;
|
||||
}
|
||||
ul.sidebar-menu li a:hover, ul.sidebar-menu li a:focus {
|
||||
border-bottom: 1px solid #007AFF;
|
||||
border-bottom: 1px solid #ff4088;
|
||||
}
|
||||
/*ul.sidebar-menu li.active a,*/ ul.sidebar-menu .sub-menu li.active a{
|
||||
border-bottom: 1px solid #007AFF;
|
||||
border-bottom: 1px solid #ff4088;
|
||||
}
|
||||
|
||||
ul.sidebar-menu li a i {
|
||||
font-size: 18px;
|
||||
padding-right: 6px;
|
||||
/*color: #007AFF;*/
|
||||
/*color: #ff4088;*/
|
||||
}
|
||||
|
||||
ul.sidebar-menu li a:hover i, ul.sidebar-menu li a:focus i {
|
||||
color: #007AFF;
|
||||
color: #ff4088;
|
||||
}
|
||||
|
||||
ul.sidebar-menu li.active a i {
|
||||
color: #007AFF;
|
||||
color: #ff4088;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue