source: asadb/media/style/page-frame.css

space-accessstablestage
Last change on this file was 86accce, checked in by Alex Dehnert <adehnert@…>, 13 years ago

Switch tab border to black

Unfortunately, the bottom border of the tabs is double-width (in Chromium), and
I can't figure out how to change that.

  • Property mode set to 100644
File size: 1.6 KB
Line 
1body
2{
3    padding: 1em;
4    background: #BE2933;
5}
6#content
7{
8    margin: 0;
9    margin-top: 5px;
10    padding: 1em;
11    min-height: 15em;
12    border: 1px solid black;
13    background-color: white;
14}
15ul.tab-navigation
16{
17    margin-left: 0;
18    padding-left: 0;
19    display: inline;
20}
21ul.tab-navigation li
22{
23    margin-left: 0;
24    margin-right: -10px;
25    padding: 2px 15px 5px;
26    border: 1px solid black;
27    background: white;
28    list-style: none;
29    display: inline;
30    border-top-left-radius:          15px;
31    -webkit-border-top-left-radius:  15px;
32    -moz-border-radius-topleft:      15px;
33    border-top-right-radius:         15px;
34    -webkit-border-top-right-radius: 15px;
35    -moz-border-radius-topright:     15px;
36}
37ul.tab-navigation li.selected
38{
39    background: #333;
40    color: white;
41    position: relative;
42    z-index: 10;
43}
44ul.tab-navigation li.selected a
45{
46    color: white;
47}
48
49#content > .curuser
50{
51    margin-top: -1em;
52    margin-right: -1em;
53    float: right;
54    background: #333;
55    color: white;
56    border-left: 1px solid black;
57    border-bottom: 1px solid black;
58
59    text-align: right;
60    line-height: 100%;
61}
62#content > .curuser p
63{
64    margin: 0.2em;
65}
66#content > .curuser a
67{
68    color: white;
69}
70
71#content .bottom-content { clear: both; }
72
73.toolbox
74{
75    float: right;
76    background-color: #bbb;
77    color: black;
78    border: 1px solid #777;
79    padding: 10px;
80    margin-left: 10px;
81    margin-bottom: 10px;
82}
83.toolbox h2
84{
85    background-color: #888;
86    border-bottom: 1px solid #777;
87    margin-top: -10px;
88    margin-left: -10px;
89    margin-right: -10px;
90    padding: 5px;
91}
Note: See TracBrowser for help on using the repository browser.