blob: dae525104e963f98f60dac9122017196b223240e [file] [log] [blame]
Bri Prebilic Cole3c3361c2015-05-19 12:07:29 -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 Cole75874da2015-05-19 14:24:24 -070017#home table {
Bri Prebilic Colef3eba312015-05-21 16:35:06 -070018 width: 94%;
19 table-layout: fixed;
20 margin-left: 6%;
21}
22#home table.title {
23 background: linear-gradient(lightgray, darkgray);
24 border-top-left-radius: 3px;
25 border-top-right-radius: 3px;
26}
27#home table.title th {
28 text-align: center;
29}
30
31#home table.content {
32 border-spacing: 0;
33 border-collapse: collapse;
34}
35#home table.content th,
36#home table.content td {
37 font-size: 90%;
38}
39#home table.content th {
40 background-color: rgba(173, 216, 230, 0.75);
41}
42
43#home table.content tbody tr:nth-of-type(even) {
44 background-color: rgba(173, 216, 230, 0.25);
45}
46#home table.content tbody tr:nth-of-type(odd) {
47 background-color: rgba(173, 216, 230, 0.5);
Bri Prebilic Cole3c3361c2015-05-19 12:07:29 -070048}
49
Bri Prebilic Cole75874da2015-05-19 14:24:24 -070050#home td, #home th {
Bri Prebilic Colef3eba312015-05-21 16:35:06 -070051 text-align: left;
52 padding: 2%;
53}
54
55#home h3 {
56 font-weight: normal;
57 margin-bottom: 4%;
58}
59
60#home h4 {
61 color: rgb(107, 107, 107);
62 font-style: italic;
63 font-weight: normal;
64 font-size: 90%;
65 margin-bottom: 1%;
66}
67
68#home p {
69 font-size: 70%;
70 color: rgba(0,0,0, 0.8);
71 text-indent: 20px;
72 text-align: justify;
Bri Prebilic Cole3c3361c2015-05-19 12:07:29 -070073}