css.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?php
  2. /**
  3. * Elgg Profile CSS
  4. *
  5. * @package Profile
  6. */
  7. ?>
  8. /* <style> /**/
  9. /* ***************************************
  10. Profile
  11. *************************************** */
  12. .profile {
  13. float: left;
  14. margin-bottom: 15px;
  15. }
  16. .profile .elgg-inner {
  17. border: 1px solid #DCDCDC;
  18. border-radius: 3px;
  19. }
  20. #profile-details {
  21. padding: 15px;
  22. }
  23. /*** ownerblock ***/
  24. #profile-owner-block {
  25. width: 200px;
  26. float: left;
  27. border-right: 1px solid #DCDCDC;
  28. padding: 15px;
  29. }
  30. #profile-owner-block .large {
  31. margin-bottom: 10px;
  32. }
  33. #profile-owner-block a.elgg-button-action {
  34. margin-bottom: 4px;
  35. display: table;
  36. }
  37. .profile-admin-menu {
  38. display: none;
  39. }
  40. .profile-admin-menu-wrapper a {
  41. display: block;
  42. margin: 3px 0 5px 0;
  43. padding: 2px 4px 2px 16px;
  44. }
  45. .profile-admin-menu-wrapper:before {
  46. content: "\00BB";
  47. float: left;
  48. padding-top: 1px;
  49. }
  50. .profile-admin-menu-wrapper li a {
  51. color: #FF0000;
  52. margin-bottom: 0;
  53. }
  54. .profile-admin-menu-wrapper a:hover {
  55. color: #000;
  56. }
  57. /*** profile details ***/
  58. #profile-details .wire-status {
  59. margin-top: 10px;
  60. }
  61. #profile-details .odd {
  62. border-bottom: 1px solid #DCDCDC;
  63. margin: 0;
  64. padding: 5px 0;
  65. }
  66. #profile-details .even {
  67. border-bottom: 1px solid #DCDCDC;
  68. margin: 0;
  69. padding: 5px 0;
  70. }
  71. .profile-aboutme-title {
  72. margin: 0;
  73. padding: 5px 4px 2px 0;
  74. }
  75. .profile-aboutme-contents {
  76. padding: 0;
  77. }
  78. .profile-banned-user {
  79. margin: 10px 0;
  80. padding: 20px;
  81. color: #B94A48;
  82. background-color: #F8E8E8;
  83. border: 1px solid #E5B7B5;
  84. border-radius: 5px;
  85. }
  86. .profile-banned-user h4 {
  87. color: #B94A48;
  88. }