blob: 3944f59db80f8aed306123fba620d24a9906f655 [file] [log] [blame]
Simon Huntc2202d52014-12-16 13:30:15 -08001/*
2 * Copyright 2014 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17/*
18 ONOS GUI -- core -- CSS file
19
20 @author Simon Hunt
21 */
22
23html {
24 font-family: sans-serif;
25 -webkit-text-size-adjust: 100%;
26 -ms-text-size-adjust: 100%;
27 height: 100%;
28}
29
30/*
31 overflow hidden is to ensure that the body does not expand to account
32 for any flyout panes, that are positioned "off screen".
33 */
34body {
35 height: 100%;
36 margin: 0;
37 overflow: hidden;
38}
Simon Huntef31fb22014-12-19 13:16:44 -080039
40#view {
41 padding: 6px;
42}
43
44#view h2 {
45 color: #800;
46}