1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?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> //
- /* ***************************************
- Profile
- *************************************** */
- .profile {
- float: left;
- margin-bottom: 15px;
- }
- .profile .elgg-inner {
- border: 1px solid #DCDCDC;
- border-radius: 3px;
- }
- #profile-details {
- margin-left: 20px;
- padding: 15px;
- }
- /*** ownerblock ***/
- .profile-admin-menu {
- display: none;
- }
- .profile-admin-menu-wrapper a {
- display: block;
- margin: 3px 0 5px 0;
- padding: 2px 4px 2px 16px;
- }
- .profile-admin-menu-wrapper:before {
- content: "\00BB";
- float: left;
- padding-top: 1px;
- }
- .profile-admin-menu-wrapper li a {
- color: #FF0000;
- margin-bottom: 0;
- }
- .profile-admin-menu-wrapper a:hover {
- color: #000;
- }
- /*** profile details ***/
- #profile-details .wire-status {
- margin-top: 10px;
- }
- #profile-details .odd {
- border-bottom: 1px solid #DCDCDC;
- margin: 0;
- padding: 5px 0;
- }
- #profile-details .even {
- border-bottom: 1px solid #DCDCDC;
- margin: 0;
- padding: 5px 0;
- }
- .profile-aboutme-title {
- margin: 0;
- padding: 5px 4px 2px 0;
- }
- .profile-aboutme-contents {
- padding: 0;
- }
- .profile-banned-user {
- border: 1px solid red;
- padding: 4px 8px;
- border-radius: 3px;
- }
|