added a button link to my account on the dashboard and set min height in css
[myslice.git] / portal / static / css / dashboard.css
1
2 .ms-dashboard {
3     width: 100%;
4 }
5
6 .ms-dashboard-panel {
7
8 }
9
10 .ms-dashboard-caption {
11     padding-left: 40px;
12 }
13
14 .ms-dashboard-caption h2 {
15     position: relative;
16     border-bottom: solid 1px #CCC;
17     width: 100%;
18 }
19
20 .ms-dashboard-content {
21     padding-left: 40px;
22 }
23
24 #ms-dashboard-profile>div.ms-dashboard-caption {
25     background: no-repeat url(../img/user.png);
26 }   
27
28 #ms-dashboard-testbeds>div.ms-dashboard-caption {
29     background: no-repeat url(../img/testbeds.png);
30 }   
31
32 #ms-dashboard-slices>div.ms-dashboard-caption {
33     background: no-repeat url(../img/experiments.png);
34 }   
35
36
37 #ms-dashboard-profile {
38     float: left;
39     position: relative;
40     top: 1em;
41     width: 45%;
42     min-height:200px;
43     height:auto !important;
44     height:200px; 
45 }
46
47 #ms-dashboard-slices {
48     float: left;
49     position: relative;
50     width: 45%;
51     padding-top: 1em;
52 }
53
54 #ms-dashboard-testbeds {
55     float: right;
56     border: 1px #CCC;
57     padding: 15px;
58     top: 0.5em;
59     width: 45%;
60     min-height:200px;
61     height:auto !important;
62     height:200px; 
63 }
64
65 li.icn {
66     padding: 0 0 0 0;
67     list-style: none;
68     padding-left: 20px;
69 }
70
71 img.icn {
72     padding: 0 0 0 0;
73     position: relative;
74     top: 4px;
75     padding-right: 5px;
76 }
77
78 li.icn-warning {
79     background: no-repeat url(images/button-warning-12x12.png) 0 2px;
80 }
81 li.icn-play {
82     background: no-repeat url(images/button-play-12x12.png) 0 2px;
83 }
84 li.icn-stop {
85     background: no-repeat url(images/button-stop-12x12.png) 0 2px;
86 }
87 li.icn-forbidden {
88     background: no-repeat url(images/button-forbidden-12x12.png) 0 2px;
89 }
90 li.icn a {
91     text-decoration: none;
92 }