Skip to content

Commit c474616

Browse files
committed
navbar: don't transition the background colour
1 parent 5c45d86 commit c474616

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

assets/css/beautifuljekyll.css

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -80,21 +80,21 @@ hr.small {
8080
}
8181

8282
::-moz-selection {
83-
color: white;
83+
color: #fff;
8484
text-shadow: none;
8585
background-color: {{ site.hover-col | default: "#0085A1" }};
8686
}
8787
::selection {
88-
color: white;
88+
color: #fff;
8989
text-shadow: none;
9090
background-color: {{ site.hover-col | default: "#0085A1" }};
9191
}
9292
img::selection {
93-
color: white;
93+
color: #fff;
9494
background: transparent;
9595
}
9696
img::-moz-selection {
97-
color: white;
97+
color: #fff;
9898
background: transparent;
9999
}
100100

@@ -129,9 +129,9 @@ img {
129129
background-image: url({{ site.navbar-img | relative_url }});
130130
background-attachment: fixed;
131131
{% endif %}
132-
-webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
133-
-moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
134-
transition: background .5s ease-in-out,padding .5s ease-in-out;
132+
-webkit-transition: padding .5s ease-in-out;
133+
-moz-transition: padding .5s ease-in-out;
134+
transition: padding .5s ease-in-out;
135135
}
136136

137137
.navbar-custom,

0 commit comments

Comments
 (0)