]> code.citadel.org Git - citadel.git/blob - webcit/static/styles/box.css
Merge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel
[citadel.git] / webcit / static / styles / box.css
1 .box {
2         background-color: transparent;
3         width: 100%;
4         padding: 0;
5         margin: 0;
6 }
7
8 #content .box {
9         text-align: center;
10 }
11
12 .boxlabel, .boxcontent { margin: 0 }
13
14 #content .boxlabel, #global .boxlabel {
15         padding: 0;
16         width: 100%;
17         text-align: center;
18 }
19
20 .boxlabel {
21         background-color: #5C646B;
22         color: #FEFFFC;
23         font-weight: 700;
24         text-align: center;
25         padding: 0;
26         border-radius: 8px 8px 0 0;
27         -webkit-border-radius: 8px 8px 0 0;
28         -moz-border-radius: 8px 8px 0 0;
29         behavior: url(/static/styles/PIE.htc);
30 }
31
32 .boxcontent {
33         text-align: left;
34         padding: 5px;
35         background-color: #FEFFFC;
36         color: #000;
37         border: 2px solid #5C646B;
38         border-radius: 0 0 8px 8px;
39         -webkit-border-radius: 0 0 8px 8px;
40         -moz-border-radius: 0 0 8px 8px; 
41         -webkit-box-shadow: #666 0px 1px 2px;
42         -moz-box-shadow: #666 0px 2px 3px;
43         box-shadow: #666 0px 2px 3px;
44         behavior: url(/static/styles/PIE.htc);
45 }
46