blob: 6dcb40d4e2b2efa57a59c1d77fa3e9caaeaee29d [file] [log] [blame]
Bri Prebilic Colee2958f22015-05-26 17:18:23 -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 Cole5d6153e2015-05-28 12:03:21 -070017#user div.main-left {
18 width: 98%;
19 padding-left: 1%;
20}
21#user div.main-left.family {
22 width: 61%;
23 padding-left: 1%;
24}
25
26#user div.main-right {
27 width: 0;
28}
29#user div.main-right.family {
30 width: 37%;
31}
32
33#user table.user-info,
34#user table.user-form {
Bri Prebilic Coled050a4b2015-05-27 15:53:30 -070035 float: left;
Bri Prebilic Cole5d6153e2015-05-28 12:03:21 -070036 width: 100%;
37}
38
39#user th.topLeft {
40 border-top-left-radius: 3px;
41}
42#user th.topRight {
43 border-top-right-radius: 3px;
44}
45
46#user table.user-info th,
47#user table.user-form th {
48 text-align: left;
49 background-color: rgba(173, 216, 230, 0.75);
50 padding: 2% 1%;
51}
52
53#user div.main-left.family table.user-info th,
54#user div.main-right.family table.user-form th {
55 padding: 17px;
56}
57
58#user div.main-left.family table.user-info td,
59#user div.main-right.family table.user-form td {
60 padding: 10px;
61 height: 23px;
62}
63#user table.user-info td {
64 padding: 1%;
65}
66#user table.user-form td.buttons {
67 text-align: right;
68 border-bottom-left-radius: 3px;
69 border-bottom-right-radius: 3px;
70}
71
72#user table.user-info tr:nth-of-type(odd),
73#user table.user-form tr:nth-of-type(odd) {
74 background-color: rgba(173, 216, 230, 0.5);
75}
76#user table.user-info tr:nth-of-type(even),
77#user table.user-form tr:nth-of-type(even) {
78 background-color: rgba(173, 216, 230, 0.25);
79}
80
81#user table.user-form tr.options td {
82 padding-left: 5%;
83}
84
85#user select,
86#user select:focus {
87 border: none;
88}
89
90#user select {
91 font-size: 95%;
92}
93
94#user option,
95#user option:focus {
96 border: none;
97}
98
99#user option[selected] {
100 background-color: rgb(122, 188, 229);
101}
102
103#user label {
104 font-weight: bold;
105 display: block;
106 text-align: center;
107 padding: 5%;
108}
109
110#user input[type="button"],
111#user input[type="reset"] {
112 width: 30%;
113}
114
115#user td.buttons svg {
116 vertical-align: middle;
Bri Prebilic Coled050a4b2015-05-27 15:53:30 -0700117}