Begin bootstapify.
[redakcja.git] / src / 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: #eee;
11 }
12
13 img {
14     border: 0;
15 }
16
17 .editable td {
18     padding: 1px;
19 }
20 .editable input, .editable select, .editable textarea {
21     width: 400px;
22 }
23 .editable .number-input {
24     width: 100px;
25 }
26
27
28 #last-edited-list ul {
29         margin: 0px;
30 }
31
32 #last-edited-list li {
33         margin-bottom: 1em;
34 }
35
36 #last-edited-list .date {
37         font-size: 70%;
38         color: #808080;
39 }
40
41
42
43 .error {
44     color: red;
45     font-weight: bold;
46 }
47
48 .success {
49     color: green;
50 }
51
52 #error-list {
53     color: red;
54 }
55
56 #skipped-list {
57     color: #666;
58 }
59
60 /* Big cheesy publish button */
61 #publish-button {
62         color: black;
63         border: 2px solid black; 
64         border-radius: 20px;
65         box-shadow: 0px 0px 15px #88f;
66         /*moz-border-radius: 20px;
67         -moz-box-shadow: 10px 10px 5px #888;*/
68         font-size:1.5em; 
69         padding: 1em; 
70         background: -moz-linear-gradient(top,  #fff,  #44f);
71         -moz-transition: all 0.5s ease-in-out;        
72         margin: 20px;
73 }
74
75 #publish-button:hover {
76     -moz-transition: all 0.5s ease-in-out;        
77     -moz-transform: scale(1.1);
78     background: -moz-linear-gradient(top,  #fff,  #88f);
79     -moz-box-shadow: 0px 0px 30px #ff8;
80 }
81
82 #publish-button:active {
83     background: -moz-linear-gradient(top,  #88f,  #fff);
84 }
85
86
87 /* book list */
88
89 .book-search-column input {
90     width: 96%;
91 }
92
93 .book-list-user .user-column {
94     display: none;
95 }
96
97
98 /* wall */
99 .wall {
100     padding-left: 0;
101     list-style: none;
102 }
103
104 .wall li {
105     clear: left;
106     border-top: 1px dotted gray;
107     padding: 0 1em 2em 1em;
108     margin-bottom: 0;
109 }
110
111 .wall .gravatar {
112     float: left;
113     margin-right: 1em;
114     margin-left: -1em;
115 }
116 .wall h3 {
117     font-size: 1.25em;
118     margin-top: 0;
119 }
120
121 .wall .time {
122     /* float:right; */
123 }
124
125 .wall .anonymous {
126     background-color: #efa;
127 }
128
129 .wall .comment {
130     background-color: #dfc;
131 }
132
133 .wall .publish {
134     background-color: #fdc;
135 }
136
137 div.cover-preview {
138         width: 216px;
139         min-height: 300px;
140         float: left;
141         margin-right: 2em;
142 }
143
144 img.cover-preview {
145         width: 216px;
146         height: 300px;
147 }