added CSS to make chrome render the right fonts

This commit is contained in:
Vicky Steeves 2017-07-20 16:51:35 +00:00
parent 54b070f599
commit 05e1773b7a
1 changed files with 13 additions and 0 deletions

View File

@ -14,6 +14,19 @@ a {
text-decoration: none; text-decoration: none;
} }
body {
-webkit-animation-delay: 0.1s;
-webkit-animation-name: fontfix;
-webkit-animation-duration: 0.1s;
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: linear;
}
@-webkit-keyframes fontfix {
from { opacity: 1; }
to { opacity: 1; }
}
/* -------------------- NAVBAR -------------------- */ /* -------------------- NAVBAR -------------------- */
.navbar-inverse { .navbar-inverse {
background-color: #8966a0; background-color: #8966a0;