]> 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
547 /* editor */
548 .jothidden { display: none; }
549 #jot {
550
551         width: 100%;
552         margin: 0px 2em 20px 0px;
553         
554         
555         .profile-jot-text {
556                 height: 1em; width: 99%; font-size: 10px;
557                 color: @CommentBoxEmptyColor;
558                 border: 1px solid @CommentBoxEmptyBorderColor;
559                 padding:0.3em;
560         }
561
562         #jot-tools {
563                 margin: 0px; padding: 0px;
564                 height: 40px; overflow: none;
565                 width: 800px;
566                 background-color: @JotToolsBackgroundColor;
567                 border-bottom: 2px solid @JotToolsBorderColor;
568                 li {
569                         list-style: none;
570                         float: left;
571                         width: 80px;
572                         height: 40px;
573                         border-bottom: 2px solid @JotToolsBorderColor;
574                         a {
575                                 display: block;
576                                 color: @JotToolsText;
577                                 width: 100%;
578                                 height:40px;
579                                 text-align: center;
580                                 line-height: 40px;
581                                 overflow: hidden;
582                         }
583                 }
584                 li:hover {
585                         background-color: @JotToolsOverBackgroundColor;
586                         border-bottom: 2px solid @JotToolsOverBorderColor;
587                 }
588                 li.perms {
589                         float: right;
590                         width: 40px;
591                         a.unlock {
592                                 width: 30px;
593                                 border-left: 10px solid @JotPermissionUnlockBackgroundColor;
594                                 background-color: @JotPermissionUnlockBackgroundColor;
595                         }
596                         a.lock {
597                                 width: 30px;
598                                 border-left: 10px solid @JotPermissionLockBackgroundColor;
599                                 background-color: @JotPermissionLockBackgroundColor;
600                         }
601                         
602                 }
603                 li.submit {
604                         float: right;
605                         background-color: @JotSubmitBackgroundColor;
606                         border-bottom: 2px solid @JotSubmitBackgroundColor;
607                         border-right: 1px solid @Grey4;
608                         border-left: 1px solid @Grey4;
609                         input {
610                                 border: 0px; margin: 0px; padding: 0px;
611                                 background-color: @JotSubmitBackgroundColor;
612                                 color: @JotSubmitText;
613                                 width: 80px; height: 40px;
614                                 line-height: 40px;
615                         }
616                         input:hover {
617                                 background-color: @JotSubmitOverBackgroundColor;
618                                 color: @JotSubmitOverText;
619                         }
620                 }
621                 li.loading {
622                         float: right;
623                         background-color: @JotLoadingBackgroundColor;
624                         width:  20px;
625                         vertical-align: center;
626                         text-align: center;
627                         img { margin-top: 10px; }
628                         border-top: 2px solid @JotToolsBorderColor;
629                         height: 38px;
630                 }
631         }
632
633         #jot-title {
634                 border: 0px;
635                 margin: 0px;
636                 height: 20px;
637                 width: 700px;
638                 font-weight: bold;
639                 border: 1px solid @BodyBackground;
640
641                 &:-webkit-input-placeholder {
642                         font-weight: normal;
643                 }
644
645                 &:-moz-placeholder {
646                         font-weight: normal;
647                 }               
648         
649                 &:hover { border: 1px solid @CommentBoxEmptyBorderColor }
650                 &:focus { border: 1px solid @CommentBoxEmptyBorderColor }
651         }
652         
653         #character-counter {
654                 width: 80px;
655                 float: right;
656                 text-align: right;
657                 height: 20px;
658                 line-height: 20px;
659                 padding-right: 20px;
660         }
661
662 }
663
664
665 /** buttons **/
666 /*input[type="submit"] {
667         border: 0px;
668     background-color: @ButtonBackgroundColor;
669     color: @ButtonColor;
670     padding: 0px 10px;
671         .rounded(5px);
672     height: 18px;
673 }*/
674
675
676 /** acl **/
677 #photo-edit-perms-select,
678 #photos-upload-permissions-wrapper,
679 #profile-jot-acl-wrapper{
680         display:block!important;
681 }
682
683
684
685 #acl-wrapper {
686         width: 690px;
687         float:left;
688 }
689 #acl-search {
690         float:right;
691         background: #ffffff url("../../../images/search_18.png") no-repeat right center;
692         padding-right:20px;
693 }
694 #acl-showall {
695         float: left;
696         display: block;
697         width: auto;
698         height: 18px;
699         background-color: #cccccc;
700         background-image: url("../../../images/show_all_off.png");
701         background-position: 7px 7px;
702         background-repeat: no-repeat;
703         padding: 7px 5px 0px 30px;
704         color: #999999;
705         .rounded(5px);
706 }
707 #acl-showall.selected {
708         color: #000000;
709         background-color: #ff9900;
710         background-image: url("../../../images/show_all_on.png");
711 }
712
713 #acl-list {
714         height: 210px;
715         border: 1px solid #cccccc;
716         clear: both;
717         margin-top: 30px;
718         overflow: auto;
719 }
720 #acl-list-content {
721         
722 }
723 .acl-list-item {
724         display: block;
725         width: 150px;
726         height: 30px;
727         border: 1px solid #cccccc;
728         margin: 5px;
729         float: left;
730 }
731 .acl-list-item img{
732         width:22px;
733         height: 22px;
734         float: left;
735         margin: 4px;
736 }
737 .acl-list-item p { height: 12px; font-size: 10px; margin: 0px; padding: 2px 0px 1px; overflow: hidden;}
738 .acl-list-item a { 
739         font-size: 8px;
740         display: block;
741         width: 40px;
742         height: 10px;
743         float: left;
744         color: #999999;
745         background-color: #cccccc;
746         background-position: 3px 3px;
747         background-repeat: no-repeat;
748         margin-right: 5px;
749         -webkit-border-radius: 2px ;
750         -moz-border-radius: 2px;
751         border-radius: 2px;
752         padding-left: 15px;
753 }
754 #acl-wrapper a:hover {
755         text-decoration: none;
756         color:#000000;
757 }
758 .acl-button-show { background-image: url("../../../images/show_off.png"); }
759 .acl-button-hide { background-image: url("../../../images/hide_off.png"); }
760
761 .acl-button-show.selected {
762         color: #000000;
763         background-color: #9ade00;
764         background-image: url("../../../images/show_on.png");
765 }
766 .acl-button-hide.selected {
767         color: #000000;
768         background-color: #ff4141;
769         background-image: url("../../../images/hide_on.png");
770 }
771 .acl-list-item.groupshow { border-color: #9ade00; }
772 .acl-list-item.grouphide { border-color: #ff4141; }
773 /** /acl **/
774
775 /** tab buttons **/
776 ul.tabs {
777     list-style-type: none;
778     padding-bottom: 10px;
779
780     li {
781         float: left;
782         margin-left: 20px;
783         
784         .active {
785                         border-bottom: 1px solid @LinkVisited;
786         }
787     }
788     
789 }
790
791
792 /**
793  * Form fields
794  */
795 .field {
796         margin-bottom: 10px;
797         padding-bottom: 10px;
798         overflow: auto;
799         width: 100%;
800
801
802         label {
803                 float: left;
804                 width: 200px;
805         }
806
807         input,
808         textarea {
809                 width: 400px;
810         }
811         textarea { height: 100px; }
812         .field_help {
813                 display: block;
814                 margin-left: 200px;
815                 color: #666666;
816                 
817         }
818
819
820         .onoff {
821                 float: left;
822                 width: 80px;
823         }
824         .onoff a {
825                 display: block;
826                 border:1px solid #666666;
827                 background-image:url("../../../images/onoff.jpg");
828                 background-repeat: no-repeat;
829                 padding: 4px 2px 2px 2px;
830                 height: 16px;
831                 text-decoration: none;
832         }
833         .onoff .off {
834                 border-color:#666666;
835                 padding-left: 40px;
836                 background-position: left center;
837                 background-color: #cccccc;
838                 color: #666666;
839                 text-align: right;
840         }
841         .onoff .on {
842                 border-color:#204A87;
843                 padding-right: 40px;
844                 background-position: right center;
845                 background-color: #D7E3F1;
846                 color: #204A87;
847                 text-align: left;
848         }
849         .hidden { display: none!important; }
850
851         &.radio .field_help { margin-left: 0px; }
852 }
853
854 #profile-edit-links li {
855         list-style: none;
856 }
857
858 /* oauth */
859 .oauthapp {
860         height: auto; overflow: auto;
861         border-bottom: 2px solid #cccccc;
862         padding-bottom: 1em;
863         margin-bottom: 1em;     
864 }
865 .oauthapp img {
866         float: left;
867         width: 48px; height: 48px;
868         margin: 10px;
869 }
870 .oauthapp img.noicon {
871         background-image: url("../../../images/icons/48/plugin.png");
872         background-position: center center;
873         background-repeat: no-repeat;
874 }
875 .oauthapp a {
876         float: left;
877 }
878
879 /* contacts */
880 .contact-entry-wrapper {
881         width: 50px; float: left;
882 }
883
884 /* photo */
885 .lframe {
886         float: left;
887         margin: 0px 10px 10px 0px;
888 }
889
890 /* profile match wrapper */
891 .profile-match-wrapper {
892         float: left;
893         width: 90px;
894         height: 90px;
895         margin-bottom: 20px;
896         .contact-photo { 
897                 width: 80px; height: 80px;
898                 img { width: 80px; height: 80px; }
899         }
900         .contact-photo-menu-button {
901                 left: 0px;
902                 top: 63px;
903         }       
904 }
905
906
907 /* page footer */
908 footer { height: 100px; display: table-row; }