blob: 56830114dbd7e46ad41d77b03d732008830e9a7b [file] [log] [blame]
Bri Prebilic Cole10570eb2015-05-20 16:23:52 -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
17div#bundle div.main-left {
Bri Prebilic Coled050a4b2015-05-27 15:53:30 -070018 width: 61%;
Bri Prebilic Cole0e371dc2015-06-05 16:47:21 -070019 padding: 4% 0 0 1%;
Bri Prebilic Cole10570eb2015-05-20 16:23:52 -070020}
21div#bundle div.main-right {
Bri Prebilic Coled050a4b2015-05-27 15:53:30 -070022 width: 37%;
Bri Prebilic Cole0e371dc2015-06-05 16:47:21 -070023 padding-top: 4%;
Bri Prebilic Cole10570eb2015-05-20 16:23:52 -070024}
25
26#bundle table {
Bri Prebilic Colebdd6b3b2015-05-22 15:44:18 -070027 width: 95%;
28 margin-top: 5%;
29 margin-left: 2%;
30 border-radius: 3px;
Bri Prebilic Cole10570eb2015-05-20 16:23:52 -070031}
32
33#bundle td {
Bri Prebilic Colebdd6b3b2015-05-22 15:44:18 -070034 font-size: 90%;
Bri Prebilic Cole10570eb2015-05-20 16:23:52 -070035}
36#bundle td.icon {
Bri Prebilic Colebdd6b3b2015-05-22 15:44:18 -070037 text-align: center;
Bri Prebilic Cole10570eb2015-05-20 16:23:52 -070038 width: 50px;
39 height: 50px;
Bri Prebilic Colebdd6b3b2015-05-22 15:44:18 -070040 padding: 4%;
41}
42#bundle td.name {
43 border-left: solid 1px rgba(136, 0, 0, 0.25);
44 padding-left: 3%;
Bri Prebilic Cole10570eb2015-05-20 16:23:52 -070045}
46#bundle td.desc {
47 width: 50%;
48 text-align: left;
Bri Prebilic Colebdd6b3b2015-05-22 15:44:18 -070049 font-style: italic;
50}
Bri Prebilic Colee2958f22015-05-26 17:18:23 -070051/* animation specific */
52#bundle tr.fadein.ng-leave td.name,
53#bundle tr.fadein.ng-leave-active td.name {
54 opacity: 0;
55 border: none;
56}
Bri Prebilic Colebdd6b3b2015-05-22 15:44:18 -070057
Bri Prebilic Cole0e371dc2015-06-05 16:47:21 -070058#bundle img {
59 width: 100%;
60}
61
Bri Prebilic Colebdd6b3b2015-05-22 15:44:18 -070062#bundle h2 {
63 text-align: center;
64 padding: 3%;
Bri Prebilic Cole0e371dc2015-06-05 16:47:21 -070065 font-weight: lighter;
66 border: 1px solid #3C3C3C;
67 cursor: pointer;
68}
69#bundle h2:hover {
70 color: #CE5650;
71 border-color: #CE5650;
72}
73
74div#bundles {
75 position: relative;
76}
77
78div#available.ng-hide-add.ng-hide-add-active,
79div#available.ng-hide-remove.ng-hide-remove-active {
80 -webkit-transition: all linear 0.5s;
81 transition: all linear 0.5s;
82}
83div#available.ng-hide {
84 opacity: 0;
85 top: -80px;
Bri Prebilic Colebdd6b3b2015-05-22 15:44:18 -070086}
87
88div#available {
Bri Prebilic Cole0e371dc2015-06-05 16:47:21 -070089 position: absolute;
Bri Prebilic Colebdd6b3b2015-05-22 15:44:18 -070090 padding: 5%;
Bri Prebilic Cole0e371dc2015-06-05 16:47:21 -070091 opacity: 1;
92 top: -10px;
93 width: 100%;
Bri Prebilic Colebdd6b3b2015-05-22 15:44:18 -070094}
95
96#available p {
97 text-indent: initial;
98 text-align: initial;
Bri Prebilic Cole10570eb2015-05-20 16:23:52 -070099}
100
101#available button {
102 float: right;
Bri Prebilic Colebdd6b3b2015-05-22 15:44:18 -0700103 width: 33%;
104 margin-top: 5%;
105}