diff options
author | Sam Light <samlight1994@gmail.com> | 2022-09-05 11:37:54 +0100 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2022-09-05 11:37:54 +0100 |
commit | 7c93841d147572f5c87c088ff4f599663ce4bac7 (patch) | |
tree | eddd48226befc4611086c8c3d44a998354ce7f85 | |
parent | 08908a314cb75dbcf51e6221c2f2c49d3a55d17f (diff) |
Inlined the styling for the scorm player template
-rw-r--r-- | resources/views/player.blade.php | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/resources/views/player.blade.php b/resources/views/player.blade.php index a2baee5..9c20584 100644 --- a/resources/views/player.blade.php +++ b/resources/views/player.blade.php @@ -1,6 +1,23 @@ <html> <head> - <link rel="stylesheet" type="text/css" href="{{ manifest('css/scorm_player.css') }}" /> + <style> + * { + margin: 0; + padding: 0; + } + + html, + body { + height: 100%; + } + + iframe.scorm-player { + position: absolute; + width: 100%; + height: 100%; + border: none; + } + </style> </head> <body> |