/* Copyright 2013 The Chromium Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
html {
height: 100%;
}
body {
background: none transparent;
height: 100%;
margin: 0;
overflow: hidden;
user-select: none;
width: 100%;
}
a {
display: block;
height: 100%;
line-height: 117%;
overflow: hidden;
text-align: center; /* Can be overridden in JS. */
text-decoration: none;
text-overflow: ellipsis; /* Can be overridden in JS. */
white-space: nowrap; /* Can be overridden in JS. */
}
a.multiline {
text-overflow: clip;
white-space: pre-wrap;
word-wrap: break-word;
}
a:active,
a:hover,
a:visited {
color: inherit;
text-decoration: inherit;
}
a:focus {
outline: none; /* Remove outline from tabIndex = -1. */
}