2011-11-11 03:08:07 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-11-11 03:08:07 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
This CSS stylesheet defines the rules to be applied to VideoDocuments that
|
|
|
|
are top level (e.g. not iframes).
|
|
|
|
*/
|
2011-11-11 03:08:47 +04:00
|
|
|
|
|
|
|
body {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2018-07-11 06:51:48 +03:00
|
|
|
-moz-user-focus: ignore;
|
2011-11-11 03:08:47 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
video {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
margin: auto;
|
2011-11-15 03:58:41 +04:00
|
|
|
max-width: 100%;
|
|
|
|
max-height: 100%;
|
2015-05-24 23:50:00 +03:00
|
|
|
-moz-user-select: none;
|
2018-07-11 06:51:48 +03:00
|
|
|
-moz-user-focus: normal;
|
2011-11-11 03:08:47 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
video:focus {
|
|
|
|
outline-width: 0;
|
|
|
|
}
|