]> git.mxchange.org Git - friendica.git/blob - view/theme/dispy-dark/style.css
Merge pull request #119 from simonlnu/master
[friendica.git] / view / theme / dispy-dark / style.css
1 /*
2  * dispy-dark
3  *
4  * modernised, sort of, by simon <http://simon.kisikew.org/>
5  *
6  */
7
8 /* from html5boilerplate */
9
10 /* these are to tell browsers they should be displayed a certain way */
11 article, aside, details, figcaption, figure, footer,
12 header, hgroup, nav, section {
13     display: block;
14 }
15 audio, canvas, video, time {
16     display: inline-block;
17     *display: inline;
18     *zoom: 1;
19 }
20 audio:not([controls]) {
21     display: none;
22 }
23 [hidden] {
24     display: none;
25 }
26
27 /* 
28  *  Base
29  */
30
31 /*
32  * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
33  * 2. Force vertical scrollbar in non-IE
34  * 3. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
35  */
36
37 html {
38     font-size: 100%;
39     overflow-y: scroll;
40     -webkit-text-size-adjust: 100%;
41     -ms-text-size-adjust: 100%;
42 }
43 body {
44     margin: 0;
45     font-size: 16px;
46     line-height: 1.1em;
47 }
48 body, button, input, select, textarea {
49     font-family: sans-serif;
50     color: #eec;
51         /*background-color: #2e3436;*/
52         background-color: #2e2f2e;
53 }
54 select {
55         border: 1px #555 dotted;
56         padding: 3px;
57         margin: 2px;
58 }
59 option {
60         padding: 3px;
61         vertical-align: middle;
62 }
63 /* remember to define focus styles! */
64 :focus {
65     outline: 0;
66 }
67
68 /* remember to highlight inserts somehow! */
69 ins {
70     background-color: #2e302e;
71     color: #ff9;
72     text-decoration: none;
73 }
74 mark {
75     background-color: #2e302e;
76     color: #ff9;
77     font-style: italic;
78     font-weight: bold;
79 }
80 /* Redeclare monospace font family: h5bp.com/j */
81 pre, code, kbd, samp, .wall-item-body code {
82     font-family: monospace, monospace;
83     _font-family: 'courier new', monospace;
84     font-size: 1em; }
85
86 /* Improve readability of pre-formatted text in all browsers */
87 pre, .wall-item-body code {
88     white-space: pre;
89     white-space: pre-wrap;
90     word-wrap: break-word;
91 }
92
93 q {
94     quotes: none;
95 }
96 q:before, q:after {
97     content: "";
98     content: none;
99 }
100 small {
101     font-size: 85%;
102 }
103
104 /* Position subscript and superscript content without affecting line-height: h5bp.com/k */
105 sub, sup {
106     font-size: 75%;
107     line-height: 0;
108     position: relative;
109     vertical-align: baseline;
110 }
111 sup {
112     top: -0.5em;
113 }
114 sub {
115     bottom: -0.25em;
116 }
117 img {
118     border: 0 none;
119     /*vertical-align: middle;*/
120 }
121 a {
122     color: #88a9d2;
123     text-decoration: none;
124     margin-bottom: 1px;
125         text-decoration: none;
126 }
127 /*a:hover {                 */
128 /*    text-decoration: none;*/
129 /*}*/
130 a:hover img {
131     text-decoration: none;
132 }
133 blockquote {
134     background: #444;
135         color: #eec;
136     text-indent: 5px;
137     padding: 5px;
138     border: 1px #aaa solid;
139     border-radius: 5px;
140 }
141 a:hover {
142     color: #729fcf;
143     padding-bottom: 0;
144     border-bottom: 1px dotted #729fcf;
145 }
146 .required {
147     display: inline;
148     color: #ff0;
149     font-size: 16px;
150     font-weight: bold;
151     margin: 3px;
152 }
153 .fakelink, .lockview {
154     color: #729fcf;
155     cursor: pointer;
156 }
157 .fakelink:hover {
158     color: #729fcf;
159 }
160 input[type=submit] {
161         font-weight: bold;
162     background-color: #eee;
163         color: #2e302e;
164     margin-top: 10px;
165     height: 22px;
166     -webkit-border-radius: 5px;
167     -moz-border-radius: 5px;
168     border-radius: 5px;
169     border: 0;
170 }
171 .smalltext {
172     font-size: 0.7em;
173 }
174 #panel {
175         position: absolute;
176         font-size: 0.8em;
177         -webkit-border-radius: 5px;
178         -moz-border-radius: 5px;
179         border-radius: 5px;
180         border: 1px solid #fff;
181         background-color: #2e302e;
182         color: #eeeeec;
183         padding: 1em;
184 }
185 .pager {
186         margin-top: 60px;
187         display: block;
188         clear: both;
189         text-align: center;
190 }
191 .pager span {
192     padding: 4px;
193     margin: 4px;
194 }
195 .pager_current {
196     background-color: #729fcf;
197     color: #fff;
198 }
199
200 /**
201  * global
202  */
203 /* .tool .action */
204 .action {
205     float: right;
206 }
207
208 /**
209  *      login
210  */
211 #login-extra-links a {
212     margin-right: 20px;
213 }
214
215 /*********
216 * nav
217 *********/
218 nav {
219         height: 60px;
220         display: block;
221         background-color: #1d1f1d;
222         color: #eeeeec;
223         position: relative;
224         padding: 20px 20px 10px 95px;
225     margin-left: auto;
226     margin-right: auto;
227 }
228 nav a {
229         text-decoration: none;
230         color: #eeeeec;
231         border: 0px;
232 }
233 nav a:hover {
234         text-decoration: none;
235         color: #eeeeec;
236     border: 0px;
237 }
238 nav #banner {
239         display: block;
240         position: absolute;
241         left: 51px;
242         top: 25px;
243 }
244 nav #banner #logo-text a {
245         font-size: 40px;
246         font-weight: bold;
247         margin-left: 3px;
248 }
249 nav #user-menu {
250     display: block;     
251     width: auto;
252     float: right;
253     margin: 3px 68px 0 0;
254     position: relative;
255         background-color: #555753;
256     -webkit-border-radius: 5px;
257     -moz-border-radius: 5px;
258     border-radius: 5px;
259     background: #555753 url("menu-user-pin.jpg") 98% center no-repeat;
260     clear: both;
261 }
262 nav #user-menu-label {
263         float: left;
264         font-size: 12px;
265     padding: 3px 20px 9px 5px;
266     height: 10px;
267 }
268 ul#user-menu-popup {
269         display: none;
270         position: absolute;
271         background-color: #555753;
272         width: 100%;
273     padding: 10px 0px;
274     margin: 0px;
275         top: 20px;
276         left: 0;
277         -webkit-border-radius: 0 0 5px 5px;
278         -moz-border-radius: 0 0 5px 5px;
279         border-radius: 0 0 5px 5px;
280         z-index: 10000;
281 }
282 ul#user-menu-popup li {
283         display: block;
284 }
285 ul#user-menu-popup li a {
286         display: block;
287         padding: 5px;
288 }
289 ul#user-menu-popup li a:hover {
290         color: #2e302e;
291         background-color: #eeeeec;
292 }
293 ul#user-menu-popup li a.nav-sep {
294         border-top: 1px solid #eeeeec;
295 }
296 #nav-buttons {
297     clear: both;
298         list-style: none;
299         padding: 0px;
300 }
301 #nav-buttons li {
302         padding: 0;
303 }
304 nav .nav-link {
305         float: right;
306         display: block;
307         width: 22px;
308         height: 22px;
309         overflow: hidden;
310         margin: 0px 5px 5px;
311         text-indent: 50px;
312         background: transparent url(icons.png) 0 0 no-repeat;
313 }
314 #nav-apps-link {
315         background-position: 0 -66px;
316 }
317 #nav-apps-link:hover {
318         background-position: -22px -66px;
319 }
320 #nav-community-link {
321     background-position: 0 -22px;
322 }
323 #nav-community-link:hover {
324     background-position: -22px -22px;
325 }
326 #nav-contacts-link {
327     background-position: 0 -22px;
328 }
329 #nav-contacts-link:hover {
330     background-position: -22px -22px;
331 }
332 #nav-directory-link {
333         background-position: -44px -154px;
334 }
335 #nav-directory-link:hover {
336         background-position: -66px -154px;
337 }
338 #nav-help-link {
339         background-position: 0 -110px;
340 }
341 #nav-help-link:hover {
342         background-position: -22px -110px;
343 }
344 #nav-home-link {
345     background-position: -44px -132px;
346 }
347 #nav-home-link:hover {
348     background-position: -66px -132px;
349 }
350 #nav-intro-link {
351         background-position: 0px -190px;
352 }
353 #nav-intro-link:hover {
354         background-position: -44px -190px;
355 }
356 #nav-login-link {
357         background-position: 0 -88px;
358 }
359 #nav-login-link:hover {
360         background-position: -22px -88px;
361 }
362 #nav-logout-link {
363         background-position: 0 -88px;
364 }
365 #nav-logout-link:hover {
366         background-position: -22px -88px;
367 }
368 #nav-messages-link {
369     background-position: -44px -88px;
370 }
371 #nav-messages-link:hover {
372     background-position: -66px -88px;
373 }
374 #nav-notify-link, #nav-notifications-linkmenu {
375     background-position: -44px -110px;
376 }
377 #nav-notify-link:hover {
378     background-position: -66px -110px;
379 }
380 #nav-network-link {
381     background-position: 0px -177px;
382 }
383 #nav-network-link:hover {
384     background-position: -22px -177px;
385 }
386 #nav-search-link {
387         background-position: 0 -44px;
388 }
389 #nav-search-link:hover {
390         background-position: -22px -44px;
391 }
392 #profile-link,
393 #profile-title, 
394 #wall-image-upload,
395 #wall-file-upload,
396 #profile-attach-wrapper,
397 #profile-audio,
398 #profile-link,
399 #profile-location,
400 #profile-nolocation,
401 #profile-title,
402 #jot-title,
403 #profile-upload-wrapper,
404 #profile-video,
405 #profile-jot-submit,
406 #wall-image-upload-div,
407 #wall-file-upload-div,
408 .icon, .hover, .focus, .pointer {
409     cursor: pointer;
410 }
411 #notifications {
412         height: 20px;
413         width: 100%;
414         position: absolute;
415         top: -19px;
416         left: 0;
417 }
418 /* popup notifications */
419 div.jGrowl div.notice {
420     background: #511919 url("../../../images/icons/48/notice.png") no-repeat 5px center;
421     color: #ffffff;
422     padding-left: 58px;
423 }
424 div.jGrowl div.info {
425     background: #364e59 url("../../../images/icons/48/info.png") no-repeat 5px center;
426     color: #ffffff;
427     padding-left: 58px;
428 }
429 #nav-notifications-menu {
430     margin: 30px 0 0 -45px;
431     width: 300px;
432     max-height: 400px;
433     overflow: auto;
434     font-size: 9pt;
435 }
436 #nav-notifications-menu .contactname {
437     font-weight: bold;
438     font-size: 0.9em;
439 }
440 #nav-notifications-menu img {
441     float: left;
442     margin-right: 5px;
443 }
444 #nav-notifications-menu .notif-when {
445     font-size: 0.8em;
446     display: block;
447 }
448 #nav-notifications-menu li {
449     padding: 7px 0px 7px 10px;
450     word-wrap: normal;
451     border-bottom: 1px solid #000;
452 }
453 #nav-notifications-menu li:hover {
454     color: black;
455 }
456 #nav-notifications-menu a:hover {
457     color: black;
458     text-decoration: underline;
459 }
460 nav #nav-notifications-linkmenu.on .icon.s22.notify, nav #nav-notifications-linkmenu.selected .icon.s22.notify {
461   background-image: url("../../../images/icons/22/notify_on.png");
462 }
463 .show {
464     display: block;
465 }
466 #nav-floater {
467     position: fixed;
468     top: 20px;
469     right: 1%;
470     padding: 5px;
471     background: #1d1f1d;
472         color: transparent;
473     border-radius: 5px;
474     z-index: 100;
475 }
476 .floaterflip {
477         display: block;
478     position: fixed;
479     z-index: 110;
480     top: 53px;
481     right: 19px;
482         width: 22px;
483         height: 22px;
484         overflow: hidden;
485         margin: 0px;
486         background: transparent url(icons.png) -190px -60px no-repeat; 
487 }
488 .nav-ajax-update, .nav-ajax-left {
489         width: 30px;
490         height: 19px;
491         background: transparent url(notifications.svg) 0 0 no-repeat;
492         color: #222;
493         font-weight: bold;
494         font-size: 0.8em;
495         padding-top: 0.2em;
496         text-align: center;
497         float: left;
498         margin: 0 -1px 0 3px;
499         display: block;
500         visibility: hidden;
501 }
502 .nav-ajax-update.show, .nav-ajax-left.show {
503     visibility: visible;
504 }
505 #net-update {
506         background-position: 0px 0px;
507 }
508 #mail-update {
509         background-position: -30px 0;
510 }
511 #notify-update {
512         background-position: -60px 0px;
513 }
514 #home-update {
515         background-position: -90px 0px;
516 }
517 #intro-update {
518         background-position: -120px 0px;
519 }
520 #lang-select-icon {
521         cursor: pointer;
522         position: absolute;
523         left: 0;
524         top: 0;
525 }
526 #language-selector {
527     position: absolute;
528     top: 0;
529     left: 16px;
530 }
531 .menu-popup {
532     position: absolute;
533     display: none;
534     width: 11em;
535     background: #ffffff;
536     color: #2d2d2d;
537     margin: 0px;
538     padding: 0px;
539     list-style: none;
540     border: 3px solid #364e59;
541     z-index: 100000;
542     -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
543     -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
544     box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
545 }
546 .menu-popup a {
547     display: block;
548     color: #2d2d2d;
549     padding: 5px 10px;
550     text-decoration: none;
551 }
552 .menu-popup a:hover {
553     background-color: #bdcdd4;
554 }
555 .menu-popup .menu-sep {
556     border-top: 1px solid #9eabb0;
557 }
558 .menu-popup li {
559     float: none;
560     overflow: auto;
561     height: auto;
562     display: block;
563 }
564 .menu-popup li img {
565     float: left;
566     width: 16px;
567     height: 16px;
568     padding-right: 5px;
569 }
570 .menu-popup .empty {
571     padding: 5px;
572     text-align: center;
573     color: #9eabb0;
574 }
575 .notif-item {
576     font-size: small;
577 }
578 .notif-item a {
579     vertical-align: middle;
580 }
581 .notif-image {
582     width: 32px;
583     height: 32px;
584     padding: 7px 7px 0px 0px;
585 }
586 .notify-seen {
587     background: #ddd;
588 }
589
590 /** sysmsg **/
591 #sysmsg_info {
592         position:fixed;
593         bottom:0;
594         -moz-box-shadow:0 0 5px #888;
595         -webkit-box-shadow:0 0 5px #888;
596         box-shadow:0 0 5px #888;
597     padding: 10px;
598         background-color:#fcaf3e;
599         border:2px solid #f8911b;
600         border-bottom:0;
601         padding-bottom: 50px;
602         z-index: 1000;
603 }
604 #sysmsg {
605         position: fixed;
606         bottom: 0;
607         -moz-box-shadow: 0 0 5px #888;
608         -webkit-box-shadow: 0 0 5px #888;
609         box-shadow: 0 0 5px #888;
610     padding: 10px;
611         background-color: #fcaf3e;
612         border: 2px solid #f8911b;
613         border-bottom: 0;
614         padding-bottom: 50px;
615         z-index: 1000;
616 }
617 #sysmsg_info br,
618 #sysmsg br {
619         display: block;
620         margin: 2px 0px;
621         border-top: 1px solid #ccccce;
622 }
623
624
625 /**
626 * aside
627 **/
628 aside {
629     position: absolute;
630     right: 15px;
631     width: 245px;
632         padding-top: 15px;
633     font-size: smaller;
634 }
635 .vcard .fn {
636         font-size: 1.7em;
637         font-weight: bold;
638         border-bottom: 1px solid #729fcf;
639         padding-bottom: 3px;
640 }
641 .vcard #profile-photo-wrapper {
642         margin: 20px;
643 }
644 /* http://css-tricks.com/snippets/css/css-box-shadow/
645  * box-shadow:
646  * 1. The horizontal offset of the shadow, positive means
647  * the shadow will be on the right of the box, a negative
648  * offset will put the shadow on the left of the box.
649  * 2. The vertical offset of the shadow, a negative one
650  * means the box-shadow will be above the box, a
651  * positive one means the shadow will be below the box.
652  * 3. The blur radius (optional), if set to 0 the shadow
653  * will be sharp, the higher the number, the more blurred
654  * it will be.
655  * 4. The spread radius (optional), positive values increase
656  * the size of the shadow, negative values decrease the size.
657  * Default is 0 (the shadow is same size as blur).
658  * 5. Colo[u]r
659  */
660 .vcard #profile-photo-wrapper img {
661         box-shadow: 3px 3px 10px 0 #000;
662 }
663 aside h4 {
664         font-size: 1.2em;
665 }
666 aside #viewcontacts {
667         text-align: right;
668 }
669 .aprofile dt {
670     box-shadow: 1px 1px 5px 0;
671     color: #666666;
672     margin: 15px 0 5px;
673     padding-left: 5px;
674 }
675 #profile-extra-links ul {
676         margin-left: 0px;
677     padding-left: 0px;
678     list-style: none;
679 }
680 #dfrn-request-link {
681         background:#3465A4 url(connect.png) no-repeat 95% center;
682         border-radius:5px 5px 5px 5px;
683         color:#fff;
684         display:block;
685         font-size:1.2em;
686         padding:.2em .5em;
687 }
688 #netsearch-box {
689         margin: 30px 0px;
690 }
691
692
693 /**
694 * contacts block
695 */
696 .contact-block-div {
697     width: 50px;
698     height: 50px;
699     float: left;
700 }
701 .contact-block-textdiv {
702     width: 150px;
703     height: 34px;
704     float: left;
705 }
706 #contact-block-end {
707     clear: both;
708 }
709
710
711 /**
712  * jot
713  **/
714 #jot {
715   /*width: 785px;*/
716   margin: 10px 0 20px 0px;
717   width: 100%;
718 }
719 #jot #jot-tools {
720   margin: 0px;
721   padding: 0px;
722   height: 35px;
723   overflow: none;
724   width: 100%;
725   /*background-color: #0e232e;*/
726   /*border-bottom: 2px solid #9eabb0;*/
727 }
728 #jot #jot-tools span {
729     float: left;
730     margin: 10px 20px 2px 0px;
731 }
732 #jot #jot-tools span a {
733     display: block;
734 }
735 #jot #jot-tools .perms {
736     float: right;
737     width: 40px;
738 }
739 #jot #jot-tools li.loading {
740     float: right;
741     background-color: #ffffff;
742     width: 20px;
743     vertical-align: center;
744     text-align: center;
745     border-top: 2px solid #9eabb0;
746     height: 38px;
747 }
748 #jot #jot-tools li.loading img {
749     margin-top: 10px;
750 }
751 #jot #jot-title {
752         border: 1px solid #ccc;
753     margin: 0 0 5px;
754     height: 20px;
755     width: 90%;
756     font-weight: bold;
757     border-radius: 5px;
758         vertical-align: middle;
759 }
760 #jot #character-counter {
761         width: 6%;
762         float: right;
763         text-align: right;
764         height: 15px;
765         line-height: 20px;
766         padding: 2px 20px 5px 0;
767 }
768 #profile-jot-text_tbl {
769         margin-bottom: 10px;
770 }
771 #profile-jot-text_ifr {
772         width:99.900002% !important;
773 }
774 #profile-attach-wrapper,
775 #profile-audio-wrapper,
776 #profile-link-wrapper,
777 #profile-location-wrapper,
778 #profile-nolocation-wrapper,
779 #profile-title-wrapper,
780 #profile-upload-wrapper,
781 #profile-video-wrapper {
782     float: left;
783         margin: 0 20px 0 0;
784 }
785 #profile-rotator-wrapper {
786         float: right; 
787 }
788 #profile-jot-tools-end,
789 #profile-jot-banner-end {
790         clear: both;
791 }
792 #profile-jot-email-wrapper {
793         margin:10px 10% 0;
794         border:1px solid #555753;
795         border-bottom:0;
796 }
797 #profile-jot-email-label {
798         background-color:#555753;
799         color:#ccccce;
800         padding:5px;
801 }
802 #profile-jot-email {
803         width:90%;
804         margin:5px;
805 }
806 #profile-jot-networks {
807         margin: 0 10%;
808         border: 1px solid #555753;
809         border-top: 0;
810         border-bottom: 0;
811         padding: 5px;
812 }
813 #jot-preview-link {
814     margin: 0 0 0 10px;
815     border: 0;
816     text-decoration: none;
817         float: right;
818 }
819 .icon-text-preview {
820         margin: 0 0 -18px 0;
821         display: block;
822     width: 20px;
823     height: 20px;
824     background: url(icons.png) no-repeat -128px -40px;
825     border: 0;
826     text-decoration: none;
827         float: right;
828 }
829 #profile-jot-perms { 
830         float: right;
831     background-color: #555753;
832     height: 22px;
833     width: 20px;
834     -webkit-border-radius: 5px 0px 0px 5px;
835     -moz-border-radius: 5px 0px 0px 5px;
836     border-radius: 5px 0px 0px 5px;     
837     overflow: hidden;
838     border: 0px;
839     margin: 0 -4px 0 10px;
840 }
841 #profile-jot-plugin-wrapper {
842         width: 1px;
843         margin: 10px 0 0 0;
844         float: right;
845 }
846 #profile-jot-submit-wrapper {
847         float: right;
848         width: 100%;
849         list-style: none;
850         margin: 10px 0 0 0;
851         padding: 0;
852 }
853 #profile-jot-submit {
854         height: 22px;
855         background-color: #555753;
856         color: #eeeeec;
857         -webkit-border-radius: 0 5px 5px 0;
858         -moz-border-radius: 0 5px 5px 0;
859         border-radius: 0 5px 5px 0;
860         border: 0;
861         margin: 0;
862         float: right;
863 }
864 #jot-perms-icons {
865         background-color: #555753;
866         height: 22px;
867         width: 20px;
868         -webkit-border-radius: 0 5px 5px 0;
869         -moz-border-radius: 0 5px 5px 0;
870         border-radius: 0 5px 5px 0;
871         overflow: hidden;
872         border: 0;
873         margin: 0 0 0 94.4%;
874 }
875 #profile-jot-acl-wrapper {
876         margin: 0 10px;
877         border: 1px solid #555753;
878         border-top: 0;
879         display: block !important;
880 }
881 #group_allow_wrapper,
882 #group_deny_wrapper,
883 #acl-permit-outer-wrapper {
884         width:47%;
885         float:left;
886 }
887 #contact_allow_wrapper,
888 #contact_deny_wrapper,
889 #acl-deny-outer-wrapper {
890         width:47%;
891         float:right;
892 }
893 #acl-permit-text {
894         background-color: #555753;
895         color: #ccccce;
896         padding: 5px;
897         float: left;
898 }
899 #jot-public {
900         background-color: #555753;
901         color: #ff0000;
902         padding: 5px;
903         float: left;
904 }
905 #acl-deny-text {
906         background-color: #555753;
907         color: #ccccce;
908         padding: 5px;
909         float: left;
910 }
911 #acl-permit-text-end,
912 #acl-deny-text-end {
913         clear: both;
914 }
915 #jot-title-desc {
916         color: #cccccc;
917 }
918 #profile-jot-desc {
919         color: #a00;
920 }
921 #jot-title-wrapper {
922         margin-bottom: 5px;
923 }
924 #jot-title-display {
925         font-weight: bold;
926 }
927 .jothidden {
928     display: none;
929 }
930 #jot-preview-content {
931     background-color: #ffffe0;
932     border: 1px #aaaa00 solid;
933     border-radius: 3px;
934     padding: 3px 3px 6px 10px;
935 }
936
937
938 /**
939  * section
940  */
941 section {
942     margin: 20px 6% 0 4%;
943     font-size: 0.8em;
944     padding-right: 230px;
945         min-width: 475px;
946 }
947
948 /** tabs **/
949 .tabs {
950     list-style: none;
951     margin: 10px 0 10px;
952     padding: 0;
953     border-bottom: 1px solid #729fcf;
954     font-size: 14px;
955 }
956 .tabs li {
957     display: inline;
958 }
959 .tab {
960     padding: 0 5px;
961 }
962 .tab:hover {
963     background-color: #88a9d2;
964     color: #111;
965     border: 0px;
966 }
967 .tab:active {
968     background-color: #88a9d2;
969     color: #111;
970     border: 0px;
971 }
972 .tab.active {
973         background-color: #88a9d2;
974     color: #111;
975 }
976
977 /**
978  *      items
979  */
980 .wall-item-outside-wrapper {
981         border: 1px solid #aaa;
982         border-radius: 5px;
983 }
984 .wall-item-outside-wrapper.comment {
985         margin-top: 5px;
986 }
987 .wall-item-outside-wrapper-end {
988     clear: both;
989 }
990 .wall-item-content-wrapper {
991     position: relative;
992         padding: 10px;
993         width: auto;
994 }
995 .wall-item-outside-wrapper .wall-item-comment-wrapper {
996     /*margin-left: 90px;*/
997 }
998 .shiny {
999     background: #2e3436;
1000 }
1001 .wall-item-content {
1002         overflow-x: auto;
1003 }
1004 /* removing it from here, vs. putting it in .wall-item-content
1005  * might break things for people. we shall see ;) */
1006 [id^="tread-wrapper"], [class^="tread-wrapper"] {
1007     margin: 15px 0 0 0;
1008     padding: 0px;
1009         /*overflow-x: auto;*/
1010 }
1011 .wall-item-photo-menu {
1012     display: none;
1013 }
1014 .wall-item-photo-menu-button {
1015     display:none;
1016     text-indent:-99999px;
1017     background:#555753 url(menu-user-pin.jpg) no-repeat 75px center;
1018     position:absolute;
1019     overflow:hidden;
1020     height:20px;
1021     width:90px;
1022     top:85px;
1023     left:0;
1024     -webkit-border-radius:0 0 5px 5px;
1025     -moz-border-radius:0 0 5px 5px;
1026     border-radius:0 0 5px 5px;
1027 }
1028 .wall-item-info {
1029     float: left;
1030     width: 110px;
1031 }
1032 .wall-item-photo-wrapper {
1033     width: 80px;
1034     height: 80px;
1035     position: relative;
1036     padding: 5px;
1037     background-color: #555753;
1038     -webkit-border-radius: 5px;
1039     -moz-border-radius: 5px;
1040     border-radius: 5px;
1041 }
1042 [class^="wall-item-tools"] > *, [class^="wall-item-tools"] > * > * {
1043         margin: 0 0 5px 0;
1044 }
1045 .wall-item-tools {
1046     float: right;
1047     filter: alpha(opacity=35);
1048     opacity: 0.4;
1049     -webkit-transition: all 1s ease-in-out;
1050     -moz-transition: all 1s ease-in-out;
1051     -o-transition: all 1s ease-in-out;
1052     -ms-transition: all 1s ease-in-out;
1053     transition: all 1s ease-in-out;
1054 }
1055 .wall-item-tools:hover {
1056     filter: alpha(opacity=100);
1057     opacity: 1;
1058     -webkit-transition: all 1s ease-in-out;
1059     -moz-transition: all 1s ease-in-out;
1060     -o-transition: all 1s ease-in-out;
1061     -ms-transition: all 1s ease-in-out;
1062     transition: all 1s ease-in-out;
1063 }
1064 .wall-item-title {
1065         font-size: 1.2em;
1066         font-weight: bold;
1067     margin-bottom: 1em;
1068 }
1069 .wall-item-body {
1070         margin: 10px 10px 10px 0px;
1071     text-align: left;
1072 }
1073 .wall-item-lock-wrapper {
1074         float: right;
1075 }
1076 .wall-item-dislike,
1077 .wall-item-like {
1078         clear: left;
1079         font-size: 0.8em;
1080         color: #878883;
1081         margin: 5px 0 5px 120px;
1082 }
1083 .wall-item-author, .wall-item-actions-author {
1084         clear: left;
1085         font-size: 0.8em;
1086         color: #878883;
1087         margin: 20px 0 0 110px;
1088 }
1089 .wall-item-ago {
1090         display: inline;
1091         padding-left: 10px;
1092 }
1093 .wall-item-wrapper-end {
1094         clear:both;
1095 }
1096 .wall-item-location {
1097     margin-top: 15px;
1098     width: 100px;
1099     overflow: hidden;
1100     text-overflow: ellipsis;
1101     -o-text-overflow: ellipsis;
1102 }
1103 .wall-item-location .icon {
1104     float: left;
1105 }
1106 .wall-item-location > a {
1107     margin-left: 25px;
1108     font-size: 0.7em;
1109     display: block;
1110 }
1111 .wall-item-location .smalltext {
1112     margin-left: 25px;
1113     font-size: 0.7em;
1114     display: block;
1115 }
1116 .wall-item-location > br {
1117     display: none;
1118 }
1119 .wallwall .wwto {
1120     left: 5px;
1121     margin: 0;
1122     position: absolute;
1123     top: 75px;
1124     width: 30px;
1125     z-index: 10001;
1126     width: 30px;
1127     height: 30px;
1128 }
1129 .wallwall .wwto img {
1130     width: 30px !important;
1131     height: 30px !important;
1132 }
1133 .wallwall .wall-item-photo-end {
1134     clear: both;
1135 }
1136 .wall-item-arrowphoto-wrapper {
1137     position: absolute;
1138     left: 35px;
1139     top: 80px;
1140     z-index: 10002;
1141 }
1142 .wall-item-photo-menu {
1143         min-width: 92px;
1144         border: 2px solid #FFFFFF;
1145         border-top: 0px;
1146         background: #555753;
1147         position: absolute;
1148         left: -2px; top: 101px;
1149         display: none;
1150         z-index: 10003;
1151         -webkit-border-radius: 0px 5px 5px 5px;
1152         -moz-border-radius: 0px 5px 5px 5px;
1153         border-radius: 0px 5px 5px 5px;
1154 }
1155 .wall-item-photo-menu ul {
1156     margin:0px;
1157     padding: 0px;
1158     list-style: none;
1159 }
1160 .wall-item-photo-menu li a {
1161     white-space: nowrap;
1162     display: block;
1163     padding: 5px 2px;
1164     color: #eeeeec;
1165 }
1166 .wall-item-photo-menu li a:hover {
1167     color: #555753;
1168     background: #eeeeec;
1169 }
1170 #item-delete-selected {
1171     overflow: auto;
1172     width: 100%;
1173 }
1174
1175
1176 /**
1177  *      comment
1178  */
1179 .ccollapse-wrapper {
1180     font-size: 0.9em;
1181     margin-left: 80px;
1182 }
1183
1184 .wall-item-outside-wrapper.comment {
1185     margin-left: 80px;
1186 }
1187 .wall-item-outside-wrapper.comment .wall-item-photo {
1188     width: 40px!important;
1189     height: 40px!important;
1190 }
1191 .wall-item-outside-wrapper.comment .wall-item-photo-wrapper {
1192     width: 40px;
1193     height: 40px;
1194 }
1195 .wall-item-outside-wrapper.comment .wall-item-photo-menu-button {
1196         width: 50px;
1197     top: 45px;
1198     background-position: 35px center;
1199 }
1200 .wall-item-outside-wrapper.comment .wall-item-info {
1201     width: 60px;
1202 }
1203 .wall-item-outside-wrapper.comment .wall-item-body {
1204     margin-left: 10px;
1205 }
1206 .wall-item-outside-wrapper.comment .wall-item-author {
1207     margin-left: 50px;
1208 }
1209
1210 .wall-item-outside-wrapper.comment .wall-item-photo-menu {
1211     min-width: 50px;
1212     top: 60px;
1213 }
1214 .comment-wwedit-wrapper {
1215     /*margin: 30px 0px 0px 80px;*/
1216 }
1217 .comment-edit-wrapper {
1218     border-top: 1px #aaa solid;
1219 }
1220 .comment-wwedit-wrapper img,
1221 .comment-edit-wrapper img {
1222         width: 20px;
1223         height: 20px;
1224 }
1225 .comment-edit-photo-link, .comment-edit-photo {
1226         float: left;
1227         margin-left: 10px;
1228 }
1229 .my-comment-photo {
1230     width: 40px;
1231     height: 40px;
1232     padding: 5px;
1233 }
1234 [class^="comment-edit-text"] {
1235     margin: 5px 0 10px 20px;
1236     width: 86.5%;
1237 }
1238 .comment-edit-text-empty {
1239         height: 20px;
1240         border: 2px #c8bebe solid;
1241         border-radius: 5px;
1242         color: #c8bebe;
1243         -webkit-transition: all 0.5s ease-in-out;
1244         -moz-transition: all 0.5s ease-in-out;
1245         -o-transition: all 0.5s ease-in-out;
1246         -ms-transition: all 0.5s ease-in-out;
1247         transition: all 0.5s ease-in-out;       
1248 }
1249 .comment-edit-text-empty:hover {
1250         color: #999999;
1251 }
1252 .comment-edit-text-full {
1253         height: 10em;
1254     border-radius: 5px;
1255         -webkit-transition: all 0.5s ease-in-out;
1256         -moz-transition: all 0.5s ease-in-out;
1257         -o-transition: all 0.5s ease-in-out;
1258         -ms-transition: all 0.5s ease-in-out;
1259         transition: all 0.5s ease-in-out;       
1260 }
1261 .comment-edit-submit-wrapper {
1262         width: 90%;
1263         margin: 5px 5px 10px 50px;
1264         text-align: right;
1265 }
1266 .comment-edit-submit {
1267     height: 22px;
1268     background-color: #555753;
1269     color: #eeeeec;
1270     -webkit-border-radius: 5px;
1271     -moz-border-radius: 5px;
1272     border-radius: 5px;
1273     border: 0;
1274 }
1275
1276
1277 /**
1278  * item text style
1279  **/
1280 .wall-item-body code {
1281         display: block;
1282         padding: 0 0 10px 5px;
1283         border-color: #ccc;
1284         border-style: solid;
1285         border-width: 1px 1px 1px 10px;
1286         background: #eee;
1287         width: 95%;
1288 }
1289
1290
1291 /**
1292  * profile
1293  **/
1294 div[id$="text"] {
1295     font-weight: bold;
1296     border-bottom: 1px solid #ccc;
1297 }
1298 div[id$="wrapper"] {
1299     height: 100%;
1300     margin-bottom: 1em;
1301 }
1302 div[id$="wrapper"] br {
1303     clear: left;
1304 }
1305 #advanced-profile-with {
1306     margin-left: 200px;
1307 }
1308
1309
1310 /**
1311  * photos
1312  **/
1313 .photos {
1314         height: auto;
1315         overflow: auto;
1316 }
1317 #photo-top-links {
1318     margin-bottom: 30px;
1319 }
1320 .photo-album-image-wrapper,
1321 .photo-top-image-wrapper {
1322     float: left;
1323     -moz-box-shadow: 0 0 5px #888;
1324     -webkit-box-shadow: 0 0 5px #888;
1325     box-shadow: 0 0 5px #888;
1326     background-color: #eee;
1327     -webkit-border-radius: 5px;
1328     -moz-border-radius: 5px;
1329     border-radius: 5px;
1330     padding-bottom: 30px;
1331     position: relative;
1332     margin: 0 10px 10px 0;
1333 }
1334
1335 #photo-photo {
1336     max-width: 100%;
1337 }
1338 #photo-photo img {
1339     max-width: 100%;
1340 }
1341 .photo-top-image-wrapper a:hover,
1342 #photo-photo a:hover,
1343 .photo-album-image-wrapper a:hover {
1344     border-bottom: 0;
1345 }
1346 .photo-top-photo,.photo-album-photo {
1347     -webkit-border-radius:5px 5px 0 0;
1348     -moz-border-radius:5px 5px 0 0;
1349     border-radius:5px 5px 0 0;
1350 }
1351 .photo-top-album-name {
1352     position: absolute;
1353     bottom: 0;
1354     padding: 0 5px;
1355 }
1356 .caption {
1357     position: absolute;
1358     bottom: 0;
1359     margin: 0 5px;
1360 }
1361 #photo-photo {
1362         position: relative;
1363         float:left;
1364 }
1365 #photo-photo-end {
1366     clear: both;
1367 }
1368 #photo-prev-link,
1369 #photo-next-link {
1370     position:absolute;
1371     width:30%;
1372     height:100%;
1373     background-color:rgba(255,255,255,0.5);
1374     opacity:0;
1375     -webkit-transition:all .2s ease-in-out;
1376     -moz-transition:all .2s ease-in-out;
1377     -o-transition:all .2s ease-in-out;
1378     -ms-transition:all .2s ease-in-out;
1379     transition:all .2s ease-in-out;
1380     background-position:center center;
1381     background-repeat:no-repeat;
1382 }
1383 #photo-prev-link {
1384     left:0;
1385     top:0;
1386     background-image:url(prev.png);
1387 }
1388 #photo-next-link {
1389     right:0;
1390     top:0;
1391     background-image:url(next.png);
1392 }
1393
1394 #photo-prev-link a,#photo-next-link a {
1395     display:block;
1396     width:100%;
1397     height:100%;
1398     overflow:hidden;
1399     text-indent:-900000px;
1400 }
1401 #photo-prev-link:hover,
1402 #photo-next-link:hover {
1403     opacity:1;
1404     -webkit-transition:all .2s ease-in-out;
1405     -moz-transition:all .2s ease-in-out;
1406     -o-transition:all .2s ease-in-out;
1407     -ms-transition:all .2s ease-in-out;
1408     transition:all .2s ease-in-out;
1409 }
1410 #photo-next-link .icon,
1411 #photo-prev-link .icon {
1412     display: none;
1413 }
1414 #photos-upload-spacer,
1415 #photos-upload-new-wrapper,
1416 #photos-upload-exist-wrapper {
1417     margin-bottom: 1em;
1418 }
1419 #photos-upload-existing-album-text,
1420 #photos-upload-newalbum-div {
1421     background-color:#555753;
1422     color:#eeeeec;
1423     padding:1px;
1424 }
1425 #photos-upload-album-select,
1426 #photos-upload-newalbum {
1427     width: 99%;
1428 }
1429 #photos-upload-perms-menu {
1430     text-align: right;
1431 }
1432 #photo-edit-caption, #photo-edit-newtag, #photo-edit-albumname {
1433     float: left;
1434     margin-bottom: 25px;
1435 }
1436 #photo-edit-link-wrap {
1437     margin-bottom: 15px;
1438 }
1439 #photo-edit-caption {
1440         width: 100%;
1441 }
1442 #photo-edit-newtag {
1443         width: 100%;
1444 }
1445 #photo-like-div {
1446     margin-bottom: 25px;
1447 }
1448 #photo-edit-caption-end, #photo-edit-tags-end, #photo-edit-albumname-end {
1449     clear: both;
1450 }
1451 #photo-edit-delete-button {
1452     margin-left: 200px;
1453 }
1454 #photo-edit-end {
1455     margin-bottom: 35px;
1456 }
1457 #photo-caption {
1458     font-size: 110%;
1459     font-weight: bold;
1460     margin-top: 15px;
1461     margin-bottom: 15px;
1462 }
1463
1464 /**
1465  *      message
1466  */
1467 .prvmail-text {
1468     width: 100%;
1469 }
1470 #prvmail-subject {
1471     width: 100%;
1472 }
1473 #prvmail-submit-wrapper {
1474     margin-top: 10px;
1475 }
1476 #prvmail-submit {
1477     float:right;
1478     margin-top: 0;
1479 }
1480 #prvmail-submit-wrapper > div {
1481     margin-right:5px;
1482     float:left;
1483 }
1484 .mail-list-outside-wrapper {
1485     margin-top: 20px;
1486 }
1487 .mail-list-sender {
1488     float: left;
1489 }
1490 .mail-list-detail {
1491     margin-left: 90px;
1492 }
1493 .mail-list-sender-name {
1494     display: inline;
1495 }
1496 .mail-list-date {
1497     display: inline;
1498     font-size: 0.8em;
1499     padding-left: 10px;
1500 }
1501 .mail-list-subject {
1502     font-size: 1.5em;
1503 }
1504 .mail-list-delete-wrapper {
1505     float: right;
1506 }
1507 .mail-list-outside-wrapper-end {
1508     clear: both;
1509 }
1510 .mail-conv-sender {
1511     float: left;
1512     margin: 0px 5px 5px 0px;
1513 }
1514 .mail-conv-sender-photo {
1515     width: 32px;
1516     height: 32px;
1517 }
1518 .mail-conv-sender-name {
1519     float: left;
1520 }
1521 .mail-conv-date {
1522     float: right;
1523 }
1524 .mail-conv-subject {
1525     clear: right;
1526     font-weight: bold;
1527     font-size: 1.2em;
1528 }
1529 .mail-conv-body {
1530     clear: both;
1531 }
1532 .mail-conv-delete-wrapper {
1533     margin-top: 5px;
1534 }
1535
1536
1537 /**
1538  *      contacts
1539  */
1540 .view-contact-wrapper,
1541 .contact-entry-wrapper {
1542     float: left;
1543     margin-right: 5px;
1544     margin-bottom: 40px;
1545     width: 120px;
1546         height: 120px;
1547         padding: 3px;
1548     position: relative;
1549 }
1550 .contact-direction-wrapper {
1551     position: absolute;
1552     top: 20px;
1553 }
1554 .contact-edit-links {
1555     position: absolute;
1556     top: 60px;
1557 }
1558 .contact-entry-photo-wrapper {
1559
1560 }
1561 .contact-entry-photo {
1562         margin-left: 20px;
1563 }
1564 .contact-entry-name {
1565     width: 120px;
1566     font-weight: bold;
1567     /*overflow: hidden;*/
1568 }
1569 .contact-entry-photo {
1570         position: relative;
1571 }
1572 .contact-entry-edit-links .icon {
1573     border: 1px solid #babdb6;
1574     -webkit-border-radius: 3px;
1575     -moz-border-radius: 3px;
1576     border-radius: 3px;
1577     background-color: #fff;
1578 }
1579 #contact-entry-url, [id^="contact-entry-url"] {
1580     font-size: smaller;
1581     /*overflow: scroll;*/
1582 }
1583 #contact-entry-network, [id^="contact-entry-network"] {
1584     font-size: smaller;
1585     font-style: italic;
1586 }
1587 #contact-edit-banner-name {
1588     font-size: 1.5em;
1589 }
1590 #contact-edit-photo-wrapper {
1591     position: relative;
1592     float: left;
1593     padding: 20px;
1594 }
1595 #contact-edit-direction-icon {
1596     position:absolute;
1597     top:60px;
1598     left:0;
1599 }
1600 #contact-edit-nav-wrapper {
1601     margin-left: 0px;
1602 }
1603 #contact-edit-links {
1604     margin-top: 23px;
1605 }
1606 #contact-edit-links ul {
1607     list-style-type: none;
1608 }
1609 #contact-drop-links {
1610     margin-left:5px;
1611 }
1612 #contact-edit-nav-wrapper .icon {
1613         border: 1px solid #babdb6;
1614     -webkit-border-radius: 3px;
1615     -moz-border-radius: 3px;
1616     border-radius: 3px; 
1617 }
1618 #contact-edit-poll-wrapper {
1619     margin-left: 0px;
1620 }
1621 #contact-edit-last-update-text {
1622     margin-bottom: 15px;
1623 }
1624 #contact-edit-last-updated {
1625     font-weight: bold;
1626 }
1627 #contact-edit-poll-text {
1628     display: inline;
1629 }
1630 #contact-edit-info_tbl, #contact-edit-info_parent {
1631     width: 100%;
1632 }
1633 .mceLayout {
1634     width: 100%;
1635 }
1636 #contact-edit-end {
1637     clear: both;
1638     margin-bottom: 65px;
1639 }
1640
1641 .contact-photo-menu-button {
1642     position: absolute;
1643     background-image: url("photo-menu.jpg");
1644     background-position: top left; 
1645     background-repeat: no-repeat;
1646     margin: 0px; padding: 0px;
1647     width: 16px;
1648     height: 16px;
1649     top: 64px; left:0px;
1650     overflow: hidden;
1651     text-indent: 40px;
1652     display: none;
1653 }
1654 .contact-photo-menu {
1655     width: auto;
1656     border: 2px solid #444444;
1657     background: #FFFFFF;
1658     position: absolute;
1659     left: 0px; top: 90px;
1660     display: none;
1661     z-index: 10000;
1662 }
1663 .contact-photo-menu ul {
1664     margin:0px;
1665     padding: 0px;
1666     list-style: none;
1667 }
1668 .contact-photo-menu li a {
1669     display: block;
1670     padding: 2px;
1671 }
1672 .contact-photo-menu li a:hover {
1673     color: #fff;
1674     background: #3465A4;
1675     text-decoration: none;
1676 }
1677
1678
1679
1680 /**
1681  *      register, settings & profile forms
1682  */
1683 #id_openid_url,
1684 .openid {
1685     background:url(login-bg.gif) no-repeat;
1686     background-position:0 50%;
1687     padding-left:18px;
1688 }
1689
1690 #settings-nickname-desc {
1691     background-color: #eec;
1692     -webkit-border-radius: 5px;
1693     -moz-border-radius: 5px;
1694     border-radius: 5px;
1695     padding: 5px;
1696         color: #111;
1697 }
1698 #settings-default-perms {
1699     margin-bottom: 20px;
1700 }
1701 #register-form div,
1702 #profile-edit-form div {
1703     clear: both;
1704 }
1705
1706 #register-form label,
1707 #profile-edit-form label {
1708         width: 300px;
1709     float: left;
1710 }
1711
1712 #register-form span,
1713 #profile-edit-form span {
1714     color:#555753;
1715     display:block;
1716     margin-bottom:20px;
1717 }
1718 .settings-submit-wrapper,
1719 .profile-edit-submit-wrapper {
1720     margin: 30px 0px;
1721 }
1722 .profile-edit-side-div {
1723     margin: 5px 2px 0 0;
1724 }
1725 .profile-edit-side-link {
1726         margin: 0 20px -18px 0;
1727     float: right;
1728 }
1729 .profile-listing {
1730     float: left;
1731     margin: 20px 20px 0px 0px;
1732 }
1733 #profile-edit-links ul {
1734     margin: 20px 0;
1735     padding: 0;
1736     list-style: none;
1737 }
1738 #register-sitename {
1739     display: inline;
1740     font-weight: bold;
1741 }
1742 #advanced-expire-popup {
1743         background: #2e2f2e;
1744         color: #eec;
1745 }
1746
1747 /**
1748  *      contacts selector
1749  */
1750 .group-delete-wrapper {
1751         margin: -31px 122px 0 0;
1752     float: right;
1753 }
1754
1755 #group-edit-submit-wrapper {
1756     margin: 0 0 10px 0;
1757     display: inline;
1758 }
1759 #group-edit-desc {
1760     margin: 10px 0px;
1761 }
1762 #group-members,
1763 #prof-members {
1764     height:200px;
1765     overflow:auto;
1766     border:1px solid #555753;
1767     -webkit-border-radius:5px 5px 0 0;
1768     -moz-border-radius:5px 5px 0 0;
1769     border-radius:5px 5px 0 0;
1770 }
1771 #group-all-contacts,
1772 #prof-all-contacts {
1773     height:200px;
1774     overflow:auto;
1775     border:1px solid #555753;
1776     -webkit-border-radius:0 0 5px 5px;
1777     -moz-border-radius:0 0 5px 5px;
1778     border-radius:0 0 5px 5px;
1779 }
1780 #group-members h3,
1781 #group-all-contacts h3,
1782 #prof-members h3,
1783 #prof-all-contacts h3 {
1784     color:#eeeeec;
1785     background-color:#555753;
1786     margin:0;
1787     padding:5px;
1788 }
1789 #group-separator,
1790 #prof-separator {
1791     display: none;
1792 }
1793
1794 /**
1795  * profile
1796  */
1797 #cropimage-wrapper {
1798     float:left;
1799 }
1800 #crop-image-form {
1801     clear:both;
1802 }
1803
1804 /**
1805  * events
1806  **/
1807 .clear { clear: both; }
1808 .eventcal {
1809     float:left;
1810     font-size:20px;
1811 }
1812 .vevent {
1813     border:1px solid #ccc;
1814 }
1815 .vevent .event-description, .vevent .event-location {
1816         margin-left: 10px;
1817         margin-right: 10px;
1818 }
1819 .vevent .event-start {
1820         margin-left: 10px;
1821         margin-right: 10px;
1822 }
1823
1824 #new-event-link {
1825         margin-bottom: 10px;
1826 }
1827 .edit-event-link, .plink-event-link {
1828         float: left;
1829         margin-top: 4px;
1830         margin-right: 4px;
1831         margin-bottom: 15px;
1832 }
1833 .event-description:before {
1834         content: url('../../../images/calendar.png');
1835         margin-right: 15px;
1836 }
1837 .event-start, .event-end {
1838         margin-left: 10px;
1839         width: 330px;
1840 }
1841 .event-start .dtstart, .event-end .dtend {
1842         float: right;
1843 }
1844 .event-list-date {
1845         margin-bottom: 10px;
1846 }
1847 .prevcal, .nextcal {
1848         float: left;
1849         margin-left: 32px;
1850         margin-right: 32px;
1851         margin-top: 64px;
1852 }
1853 .event-calendar-end {
1854         clear: both;
1855 }
1856 .calendar {
1857     font-family: monospace;
1858 }
1859 .today {
1860         font-weight: bold;
1861         color: #FF0000;
1862
1863 #event-start-text, 
1864 #event-finish-text {
1865         margin-top: 10px;
1866         margin-bottom: 5px;
1867 }
1868 #event-nofinish-checkbox,
1869 #event-nofinish-text,
1870 #event-adjust-checkbox,
1871 #event-adjust-text,
1872 #event-share-checkbox {
1873     float:left;
1874 }
1875 #event-datetime-break {
1876         margin-bottom: 10px;
1877 }
1878 #event-nofinish-break,
1879 #event-adjust-break,
1880 #event-share-break {
1881         clear: both;
1882 }
1883 #event-desc-text, 
1884 #event-location-text {
1885         margin-top: 10px;
1886         margin-bottom: 5px;
1887 }
1888 #event-submit {
1889         margin-top: 10px;
1890 }
1891 .body-tag {
1892         margin: 10px 0;
1893         opacity: 0.5;
1894         filter:alpha(opacity=50);
1895 }
1896 .body-tag:hover {
1897         opacity: 1.0 !important;
1898         filter:alpha(opacity=100) !important;
1899 }
1900 .item-select {
1901         opacity: 0.1;
1902         filter:alpha(opacity=10);
1903         float: right;
1904         margin-right: 10px;
1905
1906 }
1907 .item-select:hover, .checkeditem {
1908         opacity: 1;
1909         filter:alpha(opacity=100);
1910 }
1911 #item-delete-selected {
1912         margin-top: 30px;
1913 }
1914 /* was tired of having no way of moving it around, so
1915  * here's a little 'hook' to do so */
1916 .delete-checked {
1917         position: absolute;
1918         left: 35px;
1919         margin-top: 20px;
1920 }
1921 #item-delete-selected-end {
1922         clear: both;
1923 }
1924 #item-delete-selected-icon, #item-delete-selected-desc {
1925         float: left;
1926         margin-right: 5px;
1927 }
1928 #item-delete-selected-desc:hover {
1929         text-decoration: underline;
1930 }
1931
1932
1933 /**
1934  *      directory
1935  */
1936 .directory-item {
1937     float: left;
1938     margin: 50px 50px 0px 0px;
1939 }
1940
1941
1942 /**
1943  * sidebar
1944  */
1945 #group-sidebar {
1946     margin-bottom: 10px;
1947 }
1948 .group-selected, .nets-selected {
1949     padding: 3px;
1950     border: 1px solid #f8f8f8;
1951     background: #2e302e;
1952     font-weight: bold;
1953 }
1954 .groupsideedit {
1955     margin-right: 10px;
1956 }
1957 #sidebar-group-ul {
1958     padding-left: 0;
1959 }
1960 #sidebar-group-list {
1961     margin: 0 0 5px 0;
1962 }
1963 #sidebar-group-list ul {
1964     list-style-type: none;
1965     list-style-position: inside;
1966 }
1967 #sidebar-group-list li {
1968     margin-top: 10px;
1969 }
1970 #sidebar-group-list .icon {
1971     display: inline-block;
1972     height: 12px;
1973     width: 12px;
1974 }
1975 #sidebar-new-group {
1976     margin: auto;
1977     display: inline-block;
1978     color: #efefef;
1979     text-decoration: none;
1980     text-align: center;
1981 }
1982 #peoplefind-sidebar form {
1983         margin-bottom: 10px;
1984 }
1985 #sidebar-new-group:hover {
1986     /*background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #b20202), color-stop(1, #d60808) );*/
1987     /*background: -moz-linear-gradient( center top, #b20202 5%, #d60808 100% );*/
1988     /*background-color: #b20202;*/
1989 }
1990
1991 #sidebar-new-group:active {
1992     position: relative;
1993     top: 1px;
1994 }
1995 #side-peoplefind-url {
1996     background-color: #2e2f2e;
1997     color: #eec;
1998         border: 1px 999 solid;
1999         margin-right: 3px;
2000         width: 75%;
2001 }
2002 #side-peoplefind-url:hover, #side-peoplefind-url:focus {
2003     background-color: #efefef;
2004     color: #222;
2005         border: 1px 333 solid;
2006 }
2007 .nets-ul {
2008     list-style-type: none;
2009     padding-left: 0px;
2010 }
2011 .nets-ul li {
2012     margin: 10px 0 0;
2013 }
2014
2015 .nets-link {
2016     margin-left: 0px;
2017 }
2018 .nets-all {
2019     margin-left: 0px;
2020 }
2021 #netsearch-box {
2022     margin-top: 20px;
2023     width: 150px;   
2024 }
2025 #netsearch-box #search-submit {
2026     margin: 5px 0px 0px 0px;
2027 }
2028
2029 /**
2030  * ADMIN
2031  */
2032 #pending-update {
2033     float:right;
2034     color: #fff;
2035     font-weight: bold;
2036     background-color: #ff0000;
2037     padding: 0 .3em;
2038 }
2039 .admin.linklist {
2040     border: 0; padding: 0;
2041 }
2042 .admin.link {
2043     list-style-position: inside;
2044 }
2045 #adminpage dl {
2046     clear:left;
2047     margin-bottom: 2px;
2048     padding-bottom: 2px;
2049     border-bottom: 1px solid #000;
2050 }
2051 #adminpage dt {
2052     width: 200px;
2053     float: left;
2054     font-weight: bold;
2055 }
2056 #adminpage dd {
2057         margin-left: 200px;
2058 }
2059 #adminpage h3 {
2060     border-bottom:1px solid #ccc;
2061 }
2062
2063 #adminpage .submit {
2064         clear:left;
2065 }
2066
2067 #adminpage #pluginslist {
2068     margin: 0;
2069     padding: 0;
2070 }
2071 #adminpage .plugin {
2072     list-style: none;
2073     display: block;
2074     border: 1px solid #888;
2075     padding: 1em;
2076     margin-bottom: 5px;
2077     clear: left;
2078 }
2079 #adminpage .toggleplugin {
2080         float:left;
2081         margin-right: 1em;
2082 }
2083
2084 #adminpage table {
2085     width: 100%;
2086     border-bottom: 1px solid #000;
2087     margin: 5px 0;
2088 }
2089 #adminpage table th {
2090     text-align: left;
2091 }
2092 #adminpage td .icon {
2093     float: left;
2094 }
2095 #adminpage table#users img {
2096     width: 16px; height: 16px;
2097 }
2098 #adminpage table tr:hover {
2099     background-color:#bbc7d7;
2100 }
2101 #adminpage .selectall {
2102     text-align: right;
2103 }
2104
2105 /**
2106  * Form fields
2107  */
2108 .field {
2109         /*margin-bottom: 10px;*/
2110         /*padding-bottom: 10px;*/
2111     overflow: auto;
2112     width: 100%;
2113 }
2114 .field label, label {
2115     float: left;
2116     width: 275px;
2117         display: block;
2118         font-size: 1.077em;
2119         /*font-weight: bold;*/
2120         margin: 0 10px 0.5em 0;
2121         border: 1px #2e2f2e solid;
2122         padding: 5px;
2123         background: #eec;
2124         vertical-align: middle;
2125         color: #111;
2126 }
2127 .field input, input[type="text"] {
2128         width: 250px;
2129         height: 25px;
2130         border: 1px #999 solid;
2131 }
2132 .field textarea {
2133     width: 80%;
2134     height: 100px;
2135 }
2136 .field_help {
2137     display: block;
2138     margin-left: 297px;
2139     color: #aaa;
2140 }
2141 .field .onoff {
2142     float: left;
2143     width: 80px;
2144 }
2145 .field .onoff a {
2146     display: block;
2147     border: 1px solid #666;
2148     padding: 3px 6px 4px 10px;
2149     height: 16px;
2150     text-decoration: none;
2151 }
2152 .field .onoff .on {
2153         background: url("../../../images/onoff.jpg") no-repeat 42px 1px #999;
2154     color: #111;
2155     text-align: left;
2156 }
2157 .field .onoff .off {
2158         background: url("../../../images/onoff.jpg") no-repeat 2px 1px #ccc;
2159     color: #333;
2160     text-align: right;
2161 }
2162 .hidden {
2163     display:none !important;
2164 }
2165 .field.radio .field_help {
2166     margin-left: 297px;
2167 }
2168
2169
2170 /*
2171  * UPDATE
2172  */
2173 .popup {        
2174         width: 100%;
2175     height: 100%;
2176         top: 0px;
2177     left: 0px;
2178         position: absolute;
2179         display: none;
2180 }
2181 .popup .background {
2182         background-color: rgba(0,0,0,128);
2183         opacity: 0.5;
2184         width: 100%;
2185     height: 100%;
2186         position: absolute;
2187         top:0px;
2188     left:0px;
2189 }
2190 .popup .panel {
2191         top: 25%;
2192     left: 25%;
2193     width: 50%;
2194     height: 50%;
2195         padding: 1em;
2196         position: absolute;
2197         border: 4px solid #000000;
2198         background-color: #FFFFFF;
2199 }
2200 #panel {
2201     z-index: 100;
2202 }
2203 .grey {
2204     color: grey;
2205 }
2206 .orange {
2207     color: orange;
2208 }
2209 .red {
2210     color: red;
2211 }
2212 .popup .panel .panel_text {
2213     display: block;
2214     overflow: auto;
2215     height: 80%;
2216
2217 .popup .panel .panel_in {
2218     width: 100%;
2219     height: 100%;
2220     position: relative;
2221 }
2222 .popup .panel .panel_actions {
2223     width: 100%;
2224     bottom: 4px;
2225     left: 0px;
2226     position: absolute;
2227 }
2228 .panel_text .progress {
2229     width: 50%;
2230     overflow: hidden;
2231     height: auto;
2232     border: 1px solid #cccccc;
2233     margin-bottom: 5px;
2234 }
2235 .panel_text .progress span {
2236     float: right;
2237     display: block;
2238     width: 25%;
2239     background-color: #eeeeee;
2240     text-align: right;
2241 }
2242
2243 /**
2244  * OAuth
2245  */
2246 .oauthapp {
2247         height: auto;
2248     overflow: auto;
2249         border-bottom: 2px solid #cccccc;
2250         padding-bottom: 1em;
2251         margin-bottom: 1em;     
2252 }
2253 .oauthapp img {
2254         float: left;
2255         width: 48px; height: 48px;
2256         margin: 10px;
2257 }
2258 .oauthapp img.noicon {
2259         background-image: url("../../../images/icons/48/plugin.png");
2260         background-position: center center;
2261         background-repeat: no-repeat;
2262 }
2263 .oauthapp a {
2264         float: left;
2265 }
2266
2267
2268 /**
2269  * ICONS
2270  */
2271 .iconspacer {
2272         display: block;
2273     width: 16px;
2274     height: 16px;
2275 }
2276 .icon {
2277     display: block;
2278     width: 20px;
2279     height: 20px;
2280     background: url(icons.png) no-repeat;
2281     border: 0;
2282     text-decoration: none;
2283         border-radius: 5px;
2284 }
2285 .icon:hover {
2286     border: 0;
2287     text-decoration: none;
2288 }
2289 .icon.drop,
2290 .icon.drophide, .icon.delete {
2291     float: left;
2292 }
2293 .icon.s22.delete {
2294         display: block;
2295         background-position: -110px 0;
2296 }
2297 .icon.s22.text {
2298         padding: 10px 0px 0px 25px;
2299         width: 200px;
2300 }
2301 .icon.text {
2302     text-indent: 0px;
2303 }
2304 .icon.s16 {
2305     min-width: 16px;
2306     height: 16px;
2307 }
2308 .s16 .add {
2309     background: url("../../../images/icons/16/add.png") no-repeat;
2310 }
2311 .add {
2312     margin: 0px 5px;    
2313 }
2314 .article {
2315         background-position: -50px 0;
2316 }
2317 .audio {
2318         background-position: -70px 0;
2319 }
2320 .block {
2321         background-position: -90px 0px;
2322 }
2323 .drop, .delete {
2324         background-position: -110px 0;
2325 }
2326 .drophide {
2327         background-position: -130px 0;
2328 }
2329 .edit {
2330         background-position: -150px 0;
2331 }
2332 .camera {
2333         background-position: -170px 0;
2334 }
2335 .dislike {
2336         background-position: -190px 0;
2337 }
2338 .like {
2339         background-position: -211px 0;
2340 }
2341 .link {
2342         background-position: -230px 0;
2343 }
2344 .globe, .location {
2345         background-position: -50px -20px;
2346 }
2347 .noglobe, .nolocation {
2348         background-position: -70px -20px;
2349 }
2350 .no {
2351         background-position: -90px -20px;
2352 }
2353 .pause {
2354         background-position: -110px -20px;
2355 }
2356 .play {
2357         background-position: -130px -20px;
2358 }
2359 .pencil {
2360         background-position: -151px -18px;
2361 }
2362 .small-pencil {
2363         background-position: -170px -20px;
2364 }
2365 .recycle {
2366         background-position: -190px -20px;
2367 }
2368 .remote-link {
2369         background-position: -210px -20px;
2370 }
2371 .share {
2372         background-position: -230px -20px;
2373 }
2374 .tools {
2375         background-position: -50px -40px;
2376 }
2377 .lock {
2378         background-position: -70px -40px;
2379 }
2380 .unlock {
2381         background-position: -90px -40px;
2382 }
2383 .video {
2384         background-position: -110px -40px;
2385 }
2386 .attach {
2387         background-position: -190px -40px;
2388 }
2389 .language {
2390         background-position: -210px -40px;
2391 }
2392 .starred {
2393         background-position: -130px -60px;
2394 }
2395 .unstarred {
2396         background-position: -150px -60px;
2397 }
2398 .tagged {
2399         background-position: -170px -60px;
2400 }
2401 .on {
2402         background-position: -50px  -60px;
2403 }
2404 .off {
2405         background-position: -70px  -60px;
2406 }
2407 .prev {
2408         background-position: -90px  -60px;
2409 }
2410 .next {
2411         background-position: -110px  -60px;
2412 }
2413 .icon.dim {
2414         opacity: 0.3;
2415         filter: alpha(opacity=30);
2416 }
2417 #pause {
2418         position: fixed;
2419         bottom: 5px;
2420         right: 5px;
2421 }
2422 .border, .border:hover {
2423         border: 1px solid #babdb6;
2424     -webkit-border-radius: 3px;
2425     -moz-border-radius: 3px;
2426     border-radius: 3px; 
2427 }
2428 .attachtype {
2429     display: block;
2430     width: 20px;
2431     height: 23px;
2432     background-image: url(../../../images/content-types.png);
2433 }
2434 .type-video {
2435     background-position: 0px 0px;
2436 }
2437 .type-image {
2438     background-position: -20px 0;
2439 }
2440 .type-audio {
2441     background-position: -40px 0;
2442 }
2443 .type-text {
2444     background-position: -60px 0px;
2445 }
2446 .type-unkn {
2447     background-position: -80px 0;
2448 }
2449
2450
2451 /**
2452  *      footer
2453  */
2454 .cc-license {
2455     margin-top: 100px;
2456     font-size: 0.7em;
2457 }
2458 footer {
2459     display: block;
2460     margin: 50px 20%;
2461     clear: both;
2462 }
2463 #profile-jot-text {
2464     height: 20px;
2465     color: #666;
2466     border: 1px solid #ccc;
2467     border-radius: 5px;
2468     width: 99.5%;
2469 }
2470
2471
2472 /** acl **/
2473 #photo-edit-perms-select,
2474 #photos-upload-permissions-wrapper,
2475 #profile-jot-acl-wrapper {
2476     display: block !important;
2477 }
2478 #acl-wrapper {
2479     width: 690px;
2480     float: left;
2481 }
2482 #acl-search {
2483     float: right;
2484     background: #fff url("../../../images/search_18.png") no-repeat right center;
2485     padding-right: 20px;
2486 }
2487 #acl-showall {
2488     float:left;
2489     display:block;
2490     width:auto;
2491     height:18px;
2492     background-color:#CCC;
2493     background-image:url("../../../images/show_all_off.png");
2494     background-position:7px 7px;
2495     background-repeat:no-repeat;
2496     padding:7px 10px 7px 30px;
2497     -webkit-border-radius:5px;
2498     -moz-border-radius:5px;
2499     border-radius:5px;
2500     color:#999;
2501 }
2502 #acl-showall.selected {
2503     color:#000;
2504     background-color:#F90;
2505     background-image:url(../../../images/show_all_on.png);
2506 }
2507 #acl-list {
2508     height:210px;
2509     border:1px solid #ccc;
2510     clear:both;
2511     margin-top:30px;
2512     overflow:auto;
2513 }
2514 #acl-list-content {
2515 }
2516 .acl-list-item {
2517     display:block;
2518     width:150px;
2519     height:30px;
2520     border:1px solid #ccc;
2521     margin:5px;
2522     float:left;
2523 }
2524 .acl-list-item img {
2525     width:22px;
2526     height:22px;
2527     float:left;
2528     margin:4px;
2529 }
2530 .acl-list-item p {
2531     height: 12px;
2532     font-size: 10px;
2533     margin: 0;
2534     padding: 2px 0 1px;
2535 }
2536 .acl-list-item a {
2537     font-size:8px;
2538     display:block;
2539     width:40px;
2540     height:10px;
2541     float:left;
2542     color:#999;
2543     background-color:#CCC;
2544     background-position:3px 3px;
2545     background-repeat:no-repeat;
2546     margin-right:5px;
2547     -webkit-border-radius:2px;
2548     -moz-border-radius:2px;
2549     border-radius:2px;
2550     padding-left:15px;
2551 }
2552 #acl-wrapper a:hover {
2553     text-decoration:none;
2554     color:#000;
2555 }
2556 .acl-button-show {
2557     background-image:url('../../../images/show_off.png');
2558 }
2559 .acl-button-hide {
2560     background-image:url('../../../images/hide_off.png');
2561 }
2562 .acl-button-show.selected {
2563     color:#000;
2564     background-color:#9ade00;
2565     background-image:url(../../../images/show_on.png);
2566 }
2567 .acl-button-hide.selected {
2568     color:#000;
2569     background-color:#ff4141;
2570     background-image:url(../../../images/hide_on.png);
2571 }
2572 .acl-list-item.groupshow {
2573     border-color:#9ade00;
2574 }
2575 .acl-list-item.grouphide {
2576     border-color:#ff4141;
2577 }
2578 /** /acl **/
2579
2580
2581 /* autocomplete popup */
2582 .acpopup {
2583         max-height: 150px;
2584         background-color: #555753;
2585         color: #fff;
2586         overflow: auto;
2587         z-index: 100000;
2588         border: 1px solid #cccccc;
2589 }
2590 .acpopupitem {
2591         background-color: #555753;
2592     padding: 4px;
2593         clear: left;
2594 }
2595 .acpopupitem img {
2596         float: left;
2597         margin-right: 4px;
2598 }
2599 .acpopupitem.selected {
2600         color: #2e302e;
2601     background-color: #eeeeec;
2602 }
2603 .qcomment-wrapper {
2604     padding: 0px;
2605     margin: 2px;
2606     list-style-type: none;
2607 }
2608 .qcomment, .qcomment:hover {
2609     display: inline;
2610     padding: 5px;
2611     margin: 5px;
2612 }
2613 .qcomment {
2614         opacity: 0.5;
2615         filter:alpha(opacity=50);
2616 }
2617 .qcomment:hover {
2618         opacity: 1.0;
2619         filter:alpha(opacity=100);
2620 }
2621 #network-star-link {
2622     margin-top: 10px;
2623 }
2624 .network-star {
2625     float: left;
2626     margin-right: 5px;
2627 }
2628 .network-star.icon.starred {
2629     display: inline-block;
2630 }
2631