]> git.mxchange.org Git - friendica.git/blob - view/theme/quattro/quattro.less
Merge branch 'master' of https://github.com/friendica/friendica
[friendica.git] / view / theme / quattro / quattro.less
1 // Quattro Theme LESS file
2
3 /* global */
4 body {
5         font-family: Liberation Sans,helvetica,arial,clean,sans-serif;
6         font-size: 11px;
7         background-color: @BodyBackground;
8         color: @BodyColor;
9         margin: 50px 0px 0px 0px;
10         display:table;
11 }
12 h4 { font-size: 1.1em }
13
14 .shadow(@x: 0px, @y: 5px){
15    -webkit-box-shadow:@x @y 10px rgba(0, 0, 0, 0.7);
16    -moz-box-shadow:@x @y 10px rgba(0, 0, 0, 0.7);
17    box-shadow:@x @y 10px rgba(0, 0, 0, 0.7);
18 }
19
20 .rounded(@tr: 5px, @tl: 5px, @bl: 5px, @br: 5px){
21         -moz-border-radius: @arguments;
22         -webkit-border-radius: @arguments;
23         border-radius: @arguments;
24 }
25 .roundbottom (@radius: 5px){ .rounded(0, 0, @radius, @radius); }
26 .roundtop (@radius: 5px){ .rounded(@radius, @radius, 0, 0); }
27
28 .opaque(@v: 0.5){
29         opacity: @v;
30         -webkit-transition: all 0.2s ease-in-out;
31         -moz-transition: all 0.2s ease-in-out;
32         -o-transition: all 0.2s ease-in-out;
33         -ms-transition: all 0.2s ease-in-out;
34         transition: all 0.2s ease-in-out;
35 }
36
37
38 a, a:link { color: @Link; text-decoration: none; }
39 a:visited { color: @LinkVisited; text-decoration: none; }
40 a:hover {color: @LinkHover; text-decoration: underline; }
41
42 .left { float: left; }
43 .right { float: right; }
44 .hidden { display: none; }
45 .clear { clear: both; }
46
47 .fakelink { color: @Link; text-decoration: none; cursor:pointer; }
48 .fakelink:hover { color: @LinkHover; text-decoration: underline; }
49
50 code {
51         font-family: Courier, monospace;
52         white-space: pre;
53         display: block;
54         overflow: auto;
55         border: 1px solid #444;
56         background: #EEE;
57         color: #444;
58         padding: 10px;
59         margin-top: 20px; 
60 }
61
62 #panel {
63         position: absolute;
64         width: 10em;
65         background: @MenuBg;
66         color: @Menu;
67         margin: 0px;
68         padding: 1em;
69         list-style: none;
70         border: 3px solid @MenuBorder;
71         z-index: 100000;
72         
73         .shadow();      
74 }
75
76
77
78 /* tool */
79
80 .tool {
81         height: auto; overflow: auto;
82         .label { float: left;}
83         .action { float: right; }
84 }
85
86
87
88
89 /* popup notifications */
90 div.jGrowl div.notice {
91         background: @NoticeBackgroundColor url("../../../images/icons/48/notice.png") no-repeat 5px center;
92         color:  @NoticeColor;
93         padding-left: 58px;
94 }
95 div.jGrowl div.info {
96         background: @InfoBackgroundColor url("../../../images/icons/48/info.png") no-repeat 5px center;
97         color:  @InfoColor;
98         padding-left: 58px;
99 }
100
101
102
103 /* header */
104 header {
105         position: fixed; left: 43%; right: 43%; top: 0px;
106         margin: 0px; padding: 0px;
107         /*width: 100%; height: 12px; */
108         z-index: 110;
109         color: @Grey1;
110         #site-location {
111                 display: none;
112         }
113         
114         #banner {
115                 overflow: hidden;
116             text-align: center;
117                 width: 100%;
118                 a, a:active, a:visited, a:link, a:hover { color: @Grey1; text-decoration: none; outline: none; vertical-align: bottom; }
119                 #logo-img { height: 22px; margin-top:5px;}
120                 #logo-text { font-size: 22px }
121         }
122 }
123 /* nav */
124 nav { 
125         width: 100%; height: 32px;
126         position: fixed; left: 0px; top: 0px;
127         padding: 0px;
128         background-color: @NavbarBackground;
129         color: @Grey1;
130         z-index: 100;
131         .shadow(0px, 0px);
132
133                 a, a:active, a:visited, a:link, a:hover { color: @Banner; text-decoration: none; outline: none;  }
134
135                 ul {
136                         margin: 0px;
137                         padding: 0px 20px;
138                         li { 
139                                 list-style: none; 
140                                 margin: 0px; padding: 0px;
141                                 float: left;
142                                 .menu-popup{ left: 0px; right: auto; }
143                         }
144                         
145                 }
146
147                 .nav-menu-icon {
148                         position: relative;
149                         height: 22px;
150                         padding: 5px;
151                         margin: 0px 10px;
152                         .roundtop();
153                         
154                         &.selected {
155                                 background-color: @NavbarSelectedBg;
156                         }
157                         
158                                 img { width: 22px; height: 22px; }
159                                 .nav-notify { top: 3px; }
160                 }
161
162                 .nav-menu {
163                         position: relative;
164                         height: 16px;
165                         padding: 5px;
166                         margin: 3px 15px 0px;
167                         font-size: 14px;
168                         border-bottom: 3px solid @NavbarBackground;
169                         &.selected {
170                                 border-bottom: 3px solid @NavbarSelectedBorder;
171                         }
172                         
173                 }
174
175                 .nav-notify {
176                         display: none;
177                         position: absolute;
178                         background-color: @NavbarNotifBg;
179                         .rounded();
180                         font-size: 10px;
181                         padding: 1px 3px;
182                         top: 0px;
183                         right: -10px;
184                         min-width: 15px;
185                         text-align: right;
186                         
187                                 &.show{ display: block; }
188                 }
189                 
190                 
191                 #nav-help-link,
192                 #nav-search-link,
193                 #nav-directory-link,
194                 #nav-apps-link,
195                 #nav-site-linkmenu { 
196                         float: right;
197                         .menu-popup{ right: 0px; left: auto; }
198                 }
199         
200                 #nav-notifications-linkmenu.on .icon.s22.notify,
201                 #nav-notifications-linkmenu.selected .icon.s22.notify { background-image: url("../../../images/icons/22/notify_on.png") }
202                 #nav-apps-link.selected { background-color: @NavbarSelectedBg; }
203 }
204
205
206 ul.menu-popup {
207         position: absolute;
208         display: none;
209         width: 10em;
210         background: @MenuBg;
211         color: @Menu;
212         margin: 0px;
213         padding: 0px;
214         list-style: none;
215         border: 3px solid @MenuBorder;
216         z-index: 100000;
217         
218         .shadow();
219         
220                 a { display: block; color: @MenuItem; padding: 5px 10px; text-decoration: none;}
221                 a:hover { background-color: @MenuItemHoverBg; }
222                 .menu-sep  { border-top: 1px solid @MenuItemSeparator; }
223                 li { float: none;  overflow: auto; height: auto; display: block; }
224                 li img { float: left; width: 16px; height: 16px; padding-right: 5px;}
225                 .empty {
226                         padding: 5px;
227                         text-align: center;
228                         color: @MenuEmpty;
229                 }
230                 
231 }
232
233 /* autocomplete popup */
234 .acpopup {
235         max-height:150px;
236         background-color:@MenuBg;
237         color: @Menu;
238         border:1px solid #MenuBorder;
239         overflow:auto;
240         z-index:100000;
241         .shadow();
242 }
243 .acpopupitem {
244         color: @MenuItem; padding: 4px;
245         clear:left;
246         img {
247                 float: left;
248                 margin-right: 4px;
249         }
250         &.selected{
251                 background-color: @MenuItemHoverBg;
252         }
253 }
254
255
256 #nav-notifications-menu {
257         width: 400px; max-height: 550px;
258         overflow: auto;
259         img { float: left; margin-right: 5px; }
260         .contactname { font-weight: bold; }
261         .notif-when { font-size: 10px; color: @MenuItemDetail; display: block; }
262 }
263
264
265
266
267 /* aside */
268 aside { 
269         display: table-cell;
270         vertical-align: top;
271         width: 200px;
272         padding:0px 10px 0px 20px;
273         border-right: 1px solid @AsideBorder;
274
275         .vcard {
276                 .fn { font-size: 16px; font-weight: bold; margin-bottom: 5px; }
277                 .title { margin-bottom: 5px; }
278                 dl { height: auto; overflow: auto; }
279                 dt {float: left; margin-left: 0px; width: 35%; text-align: right; color: @VCardLabelColor; }
280                 dd {float: left; margin-left: 4px; width: 60%;}
281         
282         }
283
284         #profile-extra-links {
285                 ul { padding: 0px; margin: 0px; }
286                 li { padding: 0px; margin: 0px; list-style: none; }
287         }
288
289         #dfrn-request-link {
290                 display: block;
291                 .rounded();
292                 color: @AsideConnect;
293                 background: @AsideConnectBg url('../../../images/connect-bg.png') no-repeat left center;
294                 font-weight: bold;
295                 text-transform:uppercase;
296                 padding: 4px 2px 2px 35px;
297                 
298                 &:hover { text-decoration: none; background-color: @AsideConnectHoverBg; }
299         }
300
301         #profiles-menu { width: 20em; }
302
303
304 }
305
306 #contact-block {
307         overflow: auto; height: auto;
308         .contact-block-h4 { float: left; margin: 5px 0px; }
309         .allcontact-link { float: right; margin: 5px 0px; }
310         .contact-block-content {
311                 clear: both;
312                 overflow: auto; height: auto;
313         }
314         .contact-block-link {
315                 float: left;
316                 margin: 0px 2px 2px 0px;
317                 img { widht: 48px; height: 58px; }
318         }
319 }
320 /* mail view */
321 .mail-conv-sender,
322 .mail-conv-detail {
323         float: left;
324 }
325 .mail-conv-detail {
326         margin-left: 20px;
327         width: 500px;
328 }
329
330 .mail-conv-subject {
331     font-size: 1.4em;
332     margin: 10px 0;
333 }
334
335 .mail-conv-outside-wrapper-end {
336         clear: both;
337 }
338
339 .mail-conv-outside-wrapper {
340         margin-top: 30px;
341 }
342
343 .mail-conv-delete-wrapper {
344         float: right;
345         margin-right: 30px;
346         margin-top: 15px;
347 }
348 .mail-conv-break {
349         clear: both;
350 }
351
352 .mail-conv-delete-icon {
353         border: none;
354 }
355
356 /* group member */
357 #contact-edit-drop-link,
358 .mail-list-delete-wrapper,
359 .group-delete-wrapper {
360         float: right;
361         margin-right: 50px;
362         .drophide {
363             background-image: url('../../../images/icons/22/delete.png');
364             display: block; width: 22px; height: 22px;
365             opacity: 0.3;
366             position: relative;
367             top: -50px;
368         }
369         .drop {
370             background-image: url('../../../images/icons/22/delete.png');
371             display: block; width: 22px; height: 22px;
372             position: relative;
373             top: -50px;
374         }
375 }
376 #group-members {
377         margin-top: 20px;
378         padding: 10px;
379         height: 250px;
380         overflow: auto;
381         border: 1px solid #ddd;
382 }
383 #group-members-end {
384         clear: both;
385 }
386 #group-all-contacts {
387         padding: 10px;
388         height: 450px;
389         overflow: auto;
390         border: 1px solid #ddd;
391 }
392 #group-all-contacts-end {
393         clear: both;
394         margin-bottom: 10px;
395 }
396 .contact-block-div {
397         float: left;
398         width: 52px;
399         height: 52px;
400 }
401 /* widget */
402 .widget {
403         margin-bottom: 2em;
404         
405         h3 { padding: 0px; margin: 2px;}
406         .action { .opaque(0.1); }
407         input.action { .opaque(0.5); }
408         &:hover .title .action { .opaque(1); }
409         .tool:hover .action { .opaque(1); }
410         .tool:hover .action.ticked { .opaque(1); }
411
412         ul { padding: 0px;}
413         ul li {padding-left: 16px; min-height: 16px; list-style: none; }
414         
415         .tool.selected {
416                 background: url('../../../images/selected.png') no-repeat left center;
417         }
418         
419         /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
420         .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
421         
422 }
423
424 /* widget: search */
425 #add-search-popup {
426         width: 200px;
427         top: 18px;
428 }
429
430
431 /* section */
432 section { 
433         display: table-cell;
434         vertical-align: top;
435         width: 800px;
436         padding:0px 20px 0px 10px;
437 }
438
439 /* wall item */
440 .tread-wrapper { 
441         background-color: @ThreadBackgroundColor;
442         position: relative;
443         padding: 10px;
444         margin-bottom: 20px;
445         width: 780px;
446 }
447 .wall-item-decor { position: absolute; left: 790px; top: -10px;  width: 16px;}
448 .unstarred { display: none; }
449
450 .wall-item-container {
451         display: table;
452         width: 780px;
453         
454         .wall-item-item,
455         .wall-item-bottom { display: table-row; }
456         
457         .wall-item-bottom { .opaque(0.5); }
458         &:hover .wall-item-bottom { .opaque(1); }
459         .wall-item-info {
460                 display: table-cell;
461                 vertical-align: top;
462                 text-align: left;
463                 width: 60px;
464                 
465         } 
466         .wall-item-location {
467                 word-wrap: break-word;
468                 width: 50px;
469         }
470         .wall-item-content {
471                 display: table-cell;
472                 font-size: 12px;
473                 max-width: 720px;
474                 word-wrap: break-word;
475         }
476         .wall-item-content img { max-width: 710px; }
477         .wall-item-links,
478         .wall-item-actions { 
479                 display: table-cell; 
480                 vertical-align: middle; 
481                 
482                 .icon {
483                         .opaque(0.5);
484                 }
485                 .icon:hover  {
486                         .opaque(1.0);
487                 }               
488         }
489         
490         .wall-item-ago { padding-right: 40px; }
491         .wall-item-name { font-weight: bold; }
492         
493         .wall-item-actions-author { float: left; width: 20em; margin-top: 0.5em; }
494         .wall-item-actions-social { float: left; margin-top: 0.5em;
495                 a { margin-right: 3em; }
496          }
497         .wall-item-actions-tools { float: right; width: 15%; 
498                 a { float: right; }
499                 input { float: right; }
500         }
501         
502 }
503
504
505 .wall-item-container.comment {
506         /*margin-top: 50px;*/
507         .contact-photo { width: 32px; height: 32px; margin-left: 16px;
508                 /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
509         }       
510         .contact-photo-menu-button {
511                 top: 15px !important;
512                 left: 15px !important;
513         }
514         .wall-item-links { padding-left: 12px; }
515 }
516
517 .wall-item-comment-wrapper {
518         margin: 30px 2em 2em 60px;
519         .comment-edit-photo { display: none; }
520         textarea {      
521                 height: 1em; width: 100%; font-size: 10px;
522                 color: @CommentBoxEmptyColor;
523                 border: 1px solid @CommentBoxEmptyBorderColor;
524                 padding:0.3em;
525         }
526         .comment-edit-text-full {
527                 font-size: 14px;
528                 height: 4em;
529                 color: @CommentBoxFullColor;
530                 border: 1px solid @CommentBoxFullBorderColor;
531         }
532 }
533
534 .comment-edit-preview {
535         width: 710px;
536         border: 1px solid @Grey5;
537         margin-top: 10px;
538         
539         .contact-photo { width: 32px; height: 32px; margin-left: 16px;
540                 /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
541         }       
542         .contact-photo-menu-button {
543                 top: 15px !important;
544                 left: 15px !important;
545         }
546         .wall-item-links { padding-left: 12px; }
547
548         .wall-item-container { width: 700px; }
549         .tread-wrapper { width: 700px; padding: 0; margin: 10px 0;}
550
551
552 }
553
554
555
556 .wall-item-tags { padding-top: 5px; }
557 .tag {
558         background: url("../../../images/tag_b.png") no-repeat center left;
559         color: @TagColor;
560         padding-left: 3px;
561         a {
562                 padding-right: 8px;
563                 background: url("../../../images/tag.png") no-repeat center right;
564                 color: @TagColor;
565         }
566 }
567
568 .wwto { 
569         position: absolute !important; 
570         width: 25px; height: 25px; 
571     background: #FFFFFF;
572     border: 2px solid @Metalic3;
573     height: 25px;
574     width: 25px;
575     overflow: hidden;
576     padding: 1px;
577     position: absolute !important;
578     top: 40px;
579     left: 30px;
580     
581     .shadow(0px, 0px)
582 }
583 .wwto .contact-photo { width: 25px; height: 25px; }
584
585
586 #pause {
587  position: fixed;
588  bottom: 5px;
589  right: 5px;
590 }
591
592 /* contacts menu */
593 .contact-photo-wrapper { position: relative; }
594 .contact-photo { 
595         width: 48px; height: 48px;
596         img { width: 48px; height: 48px; }
597         overflow: hidden;
598         display: block;
599  }              
600 .contact-photo-menu-button {
601         display: none;
602         position: absolute;
603         left: -2px;
604         top: 31px;
605 }
606
607 .contact-wrapper {
608         float: left;
609         width: 90px;
610         height: 90px;
611         margin-bottom: 15px;
612         .contact-photo { 
613                 width: 80px; height: 80px;
614                 img { width: 80px; height: 80px; }
615         }
616         .contact-photo-menu-button {
617                 left: 0px;
618                 top: 63px;
619         }       
620 }
621 .directory-item {
622         float: left;
623         width: 200px;
624         height: 200px;
625         .contact-photo { 
626                 width: 175px; height: 175px;
627                 img { width: 175px; height: 175px; }
628         }
629 }
630 .contact-name { text-align: center; font-weight: bold; }
631 .contact-details { color: @Grey3;}
632 /* editor */
633 .jothidden { display: none; }
634 #jot {
635
636         width: 100%;
637         margin: 0px 2em 20px 0px;
638         
639         
640         .profile-jot-text {
641                 height: 1em; width: 99%; font-size: 10px;
642                 color: @CommentBoxEmptyColor;
643                 border: 1px solid @CommentBoxEmptyBorderColor;
644                 padding:0.3em;
645         }
646
647         #jot-tools {
648                 margin: 0px; padding: 0px;
649                 height: 40px; overflow: none;
650                 width: 800px;
651                 background-color: @JotToolsBackgroundColor;
652                 border-bottom: 2px solid @JotToolsBorderColor;
653                 li {
654                         list-style: none;
655                         float: left;
656                         width: 80px;
657                         height: 40px;
658                         border-bottom: 2px solid @JotToolsBorderColor;
659                         a {
660                                 display: block;
661                                 color: @JotToolsText;
662                                 width: 100%;
663                                 height:40px;
664                                 text-align: center;
665                                 line-height: 40px;
666                                 overflow: hidden;
667                         }
668                 }
669                 li:hover {
670                         background-color: @JotToolsOverBackgroundColor;
671                         border-bottom: 2px solid @JotToolsOverBorderColor;
672                 }
673                 li.perms {
674                         float: right;
675                         width: 40px;
676                         a.unlock {
677                                 width: 30px;
678                                 border-left: 10px solid @JotPermissionUnlockBackgroundColor;
679                                 background-color: @JotPermissionUnlockBackgroundColor;
680                         }
681                         a.lock {
682                                 width: 30px;
683                                 border-left: 10px solid @JotPermissionLockBackgroundColor;
684                                 background-color: @JotPermissionLockBackgroundColor;
685                         }
686                         
687                 }
688                 li.submit {
689                         float: right;
690                         background-color: @JotSubmitBackgroundColor;
691                         border-bottom: 2px solid @JotSubmitBackgroundColor;
692                         border-right: 1px solid @Grey4;
693                         border-left: 1px solid @Grey4;
694                         input {
695                                 border: 0px; margin: 0px; padding: 0px;
696                                 background-color: @JotSubmitBackgroundColor;
697                                 color: @JotSubmitText;
698                                 width: 80px; height: 40px;
699                                 line-height: 40px;
700                         }
701                         input:hover {
702                                 background-color: @JotSubmitOverBackgroundColor;
703                                 color: @JotSubmitOverText;
704                         }
705                 }
706                 li.loading {
707                         float: right;
708                         background-color: @JotLoadingBackgroundColor;
709                         width:  20px;
710                         vertical-align: center;
711                         text-align: center;
712                         img { margin-top: 10px; }
713                         border-top: 2px solid @JotToolsBorderColor;
714                         height: 38px;
715                 }
716         }
717
718         #jot-title {
719                 border: 0px;
720                 margin: 0px;
721                 height: 20px;
722                 width: 700px;
723                 font-weight: bold;
724                 border: 1px solid @BodyBackground;
725
726                 &:-webkit-input-placeholder {
727                         font-weight: normal;
728                 }
729
730                 &:-moz-placeholder {
731                         font-weight: normal;
732                 }               
733         
734                 &:hover { border: 1px solid @CommentBoxEmptyBorderColor }
735                 &:focus { border: 1px solid @CommentBoxEmptyBorderColor }
736         }
737         
738         #character-counter {
739                 width: 80px;
740                 float: right;
741                 text-align: right;
742                 height: 20px;
743                 line-height: 20px;
744                 padding-right: 20px;
745         }
746
747 }
748
749
750 /** buttons **/
751 /*input[type="submit"] {
752         border: 0px;
753     background-color: @ButtonBackgroundColor;
754     color: @ButtonColor;
755     padding: 0px 10px;
756         .rounded(5px);
757     height: 18px;
758 }*/
759
760
761 /** acl **/
762 #photo-edit-perms-select,
763 #photos-upload-permissions-wrapper,
764 #profile-jot-acl-wrapper{
765         display:block!important;
766 }
767
768
769
770 #acl-wrapper {
771         width: 690px;
772         float:left;
773 }
774 #acl-search {
775         float:right;
776         background: #ffffff url("../../../images/search_18.png") no-repeat right center;
777         padding-right:20px;
778 }
779 #acl-showall {
780         float: left;
781         display: block;
782         width: auto;
783         height: 18px;
784         background-color: #cccccc;
785         background-image: url("../../../images/show_all_off.png");
786         background-position: 7px 7px;
787         background-repeat: no-repeat;
788         padding: 7px 5px 0px 30px;
789         color: #999999;
790         .rounded(5px);
791 }
792 #acl-showall.selected {
793         color: #000000;
794         background-color: #ff9900;
795         background-image: url("../../../images/show_all_on.png");
796 }
797
798 #acl-list {
799         height: 210px;
800         border: 1px solid #cccccc;
801         clear: both;
802         margin-top: 30px;
803         overflow: auto;
804 }
805 #acl-list-content {
806         
807 }
808 .acl-list-item {
809         display: block;
810         width: 150px;
811         height: 30px;
812         border: 1px solid #cccccc;
813         margin: 5px;
814         float: left;
815 }
816 .acl-list-item img{
817         width:22px;
818         height: 22px;
819         float: left;
820         margin: 4px;
821 }
822 .acl-list-item p { height: 12px; font-size: 10px; margin: 0px; padding: 2px 0px 1px; overflow: hidden;}
823 .acl-list-item a { 
824         font-size: 8px;
825         display: block;
826         width: 40px;
827         height: 10px;
828         float: left;
829         color: #999999;
830         background-color: #cccccc;
831         background-position: 3px 3px;
832         background-repeat: no-repeat;
833         margin-right: 5px;
834         -webkit-border-radius: 2px ;
835         -moz-border-radius: 2px;
836         border-radius: 2px;
837         padding-left: 15px;
838 }
839 #acl-wrapper a:hover {
840         text-decoration: none;
841         color:#000000;
842 }
843 .acl-button-show { background-image: url("../../../images/show_off.png"); }
844 .acl-button-hide { background-image: url("../../../images/hide_off.png"); }
845
846 .acl-button-show.selected {
847         color: #000000;
848         background-color: #9ade00;
849         background-image: url("../../../images/show_on.png");
850 }
851 .acl-button-hide.selected {
852         color: #000000;
853         background-color: #ff4141;
854         background-image: url("../../../images/hide_on.png");
855 }
856 .acl-list-item.groupshow { border-color: #9ade00; }
857 .acl-list-item.grouphide { border-color: #ff4141; }
858 /** /acl **/
859
860 /** tab buttons **/
861 ul.tabs {
862     list-style-type: none;
863     padding-bottom: 10px;
864
865     li {
866         float: left;
867         margin-left: 20px;
868         
869         .active {
870                         border-bottom: 1px solid @LinkVisited;
871         }
872     }
873     
874 }
875
876
877 /**
878  * Form fields
879  */
880 .field {
881         margin-bottom: 10px;
882         padding-bottom: 10px;
883         overflow: auto;
884         width: 100%;
885
886
887         label {
888                 float: left;
889                 width: 200px;
890         }
891
892         input,
893         textarea {
894                 width: 400px;
895         }
896         textarea { height: 100px; }
897         .field_help {
898                 display: block;
899                 margin-left: 200px;
900                 color: #666666;
901                 
902         }
903
904
905         .onoff {
906                 float: left;
907                 width: 80px;
908         }
909         .onoff a {
910                 display: block;
911                 border:1px solid #666666;
912                 background-image:url("../../../images/onoff.jpg");
913                 background-repeat: no-repeat;
914                 padding: 4px 2px 2px 2px;
915                 height: 16px;
916                 text-decoration: none;
917         }
918         .onoff .off {
919                 border-color:#666666;
920                 padding-left: 40px;
921                 background-position: left center;
922                 background-color: #cccccc;
923                 color: #666666;
924                 text-align: right;
925         }
926         .onoff .on {
927                 border-color:#204A87;
928                 padding-right: 40px;
929                 background-position: right center;
930                 background-color: #D7E3F1;
931                 color: #204A87;
932                 text-align: left;
933         }
934         .hidden { display: none!important; }
935
936         &.radio .field_help { margin-left: 0px; }
937 }
938
939 #profile-edit-links li {
940         list-style: none;
941         margin-top: 10px;
942 }
943
944 #profile-edit-default-desc {
945         color: #FF0000;
946         border: 1px solid #FF8888;
947         background-color: #FFEEEE;
948         padding: 7px;
949 }
950 #profile-edit-profile-name-label,
951 #profile-edit-name-label,
952 #profile-edit-pdesc-label,
953 #profile-edit-gender-label,
954 #profile-edit-dob-label,
955 #profile-edit-address-label,
956 #profile-edit-locality-label,
957 #profile-edit-region-label,
958 #profile-edit-postal-code-label,
959 #profile-edit-country-name-label,
960 #profile-edit-marital-label,
961 #profile-edit-with-label,
962 #profile-edit-sexual-label,
963 #profile-edit-politic-label,
964 #profile-edit-religion-label,
965 #profile-edit-pubkeywords-label,
966 #profile-edit-prvkeywords-label,
967 #profile-edit-gender-select,
968 #profile-edit-homepage-label {
969         float: left;
970         width: 175px;
971         padding-top: 7px;
972 }
973 #profile-edit-profile-name,
974 #profile-edit-name,
975 #gender-select, 
976 #profile-edit-pdesc,
977 #profile-edit-gender,
978 #profile-edit-dob,
979 #profile-edit-address,
980 #profile-edit-locality,
981 #profile-edit-region,
982 #profile-edit-postal-code,
983 #profile-edit-country-name,
984 #profile-edit-marital,
985 #profile-edit-with,
986 #profile-edit-sexual,
987 #profile-edit-politic,
988 #profile-edit-religion,
989 #profile-edit-pubkeywords,
990 #profile-edit-prvkeywords,
991 #profile-edit-homepage {
992     margin-top: 5px;
993 }
994
995 /* oauth */
996 .oauthapp {
997         height: auto; overflow: auto;
998         border-bottom: 2px solid #cccccc;
999         padding-bottom: 1em;
1000         margin-bottom: 1em;     
1001 }
1002 .oauthapp img {
1003         float: left;
1004         width: 48px; height: 48px;
1005         margin: 10px;
1006 }
1007 .oauthapp img.noicon {
1008         background-image: url("../../../images/icons/48/plugin.png");
1009         background-position: center center;
1010         background-repeat: no-repeat;
1011 }
1012 .oauthapp a {
1013         float: left;
1014 }
1015
1016 /* contacts */
1017 .contact-entry-wrapper {
1018         width: 50px; float: left;
1019 }
1020
1021 /* photo */
1022 .lframe {
1023         float: left;
1024         margin: 0px 10px 10px 0px;
1025 }
1026
1027 /* profile match wrapper */
1028 .profile-match-wrapper {
1029         float: left;
1030         width: 90px;
1031         height: 90px;
1032         margin-bottom: 20px;
1033         .contact-photo { 
1034                 width: 80px; height: 80px;
1035                 img { width: 80px; height: 80px; }
1036         }
1037         .contact-photo-menu-button {
1038                 left: 0px;
1039                 top: 63px;
1040         }       
1041 }
1042
1043
1044 /* page footer */
1045 footer { height: 100px; display: table-row; }
1046
1047 .pager {
1048     margin-top: 25px;
1049     clear: both;
1050 }
1051