diff options
Diffstat (limited to 'www/lib/ng-mfb/mfb')
| -rw-r--r-- | www/lib/ng-mfb/mfb/src/index.css | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/www/lib/ng-mfb/mfb/src/index.css b/www/lib/ng-mfb/mfb/src/index.css index acb77872..f106807c 100644 --- a/www/lib/ng-mfb/mfb/src/index.css +++ b/www/lib/ng-mfb/mfb/src/index.css @@ -2,6 +2,8 @@ html, body{ height: 100%; min-height: 100%; background: #E9EBEC; + -webkit-font-smoothing: initial; + text-rendering: initial; } html{ font-family: 'Raleway', sans-serif; @@ -17,6 +19,16 @@ body{ display: flex; align-items: center; justify-content: center; + + -webkit-animation-duration: 3s; + animation-duration: 3s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-name: fadeIn; + animation-name: fadeIn; +} +html p, body p{ + line-height: inherit; } h1{ margin: 0.2em 0; @@ -202,3 +214,23 @@ pre{ transform: translateY(0); } } + +@-webkit-keyframes fadeIn { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@keyframes fadeIn { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} |
