css.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. /**
  3. * Modbash Clean Elgg Theme
  4. *
  5. * Copyright (c) 2015 ModBash
  6. *
  7. * @author Shane Barron <admin@modbash.com>
  8. * @copyright 2015 SocialApparatus
  9. * @license GNU General Public License (GPL) version 2
  10. * @version 1
  11. * @link http://modbash.com
  12. */
  13. ?>
  14. //<style> //
  15. /* ***************************************
  16. Profile
  17. *************************************** */
  18. .profile {
  19. float: left;
  20. margin-bottom: 15px;
  21. }
  22. .profile .elgg-inner {
  23. border: 1px solid #DCDCDC;
  24. border-radius: 3px;
  25. }
  26. #profile-details {
  27. padding: 15px;
  28. }
  29. /*** ownerblock ***/
  30. .profile-admin-menu {
  31. display: none;
  32. }
  33. .profile-admin-menu-wrapper a {
  34. display: block;
  35. margin: 3px 0 5px 0;
  36. padding: 2px 4px 2px 16px;
  37. }
  38. .profile-admin-menu-wrapper:before {
  39. content: "\00BB";
  40. float: left;
  41. padding-top: 1px;
  42. }
  43. .profile-admin-menu-wrapper li a {
  44. color: #FF0000;
  45. margin-bottom: 0;
  46. }
  47. .profile-admin-menu-wrapper a:hover {
  48. color: #000;
  49. }
  50. /*** profile details ***/
  51. #profile-details .wire-status {
  52. margin-top: 10px;
  53. }
  54. #profile-details .odd {
  55. border-bottom: 1px solid #DCDCDC;
  56. margin: 0;
  57. padding: 5px 0;
  58. }
  59. #profile-details .even {
  60. border-bottom: 1px solid #DCDCDC;
  61. margin: 0;
  62. padding: 5px 0;
  63. }
  64. .profile-aboutme-title {
  65. margin: 0;
  66. padding: 5px 4px 2px 0;
  67. }
  68. .profile-aboutme-contents {
  69. padding: 0;
  70. }
  71. .profile-banned-user {
  72. border: 1px solid red;
  73. padding: 4px 8px;
  74. border-radius: 3px;
  75. }