From 15ae01321e0eeb892970ae256677a4cb9fc6bf6f Mon Sep 17 00:00:00 2001 From: Mark Firth Date: Tue, 7 Nov 2017 01:12:22 +1000 Subject: [PATCH 1/2] Update general.css Add space to the top of the stand alone video page, centers the video, centers the text and adds a border to the video skin to separate it from the background. --- public/assets/css/general.css | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/public/assets/css/general.css b/public/assets/css/general.css index 66b10b2d..856bac83 100644 --- a/public/assets/css/general.css +++ b/public/assets/css/general.css @@ -152,7 +152,9 @@ a, a:visited { .link--primary, .link--primary:visited { color: #4156C5; } - +.link--primary.fine-print { + text-align: center; +} .link--nav { color: black; border-bottom: 2px solid white; @@ -516,8 +518,12 @@ table { } #video-player { - background-color: black; - cursor: pointer; + background-color: #fff; + cursor: pointer; + margin: 0 auto; + margin-top: 2%; + border: 1px solid #d0d0d0; + padding: 6px 6px 5px 6px; } .show-asset-light { @@ -582,4 +588,4 @@ table { text-align: center; padding: 1em 0px 1em 0px; width: 100%; -} \ No newline at end of file +} -- 2.45.3 From 7b22fb62f2784a9ff7c176a657d02ba8226bf968 Mon Sep 17 00:00:00 2001 From: Mark Firth Date: Tue, 7 Nov 2017 11:26:17 +1000 Subject: [PATCH 2/2] #video-player Padding all 6px Padding should be 6px rather than padding: 6px 6px 5px 6px; --- public/assets/css/general.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/assets/css/general.css b/public/assets/css/general.css index 856bac83..2d51a5a5 100644 --- a/public/assets/css/general.css +++ b/public/assets/css/general.css @@ -523,7 +523,7 @@ table { margin: 0 auto; margin-top: 2%; border: 1px solid #d0d0d0; - padding: 6px 6px 5px 6px; + padding:6px; } .show-asset-light { -- 2.45.3