blob: 968b9c83608a2326f49f48c666a4bf1e4c14bce4 [file] [log] [blame]
Bri Prebilic Colee0311892015-05-15 11:27:15 -07001/*
2 * Copyright 2015 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
Bri Prebilic Cole3c3361c2015-05-19 12:07:29 -070017head, body, footer,
18h1, h2, h3, h4, h5, h6, p,
19a, ul, li, div,
20table, tr, td, th, thead, tbody {
Bri Prebilic Colee0311892015-05-15 11:27:15 -070021 padding: 0;
22 margin: 0;
23}
24
Bri Prebilic Cole3c3361c2015-05-19 12:07:29 -070025h1, h2, h3, h4, h5, h6,
26p, a, li, th, td {
Bri Prebilic Colee0311892015-05-15 11:27:15 -070027 font-family: "Lucida Grande", "Droid Sans", Arial, Helvetica, sans-serif;
28}
Bri Prebilic Cole8db16402015-05-18 13:50:31 -070029
Bri Prebilic Cole0e35b822015-05-21 13:29:38 -070030body {
31 background-color: #efefef;
32}
Bri Prebilic Colebdd6b3b2015-05-22 15:44:18 -070033table {
34 border-spacing: 0;
35 border-collapse: collapse;
36}
Bri Prebilic Colef3eba312015-05-21 16:35:06 -070037th, td {
38 color: rgba(0, 0, 0, 0.8);
39}
Bri Prebilic Colebdd6b3b2015-05-22 15:44:18 -070040h3 {
41 font-weight: normal;
42 margin-bottom: 4%;
43}
44h4 {
45 color: rgb(107, 107, 107);
46 font-style: italic;
47 font-weight: normal;
48 font-size: 90%;
49 margin-bottom: 1%;
50}
51p {
52 font-size: 70%;
53 color: rgba(0,0,0, 0.8);
54 text-indent: 20px;
55 text-align: justify;
56}
57
Bri Prebilic Coled050a4b2015-05-27 15:53:30 -070058button,
59input[type="button"],
60input[type="reset"] {
Bri Prebilic Colebdd6b3b2015-05-22 15:44:18 -070061 height: 30px;
62 box-shadow: none;
63 border: none;
64 outline: none;
65 cursor: pointer;
66 letter-spacing: 0.02em;
67 font-size: 14px;
68 background-color: lightgray;
69 transition: background-color 0.4s;
70}
Bri Prebilic Coled050a4b2015-05-27 15:53:30 -070071button:hover,
72input[type="button"]:hover,
73input[type="reset"]:hover {
Bri Prebilic Colebdd6b3b2015-05-22 15:44:18 -070074 color: white;
Bri Prebilic Coled050a4b2015-05-27 15:53:30 -070075 background-color: rgb(122, 188, 229);
76}
77
78button[disabled]:hover,
79input[type="button"][disabled]:hover,
80input[type="reset"][disabled]:hover {
81 background-color: lightgray;
82 color: graytext;
Bri Prebilic Colebdd6b3b2015-05-22 15:44:18 -070083}
Bri Prebilic Cole0e35b822015-05-21 13:29:38 -070084
Bri Prebilic Cole75874da2015-05-19 14:24:24 -070085div.container {
86 width: 75%;
Bri Prebilic Cole3c3361c2015-05-19 12:07:29 -070087 margin: 0 auto;
88}
Bri Prebilic Cole75874da2015-05-19 14:24:24 -070089div.main-left, div.main-right {
90 float: left;
91}
92div.main-left {
Bri Prebilic Coled050a4b2015-05-27 15:53:30 -070093 width: 37%;
94 padding-left: 1%;
Bri Prebilic Cole75874da2015-05-19 14:24:24 -070095}
96div.main-right {
Bri Prebilic Coled050a4b2015-05-27 15:53:30 -070097 width: 61%;
Bri Prebilic Cole75874da2015-05-19 14:24:24 -070098}
Bri Prebilic Cole3c3361c2015-05-19 12:07:29 -070099
100svg#icon-defs {
101 display: none;
102}
Bri Prebilic Colebdd6b3b2015-05-22 15:44:18 -0700103
104/* animation */
105.fadein {
106 transition: all linear 0.5s;
107}
Bri Prebilic Colee2958f22015-05-26 17:18:23 -0700108.fadein.ng-enter-stagger,
109.fadein.ng-leave-stagger {
Bri Prebilic Colebdd6b3b2015-05-22 15:44:18 -0700110 transition-delay: 0.2s;
111 animation-delay: 0.2s;
112}
Bri Prebilic Colee2958f22015-05-26 17:18:23 -0700113.fadein.ng-enter {
114 opacity: 0;
115}
Bri Prebilic Colebdd6b3b2015-05-22 15:44:18 -0700116.fadein.ng-enter.ng-enter-active {
117 opacity: 1;
118}
Bri Prebilic Colee2958f22015-05-26 17:18:23 -0700119.fadein.ng-leave,
120.fadein.ng-leave-active {
121 opacity: 0;
122}