summaryrefslogtreecommitdiff
path: root/www/lib/ng-mfb/mfb
diff options
context:
space:
mode:
authorPliablePixels <pliablepixels@gmail.com>2015-07-02 10:33:26 -0400
committerPliablePixels <pliablepixels@gmail.com>2015-07-02 10:33:26 -0400
commitf3136eefe9105deb1d97123629dae80c2de66304 (patch)
tree5389bd34d555ab4c3c065292e17cd41576db33ae /www/lib/ng-mfb/mfb
parent5e523cf0d1a3644f6a41709b777b08f73ec71d49 (diff)
updated libraries, squashed the problem of not getting bar handles on click, optimized montage view
Diffstat (limited to 'www/lib/ng-mfb/mfb')
-rw-r--r--www/lib/ng-mfb/mfb/src/index.css32
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;
+ }
+}