teh legendary `Publish' button, oh yeah!
[redakcja.git] / redakcja / static / css / filelist.css
1 /*
2     Document   : filelist
3     Created on : 2009-09-04, 20:44:44
4     Author     : lreqc
5     Description:
6         Dodatkowe style dla listy plików na stronie głównej.
7 */
8
9 body {
10         background-color: #84BF2A;
11 }
12
13 #content {
14     background: #EFEFEF;
15     border: 1px solid black;
16     padding: 0.5em 2em;
17     margin: 1em;
18         overflow: hidden;
19 }
20
21 #content h1 img {
22         vertical-align: middle;
23 }
24
25 #content h1 {
26         border-bottom: 2px solid black;
27         padding: 0.5em;
28         font-size: 2opt;
29         font-family: sans-serif;
30 }
31
32 #file-list {
33         overflow: visible;
34         float: left;
35         max-width: 50%;
36         padding-right: 2%;
37         border-right: 1px dashed black;
38
39 }
40
41 #last-edited-list {
42         float: left;
43         max-width: 35%;
44         margin-left: 5%;
45 }
46
47 #last-edited-list ul {
48         margin: 0px;
49 }
50
51 #last-edited-list li {
52         margin-bottom: 1em;
53 }
54
55 #last-edited-list .date {
56         font-size: 70%;
57         color: grey;
58 }
59
60 a, a:visited, a:active {
61         color: blue;
62         text-decoration: none;
63 }
64
65 a:hover {
66         text-decoration: underline;
67 }
68
69
70 #loading-overlay {
71         display: none;
72 }
73
74 .error {
75     color: red;
76     font-weight: bold;
77 }
78
79 .success {
80     color: green;
81 }
82
83 #error-list {
84     color: red;
85 }
86
87 #skipped-list {
88     color: #666;
89 }
90
91 .chunkno {
92     font-size: .7em;
93 }
94
95 td {
96     vertical-align: top;
97 }
98 .chunk-list {
99     padding-left: 2em;
100 }
101
102
103 .fix {
104     border: 1px solid gray;
105     font-size: 0.7em;
106     padding: 3px;
107 }
108
109 .fix-info {
110     font-size: 0.7em;
111     font-style: italic;
112 }
113
114 .chunk-plain a {color: gray;}
115 .chunk-xml a {color: gray; font-style: italic;}
116 .chunk-wl-broken a {color: red;}
117 .chunk-wl a {color: green;}
118 .chunk-wl-fix a {color: black;}
119
120
121 /* Big cheesy publish button */
122 #publish-button {
123         color: black;
124         border: 2px solid black; 
125         border-radius: 20px;
126         box-shadow: 0px 0px 15px #88f;
127         /*moz-border-radius: 20px;
128         -moz-box-shadow: 10px 10px 5px #888;*/
129         font-size:1.5em; 
130         padding: 1em; 
131         background: -moz-linear-gradient(top,  #fff,  #44f);
132         -moz-transition: all 0.5s ease-in-out;        
133         margin: 20px;
134 }
135
136 #publish-button:hover {
137     -moz-transition: all 0.5s ease-in-out;        
138     -moz-transform: scale(1.1);
139     background: -moz-linear-gradient(top,  #fff,  #88f);
140     -moz-box-shadow: 0px 0px 30px #ff8;
141 }
142
143 #publish-button:active {
144     background: -moz-linear-gradient(top,  #88f,  #fff);
145 }