custom.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. body, html, div, p, span, a, h1, h2, h3, h4, h5{
  2. margin : 0;
  3. padding : 0;
  4. }
  5. body, html{
  6. width : 100%;
  7. }
  8. body{
  9. background : url('../images/bkgd.png') repeat top left;
  10. color : white;
  11. font-family : tahoma;
  12. font-weight : lighter;
  13. padding-top : 10px;
  14. }
  15. body p{
  16. font-size : 14px;
  17. }
  18. body p a{
  19. font-size : 16px;
  20. }
  21. h1 {
  22. color : #E05E00;
  23. font-style : italic;
  24. }
  25. a{
  26. color : #E05E00;
  27. text-decoration : none;
  28. }
  29. a:hover{
  30. text-decoration : underline;
  31. }
  32. /* general */
  33. .clear {
  34. clear: both;
  35. }
  36. /* Header */
  37. .brand{
  38. color : #E05E00 !important;
  39. font-family : georgia;
  40. font-style : italic;
  41. }
  42. /* list stuff */
  43. #org{
  44. background-color : white;
  45. margin : 10px;
  46. padding : 10px;
  47. }
  48. #show-list{
  49. cursor : pointer;
  50. }
  51. /* bootstrap overrides */
  52. .alert-message{
  53. margin: 2px 0;
  54. }
  55. .topbar{
  56. position : absolute;
  57. }
  58. /* Custom chart styling */
  59. .jOrgChart {
  60. margin : 10px;
  61. padding : 20px;
  62. }
  63. /* Custom node styling */
  64. .jOrgChart .node {
  65. font-size : 14px;
  66. background-color : #35363B;
  67. border-radius : 8px;
  68. border : 4px solid white;
  69. color : #F38630;
  70. -moz-border-radius : 8px;
  71. }
  72. .node p{
  73. font-family : tahoma;
  74. font-size : 10px;
  75. line-height : 11px;
  76. padding : 2px;
  77. }