blob: fd873a1311df1435bca32fb74a4b1488e262a62c [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
Bri Prebilic Colef3eba312015-05-21 16:35:06 -070031#home table.content th,
32#home table.content td {
33 font-size: 90%;
34}
35#home table.content th {
36 background-color: rgba(173, 216, 230, 0.75);
37}
38
39#home table.content tbody tr:nth-of-type(even) {
40 background-color: rgba(173, 216, 230, 0.25);
41}
42#home table.content tbody tr:nth-of-type(odd) {
43 background-color: rgba(173, 216, 230, 0.5);
Bri Prebilic Cole3c3361c2015-05-19 12:07:29 -070044}
45
Bri Prebilic Cole75874da2015-05-19 14:24:24 -070046#home td, #home th {
Bri Prebilic Colef3eba312015-05-21 16:35:06 -070047 text-align: left;
48 padding: 2%;
49}