/*** Page-level animations - START*/ main, toc-sections li {
-webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */ -moz-animation: fadein 1s; /* Firefox < 16 */ -ms-animation: fadein 1s; /* Internet Explorer */ -o-animation: fadein 1s; /* Opera < 12.1 */ animation: fadein 1s;
} @keyframes fadein {
from { opacity: 0.25; } to { opacity: 1; }
} /* Firefox < 16 */ @-moz-keyframes fadein {
from { opacity: 0.25; } to { opacity: 1; }
} /* Safari, Chrome and Opera > 12.1 */ @-webkit-keyframes fadein {
from { opacity: 0.25; } to { opacity: 1; }
} /* Internet Explorer */ @-ms-keyframes fadein {
from { opacity: 0.25; } to { opacity: 1; }
} /* Opera < 12.1 */ @-o-keyframes fadein {
from { opacity: 0.25; } to { opacity: 1; }
} /*** Page-level animations - END*/
// a:hover, // a:active, // a:focus, // abbr:hover, // abbr:focus, // abbr:active { // transition-duration: 0.5s; // }