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