added CSS to make chrome render the right fonts
This commit is contained in:
parent
54b070f599
commit
05e1773b7a
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue