blob: 336ac08df6bb20f5e74dbe4e0ce9f5d32e865ca6 [file] [log] [blame]
Simon Huntc2202d52014-12-16 13:30:15 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Simon Huntc2202d52014-12-16 13:30:15 -08003 *
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/*
Simon Hunt58894c82016-05-24 15:09:02 -070018 ONOS GUI -- core (layout) -- CSS file
Simon Huntc2202d52014-12-16 13:30:15 -080019 */
20
21html {
Simon Huntd42e5d12016-05-25 16:46:52 -070022 font-family: 'Open Sans', sans-serif;
Simon Huntc2202d52014-12-16 13:30:15 -080023 -webkit-text-size-adjust: 100%;
24 -ms-text-size-adjust: 100%;
25 height: 100%;
26}
27
28/*
29 overflow hidden is to ensure that the body does not expand to account
30 for any flyout panes, that are positioned "off screen".
31 */
32body {
33 height: 100%;
34 margin: 0;
35 overflow: hidden;
36}
Simon Huntef31fb22014-12-19 13:16:44 -080037
38#view {
39 padding: 6px;
Simon Hunt426bd862015-01-14 16:48:41 -080040 width: 100%;
41 height: 100%;
Simon Huntef31fb22014-12-19 13:16:44 -080042}
43
Thomas Vachuska95aadff2015-03-26 11:45:41 -070044#view h2 {
Simon Huntf3fd4ed2016-05-31 17:16:18 -070045 -webkit-margin-before: 0;
46 -webkit-margin-after: 0;
Simon Hunt5487ce72016-06-06 15:31:10 -070047 margin: 32px 0 4px 16px;
Simon Huntf3fd4ed2016-05-31 17:16:18 -070048 padding: 0;
49 font-size: 21pt;
50 font-weight: lighter;
Thomas Vachuska95aadff2015-03-26 11:45:41 -070051}