diff options
author | Akshen | 2019-04-16 16:53:47 +0530 |
---|---|---|
committer | Akshen | 2019-04-16 16:53:47 +0530 |
commit | b6e2119104bf38401bc4f03c72b171f8862b24ee (patch) | |
tree | 9467ee8924c128fbc67bc0c972103f64fed01c98 | |
parent | 021d635e30bd1ed285f62446255a70945f35218f (diff) | |
download | FOSSEE_animations-b6e2119104bf38401bc4f03c72b171f8862b24ee.tar.gz FOSSEE_animations-b6e2119104bf38401bc4f03c72b171f8862b24ee.tar.bz2 FOSSEE_animations-b6e2119104bf38401bc4f03c72b171f8862b24ee.zip |
play button css fix
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | static/css/sticky-footer.css | 17 |
2 files changed, 18 insertions, 1 deletions
@@ -38,7 +38,7 @@ migrations/ *.swp #images/gif -#*.png +*.png *.gif #VS code diff --git a/static/css/sticky-footer.css b/static/css/sticky-footer.css index ea445db..3e7ae2b 100644 --- a/static/css/sticky-footer.css +++ b/static/css/sticky-footer.css @@ -83,4 +83,21 @@ left: 0; background-color: #efefef; text-align: center; +} + +/* video-thumbnail over image */ +#play-btn +{ + position: absolute; + top: 40%; + left: 50%; + transform: translate(-50%, -50%); + -ms-transform: translate(-50%, -50%); + background-color: #555; + color: white; + font-size: 16px; + padding: 10px 20px; + border: none; + cursor: pointer; + border-radius: 5px; }
\ No newline at end of file |