Use straight logo, show desaturated logo when no Sone is logged in.
[Sone.git] / src / main / resources / static / css / sone.css
1 /* Sone Main CSS File */
2
3 /* first, override some fproxy rules. */
4 #sone .post .reply div,#sone .post .time,#sone .post .delete,#sone .post .show-reply-form
5         {
6         font-size: inherit;
7 }
8
9 #sone form {
10         margin: 0px;
11 }
12
13 /* now for the real stuff. */
14
15 #sone {
16         width: 68em;
17         margin: auto;
18 }
19
20 #sone .hidden {
21         display: none;
22 }
23
24 #sone a, #sone a:link, #sone a:visited {
25         color: rgb(28, 131, 191);
26         font-size: inherit;
27         text-decoration: none;
28 }
29
30 #sone a:active, #sone a:hover {
31         color: rgb(255, 172, 0);
32 }
33
34 #sone #sidebar {
35         width: 200px;
36         position: absolute;
37 }
38
39 #sone .profile-link {
40         font-weight: bold;
41         color: rgb(28, 131, 191);
42 }
43
44 #sone #profile.online .picture {
45         float: left;
46         background-image: url("../images/sone.png");
47         width: 80px;
48         height: 80px;
49 }
50
51 #sone #profile.offline .picture {
52         float: left;
53         background-image: url("../images/sone-offline.png");
54         width: 80px;
55         height: 80px;
56 }
57
58 #sone #profile.offline .edit-profile-link, #sone #profile.offline .profile-link {
59         display: none;
60 }
61
62 #sone #profile .edit-profile-link {
63         font-size: 85%;
64 }
65
66 #sone .nice-name {
67         font-weight: bold;
68 }
69
70 #sone #main {
71         margin-left: 200px;
72         padding-left: 1em;
73 }
74
75 #sone .post {
76         padding: 1ex 0px;
77         border-bottom: solid 1px #ccc;
78         margin-bottom: 1ex;
79 }
80
81 #sone .post .author {
82         display: inline;
83         font-weight: bold;
84 }
85
86 #sone .post .text {
87         display: inline;
88         white-space: pre-wrap;
89 }
90
91 #sone .post .status-line {
92         clear: both;
93         font-size: 85%;
94 }
95
96 #sone .post .time {
97         display: inline;
98         color: #666;
99 }
100
101 #sone .post .delete {
102         display: inline;
103 }
104
105 #sone .post .delete:before {
106         content: ' ‧ ';
107 }
108
109 #sone .post .replies {
110         clear: both;
111         padding-top: 0.2ex;
112 }
113
114 #sone .post .reply {
115         clear: both;
116         background-color: #eef;
117         font-size: 85%;
118         margin: 1ex 0px;
119         padding: 1ex;
120 }
121
122 #sone .post .reply .time {
123         float: none;
124         display: inline;
125         color: #666;
126         font-size: inherit;
127 }
128
129 #sone .post .show-reply-form {
130         display: inline;
131         color: rgb(28, 131, 191);
132         cursor: pointer;
133 }
134
135 #sone .post .show-reply-form:hover {
136         color: rgb(255, 172, 0);
137 }
138
139 #sone .post .show-reply-form:before {
140         content: ' ‧ ';
141 }
142
143 #sone .post .reply .status-line .delete {
144         float: none;
145         display: inline;
146 }
147
148 #sone .post .reply .status-line .delete:before {
149         content: ' · ';
150 }
151
152 #sone .post .create-reply {
153         clear: both;
154         background-color: #eef;
155         padding: 0.5ex;
156 }
157
158 #sone .post .create-reply.light button {
159         display: none;
160 }
161
162 #sone .sone .profile-link {
163         display: inline;
164 }
165
166 #sone .sone .request-uri {
167         display: inline;
168 }
169
170 #sone .sone .unknown-marker, #sone .sone .download-marker, #sone .sone .insert-marker, #sone .sone .idle-marker, #sone .sone .modified-marker {
171         display: none;
172 }
173
174 #sone .sone.unknown .unknown-marker {
175         display: inline;
176 }
177
178 #sone .sone.idle .idle-marker {
179         display: inline;
180 }
181
182 #sone .sone.downloading .download-marker {
183         display: inline;
184 }
185
186 #sone .sone.inserting .insert-marker {
187         display: inline;
188 }
189
190 #sone .sone.modified .modified-marker {
191         display: inline;
192 }
193
194 #sone .sone .last-update {
195         display: inline;
196 }
197
198 #sone .sone .modified-marker, #sone .sone .unknown-marker {
199         color: red;
200         font-weight: bold;
201 }
202
203 #sone .sone form.block button, #sone .sone form.unblock button, #sone .sone form.follow button, #sone .sone form.unfollow button {
204         display: inline;
205         color: rgb(28, 131, 191);
206         background: none;
207         border: none;
208         font: inherit;
209         padding: 0px;
210 }
211
212 #sone .sone form.block button:hover, #sone .sone form.unblock button:hover, #sone .sone form.follow button:hover, #sone .sone form.unfollow button:hover {
213         display: inline;
214         color: rgb(255, 172, 0);
215 }
216
217 #sone .sone form {
218         display: inline;
219 }
220
221 #sone h1 {
222         font-family: inherit;
223         font-size: 200%;
224         font-weight: bold;
225 }
226
227 #sone .error label {
228         color: red;
229         font-weight: bold;
230 }
231
232 #sone input.createpost.default, input.reply-input.default {
233         color: #888;
234 }