]> git.mxchange.org Git - friendica.git/blob - view/theme/quattro/quattro.less
Merge branch 'pull'
[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
321
322 /* widget */
323 .widget {
324         margin-bottom: 2em;
325         
326         h3 { padding: 0px; margin: 2px;}
327         .action { .opaque(0.1); }
328         input.action { .opaque(0.5); }
329         &:hover .title .action { .opaque(1); }
330         .tool:hover .action { .opaque(1); }
331         .tool:hover .action.ticked { .opaque(1); }
332
333         ul { padding: 0px;}
334         ul li {padding-left: 16px; min-height: 16px; list-style: none; }
335         
336         .tool.selected {
337                 background: url('../../../images/selected.png') no-repeat left center;
338         }
339         
340         /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
341         .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
342         
343 }
344
345 /* widget: search */
346 #add-search-popup {
347         width: 200px;
348         top: 18px;
349 }
350
351
352 /* section */
353 section { 
354         display: table-cell;
355         vertical-align: top;
356         width: 800px;
357         padding:0px 20px 0px 10px;
358 }
359
360 /* wall item */
361 .tread-wrapper { 
362         background-color: @ThreadBackgroundColor;
363         position: relative;
364         padding: 10px;
365         margin-bottom: 20px;
366         width: 780px;
367 }
368 .wall-item-decor { position: absolute; left: 790px; top: -10px;  width: 16px;}
369 .unstarred { display: none; }
370
371 .wall-item-container {
372         display: table;
373         width: 780px;
374         
375         .wall-item-item,
376         .wall-item-bottom { display: table-row; }
377         
378         .wall-item-bottom { .opaque(0.5); }
379         &:hover .wall-item-bottom { .opaque(1); }
380         .wall-item-info {
381                 display: table-cell;
382                 vertical-align: top;
383                 text-align: left;
384                 width: 60px;
385                 
386         } 
387         .wall-item-location {
388                 word-wrap: break-word;
389                 width: 50px;
390         }
391         .wall-item-content {
392                 display: table-cell;
393                 font-size: 12px;
394                 max-width: 720px;
395                 word-wrap: break-word;
396         }
397         .wall-item-content img { max-width: 710px; }
398         .wall-item-links,
399         .wall-item-actions { 
400                 display: table-cell; 
401                 vertical-align: middle; 
402                 
403                 .icon {
404                         .opaque(0.5);
405                 }
406                 .icon:hover  {
407                         .opaque(1.0);
408                 }               
409         }
410         
411         .wall-item-ago { padding-right: 40px; }
412         .wall-item-name { font-weight: bold; }
413         
414         .wall-item-actions-author { float: left; width: 20em; margin-top: 0.5em; }
415         .wall-item-actions-social { float: left; margin-top: 0.5em;
416                 a { margin-right: 3em; }
417          }
418         .wall-item-actions-tools { float: right; width: 15%; 
419                 a { float: right; }
420                 input { float: right; }
421         }
422         
423 }
424
425
426 .wall-item-container.comment {
427         /*margin-top: 50px;*/
428         .contact-photo { width: 32px; height: 32px; margin-left: 16px;
429                 /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
430         }       
431         .contact-photo-menu-button {
432                 top: 15px !important;
433                 left: 15px !important;
434         }
435         .wall-item-links { padding-left: 12px; }
436 }
437
438 .wall-item-comment-wrapper {
439         margin: 30px 2em 2em 60px;
440         .comment-edit-photo { display: none; }
441         textarea {      
442                 height: 1em; width: 100%; font-size: 10px;
443                 color: @CommentBoxEmptyColor;
444                 border: 1px solid @CommentBoxEmptyBorderColor;
445                 padding:0.3em;
446         }
447         .comment-edit-text-full {
448                 font-size: 14px;
449                 height: 4em;
450                 color: @CommentBoxFullColor;
451                 border: 1px solid @CommentBoxFullBorderColor;
452         }
453 }
454
455 .comment-edit-preview {
456         width: 710px;
457         border: 1px solid @Grey5;
458         margin-top: 10px;
459         
460         .contact-photo { width: 32px; height: 32px; margin-left: 16px;
461                 /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
462         }       
463         .contact-photo-menu-button {
464                 top: 15px !important;
465                 left: 15px !important;
466         }
467         .wall-item-links { padding-left: 12px; }
468
469         .wall-item-container { width: 700px; }
470         .tread-wrapper { width: 700px; padding: 0; margin: 10px 0;}
471
472
473 }
474
475
476
477 .wall-item-tags { padding-top: 5px; }
478 .tag {
479         background: url("../../../images/tag_b.png") no-repeat center left;
480         color: @TagColor;
481         padding-left: 3px;
482         a {
483                 padding-right: 8px;
484                 background: url("../../../images/tag.png") no-repeat center right;
485                 color: @TagColor;
486         }
487 }
488
489 .wwto { 
490         position: absolute !important; 
491         width: 25px; height: 25px; 
492     background: #FFFFFF;
493     border: 2px solid @Metalic3;
494     height: 25px;
495     width: 25px;
496     overflow: hidden;
497     padding: 1px;
498     position: absolute !important;
499     top: 40px;
500     left: 30px;
501     
502     .shadow(0px, 0px)
503 }
504 .wwto .contact-photo { width: 25px; height: 25px; }
505
506 /* contacts menu */
507 .contact-photo-wrapper { position: relative; }
508 .contact-photo { 
509         width: 48px; height: 48px;
510         img { width: 48px; height: 48px; }
511         overflow: hidden;
512         display: block;
513  }              
514 .contact-photo-menu-button {
515         display: none;
516         position: absolute;
517         left: -2px;
518         top: 31px;
519 }
520
521 .contact-wrapper {
522         float: left;
523         width: 90px;
524         height: 90px;
525         margin-bottom: 15px;
526         .contact-photo { 
527                 width: 80px; height: 80px;
528                 img { width: 80px; height: 80px; }
529         }
530         .contact-photo-menu-button {
531                 left: 0px;
532                 top: 63px;
533         }       
534 }
535 .directory-item {
536         float: left;
537         width: 200px;
538         height: 200px;
539         .contact-photo { 
540                 width: 175px; height: 175px;
541                 img { width: 175px; height: 175px; }
542         }
543 }
544 .contact-name { text-align: center; font-weight: bold; }
545 .contact-details { color: @Grey3;}
546 /* editor */
547 .jothidden { display: none; }
548 #jot {
549
550         width: 100%;
551         margin: 0px 2em 20px 0px;
552         
553         
554         .profile-jot-text {
555                 height: 1em; width: 99%; font-size: 10px;
556                 color: @CommentBoxEmptyColor;
557                 border: 1px solid @CommentBoxEmptyBorderColor;
558                 padding:0.3em;
559         }
560
561         #jot-tools {
562                 margin: 0px; padding: 0px;
563                 height: 40px; overflow: none;
564                 width: 800px;
565                 background-color: @JotToolsBackgroundColor;
566                 border-bottom: 2px solid @JotToolsBorderColor;
567                 li {
568                         list-style: none;
569                         float: left;
570                         width: 80px;
571                         height: 40px;
572                         border-bottom: 2px solid @JotToolsBorderColor;
573                         a {
574                                 display: block;
575                                 color: @JotToolsText;
576                                 width: 100%;
577                                 height:40px;
578                                 text-align: center;
579                                 line-height: 40px;
580                                 overflow: hidden;
581                         }
582                 }
583                 li:hover {
584                         background-color: @JotToolsOverBackgroundColor;
585                         border-bottom: 2px solid @JotToolsOverBorderColor;
586                 }
587                 li.perms {
588                         float: right;
589                         width: 40px;
590                         a.unlock {
591                                 width: 30px;
592                                 border-left: 10px solid @JotPermissionUnlockBackgroundColor;
593                                 background-color: @JotPermissionUnlockBackgroundColor;
594                         }
595                         a.lock {
596                                 width: 30px;
597                                 border-left: 10px solid @JotPermissionLockBackgroundColor;
598                                 background-color: @JotPermissionLockBackgroundColor;
599                         }
600                         
601                 }
602                 li.submit {
603                         float: right;
604                         background-color: @JotSubmitBackgroundColor;
605                         border-bottom: 2px solid @JotSubmitBackgroundColor;
606                         border-right: 1px solid @Grey4;
607                         border-left: 1px solid @Grey4;
608                         input {
609                                 border: 0px; margin: 0px; padding: 0px;
610                                 background-color: @JotSubmitBackgroundColor;
611                                 color: @JotSubmitText;
612                                 width: 80px; height: 40px;
613                                 line-height: 40px;
614                         }
615                         input:hover {
616                                 background-color: @JotSubmitOverBackgroundColor;
617                                 color: @JotSubmitOverText;
618                         }
619                 }
620                 li.loading {
621                         float: right;
622                         background-color: @JotLoadingBackgroundColor;
623                         width:  20px;
624                         vertical-align: center;
625                         text-align: center;
626                         img { margin-top: 10px; }
627                         border-top: 2px solid @JotToolsBorderColor;
628                         height: 38px;
629                 }
630         }
631
632         #jot-title {
633                 border: 0px;
634                 margin: 0px;
635                 height: 20px;
636                 width: 700px;
637                 font-weight: bold;
638                 border: 1px solid @BodyBackground;
639
640                 &:-webkit-input-placeholder {
641                         font-weight: normal;
642                 }
643
644                 &:-moz-placeholder {
645                         font-weight: normal;
646                 }               
647         
648                 &:hover { border: 1px solid @CommentBoxEmptyBorderColor }
649                 &:focus { border: 1px solid @CommentBoxEmptyBorderColor }
650         }
651         
652         #character-counter {
653                 width: 80px;
654                 float: right;
655                 text-align: right;
656                 height: 20px;
657                 line-height: 20px;
658                 padding-right: 20px;
659         }
660
661 }
662
663
664 /** buttons **/
665 /*input[type="submit"] {
666         border: 0px;
667     background-color: @ButtonBackgroundColor;
668     color: @ButtonColor;
669     padding: 0px 10px;
670         .rounded(5px);
671     height: 18px;
672 }*/
673
674
675 /** acl **/
676 #photo-edit-perms-select,
677 #photos-upload-permissions-wrapper,
678 #profile-jot-acl-wrapper{
679         display:block!important;
680 }
681
682
683
684 #acl-wrapper {
685         width: 690px;
686         float:left;
687 }
688 #acl-search {
689         float:right;
690         background: #ffffff url("../../../images/search_18.png") no-repeat right center;
691         padding-right:20px;
692 }
693 #acl-showall {
694         float: left;
695         display: block;
696         width: auto;
697         height: 18px;
698         background-color: #cccccc;
699         background-image: url("../../../images/show_all_off.png");
700         background-position: 7px 7px;
701         background-repeat: no-repeat;
702         padding: 7px 5px 0px 30px;
703         color: #999999;
704         .rounded(5px);
705 }
706 #acl-showall.selected {
707         color: #000000;
708         background-color: #ff9900;
709         background-image: url("../../../images/show_all_on.png");
710 }
711
712 #acl-list {
713         height: 210px;
714         border: 1px solid #cccccc;
715         clear: both;
716         margin-top: 30px;
717         overflow: auto;
718 }
719 #acl-list-content {
720         
721 }
722 .acl-list-item {
723         display: block;
724         width: 150px;
725         height: 30px;
726         border: 1px solid #cccccc;
727         margin: 5px;
728         float: left;
729 }
730 .acl-list-item img{
731         width:22px;
732         height: 22px;
733         float: left;
734         margin: 4px;
735 }
736 .acl-list-item p { height: 12px; font-size: 10px; margin: 0px; padding: 2px 0px 1px; overflow: hidden;}
737 .acl-list-item a { 
738         font-size: 8px;
739         display: block;
740         width: 40px;
741         height: 10px;
742         float: left;
743         color: #999999;
744         background-color: #cccccc;
745         background-position: 3px 3px;
746         background-repeat: no-repeat;
747         margin-right: 5px;
748         -webkit-border-radius: 2px ;
749         -moz-border-radius: 2px;
750         border-radius: 2px;
751         padding-left: 15px;
752 }
753 #acl-wrapper a:hover {
754         text-decoration: none;
755         color:#000000;
756 }
757 .acl-button-show { background-image: url("../../../images/show_off.png"); }
758 .acl-button-hide { background-image: url("../../../images/hide_off.png"); }
759
760 .acl-button-show.selected {
761         color: #000000;
762         background-color: #9ade00;
763         background-image: url("../../../images/show_on.png");
764 }
765 .acl-button-hide.selected {
766         color: #000000;
767         background-color: #ff4141;
768         background-image: url("../../../images/hide_on.png");
769 }
770 .acl-list-item.groupshow { border-color: #9ade00; }
771 .acl-list-item.grouphide { border-color: #ff4141; }
772 /** /acl **/
773
774 /** tab buttons **/
775 ul.tabs {
776     list-style-type: none;
777     padding-bottom: 10px;
778
779     li {
780         float: left;
781         margin-left: 20px;
782         
783         .active {
784                         border-bottom: 1px solid @LinkVisited;
785         }
786     }
787     
788 }
789
790
791 /**
792  * Form fields
793  */
794 .field {
795         margin-bottom: 10px;
796         padding-bottom: 10px;
797         overflow: auto;
798         width: 100%;
799
800
801         label {
802                 float: left;
803                 width: 200px;
804         }
805
806         input,
807         textarea {
808                 width: 400px;
809         }
810         textarea { height: 100px; }
811         .field_help {
812                 display: block;
813                 margin-left: 200px;
814                 color: #666666;
815                 
816         }
817
818
819         .onoff {
820                 float: left;
821                 width: 80px;
822         }
823         .onoff a {
824                 display: block;
825                 border:1px solid #666666;
826                 background-image:url("../../../images/onoff.jpg");
827                 background-repeat: no-repeat;
828                 padding: 4px 2px 2px 2px;
829                 height: 16px;
830                 text-decoration: none;
831         }
832         .onoff .off {
833                 border-color:#666666;
834                 padding-left: 40px;
835                 background-position: left center;
836                 background-color: #cccccc;
837                 color: #666666;
838                 text-align: right;
839         }
840         .onoff .on {
841                 border-color:#204A87;
842                 padding-right: 40px;
843                 background-position: right center;
844                 background-color: #D7E3F1;
845                 color: #204A87;
846                 text-align: left;
847         }
848         .hidden { display: none!important; }
849
850         &.radio .field_help { margin-left: 0px; }
851 }
852
853 #profile-edit-links li {
854         list-style: none;
855 }
856
857 /* oauth */
858 .oauthapp {
859         height: auto; overflow: auto;
860         border-bottom: 2px solid #cccccc;
861         padding-bottom: 1em;
862         margin-bottom: 1em;     
863 }
864 .oauthapp img {
865         float: left;
866         width: 48px; height: 48px;
867         margin: 10px;
868 }
869 .oauthapp img.noicon {
870         background-image: url("../../../images/icons/48/plugin.png");
871         background-position: center center;
872         background-repeat: no-repeat;
873 }
874 .oauthapp a {
875         float: left;
876 }
877
878 /* contacts */
879 .contact-entry-wrapper {
880         width: 50px; float: left;
881 }
882
883 /* photo */
884 .lframe {
885         float: left;
886         margin: 0px 10px 10px 0px;
887 }
888
889 /* profile match wrapper */
890 .profile-match-wrapper {
891         float: left;
892         width: 90px;
893         height: 90px;
894         margin-bottom: 20px;
895         .contact-photo { 
896                 width: 80px; height: 80px;
897                 img { width: 80px; height: 80px; }
898         }
899         .contact-photo-menu-button {
900                 left: 0px;
901                 top: 63px;
902         }       
903 }
904
905
906 /* page footer */
907 footer { height: 100px; display: table-row; }
908
909 .pager {
910     margin-top: 25px;
911     clear: both;
912 }