source: trunk/template/yoga/picture.css @ 2636

Last change on this file since 2636 was 2630, checked in by rvelices, 16 years ago
  • default-colors.css is imported from layout.css instead of header.tpl (smaller header + more consistent with the other imports)
  • removed unused rule from default-layout.css (A.button)
  • rating stars have a transparent background in Sylvia also
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 1.7 KB
Line 
1/* $Id: picture.css 2630 2008-10-01 10:04:23Z rvelices $ */
2#imageHeaderBar {
3        padding-top: 2px;
4        padding-bottom: 2px;
5        margin-top: 4px;
6        overflow: hidden;
7        width: 100%;
8}
9
10#imageHeaderBar .browsePath {
11        float: left;
12        margin-left: 10px;
13}
14
15#imageHeaderBar .imageNumber {
16        float: right;
17        margin-right: 10px;
18}
19
20#imageHeaderBar H2 {
21        text-align: center;
22        padding: 0;
23        clear: both;
24}
25
26#imageToolBar {
27        text-align: center;
28        position: relative;
29        clear: both;
30        margin-bottom: 4px;
31        padding: 0;
32}
33
34#imageToolBar {
35        height: 28px;
36}
37#imageToolBar A, #imageToolBar IMG {
38        display: block;
39        border: none;
40        margin: 0; padding: 0;
41}
42#imageToolBar A { width: 48px; }
43#imageToolBar IMG { margin: 2px auto; }
44#imageToolBar .randomButtons A { float: left; }
45#imageToolBar .navButtons    A { float: right; }
46
47#theImage {
48        clear: left;
49        text-align: center;
50}
51
52#theImage>IMG {
53        display: block;
54        margin: 0 auto;
55        border: none;
56}
57
58#linkPrev {
59        float: left;
60}
61
62#linkNext {
63        float: right;
64}
65
66#linkPrev IMG {
67        margin-right: 10px;
68        margin-left: 5px;
69}
70
71#linkNext IMG {
72        margin-right: 5px;
73        margin-left: 10px;
74}
75
76TABLE.infoTable .label {
77        font-weight: bold;
78        text-align: right;
79        padding-right: 0.5em;
80}
81
82TABLE.infoTable TD.value UL {
83        margin: 0;
84        padding: 0 0 0 1.5em;
85        list-style-type: square;
86}
87
88.rateButton, .rateButtonSelected, .rateButtonStarFull, .rateButtonStarEmpty  {
89        padding:0;
90        border:0;
91}
92
93.rateButton, .rateButtonStarFull, .rateButtonStarEmpty {
94        cursor: pointer;
95}
96
97.rateButtonSelected {
98        font-weight:bold;
99        font-size:120%;
100}
101
102.rateButtonStarFull {
103        background: url('icon/rating-stars.gif') no-repeat scroll; background-position:-16px center; width:16px;
104}
105
106.rateButtonStarEmpty {
107        background: url('icon/rating-stars.gif') no-repeat scroll; background-position:0 center; width:16px;
108}
109
Note: See TracBrowser for help on using the repository browser.