]> code.citadel.org Git - citadel.git/blob - webcit/static/styles/box.css
The rounded boxes are rounded again, thanks to CSS3. It even works
[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 { text-align: center }
9
10 .boxlabel, .boxcontent { margin: 0 }
11
12 #content .boxlabel, #global .boxlabel {
13         padding: 0;
14         width: 100%;
15         text-align: center;
16 }
17
18 .boxlabel {
19         background-color: #FF7814;
20         color: #FFF;
21         font-weight: 700;
22         text-align: center;
23         padding: 0;
24         border-radius: 8px 8px 0 0;
25         -webkit-border-radius: 8px 8px 0 0;
26         -moz-border-radius: 8px 8px 0 0;
27         behavior: url(/static/styles/PIE.htc);
28 }
29
30 .boxcontent {
31         text-align: left;
32         padding: 5px;
33         background-color: #FFF;
34         color: #000;
35         border-radius: 0 0 8px 8px;
36         -webkit-border-radius: 0 0 8px 8px;
37         -moz-border-radius: 0 0 8px 8px; 
38         behavior: url(/static/styles/PIE.htc);
39 }
40