]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - html/html/themes/ipfire/include/css/style-rounded.css
Language changes for new layout
[people/teissler/ipfire-2.x.git] / html / html / themes / ipfire / include / css / style-rounded.css
1
2 .bigbox {
3 margin-top: 1em;
4 border-radius: 8px 8px 8px 8px;
5 -webkit-border-radius: 8px 8px 8px 8px;
6 }
7
8 #main_inner .post {
9 border-radius: 8px 8px 8px 8px;
10 -webkit-border-radius: 8px 8px 8px 8px;
11 }
12
13 #cssmenu a {
14 border-radius: 8px 8px 8px 8px;
15 -webkit-border-radius: 8px 8px 8px 8px;
16 }
17
18 #cssmenu .has-sub ul li a {
19 border-radius: 7px 7px 7px 7px;
20 }
21
22 #cssmenu .has-sub ul li:hover a {
23 box-shadow: inset 0 5px 1px rgba(0, 0, 0, 0.15);
24 -webkit-box-shadow: inset 0 5px 1px rgba(0, 0, 0, 0.15);
25 }
26
27 /* Table */
28 /* when using class='bordered' after tabletag */
29
30 table {
31 *border-collapse: collapse; /* IE7 and lower */
32 border-spacing: 0;
33 }
34
35 .tbl th:first-child{
36 -moz-border-radius: 6px 0 0 0;
37 -webkit-border-radius: 6px 0 0 0;
38 border-radius: 6px 0 0 0;
39 }
40
41 .tbl th:last-child {
42 -moz-border-radius: 0 6px 0 0;
43 -webkit-border-radius: 0 6px 0 0;
44 border-radius: 0 6px 0 0;
45 }
46
47 .tbl th:only-child{
48 -moz-border-radius: 6px 6px 0 0;
49 -webkit-border-radius: 6px 6px 0 0;
50 border-radius: 6px 6px 0 0;
51 }
52
53 .tbl tr:first-child td:first-child{
54 -moz-border-radius: 6px 0 0 0;
55 -webkit-border-radius: 6px 0 0 0;
56 border-radius: 6px 0 0 0;
57 }
58
59 .tbl tr:first-child td:last-child{
60 -moz-border-radius: 0 6px 0 0;
61 -webkit-border-radius: 0 6px 0 0;
62 border-radius: 0 6px 0 0;
63 }
64
65 .tbl tr:first-child td:only-child{
66 -moz-border-radius: 6px 6px 0 0;
67 -webkit-border-radius: 6px 6px 0 0;
68 border-radius: 6px 6px 0 0;
69 }
70
71 .tbl tr:last-child td:first-child {
72 -moz-border-radius: 0 0 0 6px;
73 -webkit-border-radius: 0 0 0 6px;
74 border-radius: 0 0 0 6px;
75 }
76
77 .tbl tr:last-child td:last-child {
78 -moz-border-radius: 0 0 6px 0;
79 -webkit-border-radius: 0 0 6px 0;
80 border-radius: 0 0 6px 0;
81 }
82
83 .tbl tr:last-child td:only-child {
84 -moz-border-radius: 0 0 6px 6px;
85 -webkit-border-radius: 0 0 6px 6px;
86 border-radius: 0 0 6px 6px;
87 }