blob: 7889db60e344fe75cfc1f3e3e7e9aa6700501bfb [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
58button {
59 height: 30px;
60 box-shadow: none;
61 border: none;
62 outline: none;
63 cursor: pointer;
64 letter-spacing: 0.02em;
65 font-size: 14px;
66 background-color: lightgray;
67 transition: background-color 0.4s;
68}
69button:hover {
70 color: white;
71 background-color: #CE5650;
72}
Bri Prebilic Cole0e35b822015-05-21 13:29:38 -070073
Bri Prebilic Cole75874da2015-05-19 14:24:24 -070074div.container {
75 width: 75%;
Bri Prebilic Cole3c3361c2015-05-19 12:07:29 -070076 margin: 0 auto;
77}
Bri Prebilic Cole75874da2015-05-19 14:24:24 -070078div.main-left, div.main-right {
79 float: left;
80}
81div.main-left {
82 width: 38%;
83}
84div.main-right {
85 width: 62%;
86}
Bri Prebilic Cole3c3361c2015-05-19 12:07:29 -070087
88svg#icon-defs {
89 display: none;
90}
Bri Prebilic Colebdd6b3b2015-05-22 15:44:18 -070091
92/* animation */
93.fadein {
94 transition: all linear 0.5s;
95}
96.fadein.ng-enter {
97 opacity: 0;
98}
99.fadein.ng-enter-stagger {
100 transition-delay: 0.2s;
101 animation-delay: 0.2s;
102}
103.fadein.ng-enter.ng-enter-active {
104 opacity: 1;
105}