2011-11-10 23:08:07 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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-10 23:08:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
This CSS stylesheet defines the rules to be applied to VideoDocuments that
|
|
|
|
are top level (e.g. not iframes).
|
|
|
|
*/
|
2011-11-10 23:08:47 +00:00
|
|
|
|
|
|
|
body {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
video {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
margin: auto;
|
2011-11-14 23:58:41 +00:00
|
|
|
max-width: 100%;
|
|
|
|
max-height: 100%;
|
2015-05-24 20:50:00 +00:00
|
|
|
-moz-user-select: none;
|
2011-11-10 23:08:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
video:focus {
|
|
|
|
outline-width: 0;
|
|
|
|
}
|