css.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. margin-left: 20px;
  28. padding: 15px;
  29. }
  30. /*** ownerblock ***/
  31. .profile-admin-menu {
  32. display: none;
  33. }
  34. .profile-admin-menu-wrapper a {
  35. display: block;
  36. margin: 3px 0 5px 0;
  37. padding: 2px 4px 2px 16px;
  38. }
  39. .profile-admin-menu-wrapper:before {
  40. content: "\00BB";
  41. float: left;
  42. padding-top: 1px;
  43. }
  44. .profile-admin-menu-wrapper li a {
  45. color: #FF0000;
  46. margin-bottom: 0;
  47. }
  48. .profile-admin-menu-wrapper a:hover {
  49. color: #000;
  50. }
  51. /*** profile details ***/
  52. #profile-details .wire-status {
  53. margin-top: 10px;
  54. }
  55. #profile-details .odd {
  56. border-bottom: 1px solid #DCDCDC;
  57. margin: 0;
  58. padding: 5px 0;
  59. }
  60. #profile-details .even {
  61. border-bottom: 1px solid #DCDCDC;
  62. margin: 0;
  63. padding: 5px 0;
  64. }
  65. .profile-aboutme-title {
  66. margin: 0;
  67. padding: 5px 4px 2px 0;
  68. }
  69. .profile-aboutme-contents {
  70. padding: 0;
  71. }
  72. .profile-banned-user {
  73. border: 1px solid red;
  74. padding: 4px 8px;
  75. border-radius: 3px;
  76. }