Skip to content

Commit

Permalink
navbar: don't transition the background colour
Browse files Browse the repository at this point in the history
  • Loading branch information
daattali committed Sep 16, 2020
1 parent 5c45d86 commit c474616
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions assets/css/beautifuljekyll.css
Original file line number Diff line number Diff line change
Expand Up @@ -80,21 +80,21 @@ hr.small {
}

::-moz-selection {
color: white;
color: #fff;
text-shadow: none;
background-color: {{ site.hover-col | default: "#0085A1" }};
}
::selection {
color: white;
color: #fff;
text-shadow: none;
background-color: {{ site.hover-col | default: "#0085A1" }};
}
img::selection {
color: white;
color: #fff;
background: transparent;
}
img::-moz-selection {
color: white;
color: #fff;
background: transparent;
}

Expand Down Expand Up @@ -129,9 +129,9 @@ img {
background-image: url({{ site.navbar-img | relative_url }});
background-attachment: fixed;
{% endif %}
-webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
-moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
transition: background .5s ease-in-out,padding .5s ease-in-out;
-webkit-transition: padding .5s ease-in-out;
-moz-transition: padding .5s ease-in-out;
transition: padding .5s ease-in-out;
}

.navbar-custom,
Expand Down

0 comments on commit c474616

Please sign in to comment.