123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?php
- /**
- * Modbash Clean Elgg Theme
- *
- * Copyright (c) 2015 ModBash
- *
- * @author Shane Barron <admin@modbash.com>
- * @copyright 2015 SocialApparatus
- * @license GNU General Public License (GPL) version 2
- * @version 1
- * @link http://modbash.com
- */
- ?>
- /* <style> /**/
- #login-dropdown {
- position: absolute;
- top: 0;
- right: 0;
- z-index: 100;
- }
- #login-dropdown a {
- padding: 14px 18px;
- }
- /* ***************************************
- AVATAR UPLOADING & CROPPING
- *************************************** */
- #current-user-avatar {
- border-right: 1px solid #EBEBEB;
- }
- #avatar-croppingtool {
- border-top: 1px solid #DCDCDC;
- }
- #user-avatar-cropper {
- float: left;
- }
- #user-avatar-preview {
- float: left;
- position: relative;
- overflow: hidden;
- width: 100px;
- height: 100px;
- }
- /* ***************************************
- FRIENDS COLLECTIONS
- *************************************** */
- #friends_collections_accordian li {
- color: #666;
- }
- #friends_collections_accordian li h2 {
- border-radius: 3px;
- background: none repeat scroll 0 0 #F0F0F0;
- color: #444;
- cursor: pointer;
- font-size: 1.2em;
- margin: 10px 0;
- padding: 10px;
- }
- #friends_collections_accordian li h2:hover {
- background-color: #E5E5E5;
- }
- #friends_collections_accordian .friends_collections_controls {
- float: right;
- font-size: 70%;
- }
- #friends_collections_accordian .friends-picker-main-wrapper {
- background: none repeat scroll 0 0 #FFF;
- display: none;
- padding: 0;
- }
|