obs.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. @charset 'UTF-8';
  2. * {
  3. font-family: "Source Sans Pro", sans-serif;
  4. }
  5. body {
  6. /* white_carbon2.png */
  7. background: #f6f8f9 url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAIBAMAAAA2IaO4AAAAFVBMVEX19PXo5ujv7u/o5ej29fb18/X29PaHCvlgAAAAIklEQVQIHWNgEARCBiUgNHQQdAAzGAIgYglKDIIOgglgMQA+hAOJM/f1wAAAAABJRU5ErkJggg==");
  8. }
  9. div#doc-content {
  10. background: rgb(244, 244, 244);
  11. }
  12. /* glowing stuff */
  13. h1.glow, h2.glow, h3.glow,
  14. h4.glow, h5.glow, h6.glow {
  15. text-shadow: 0 0 15px rgb(183, 28, 28);
  16. }
  17. div.memitem.glow {
  18. box-shadow: 0 0 15px rgb(183, 28, 28);
  19. }
  20. /* header */
  21. div#titlearea {
  22. background: #f5f5f5;
  23. margin-bottom: 20px;
  24. padding: 10px 0;
  25. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.35);
  26. border-bottom: 0;
  27. background-image: linear-gradient(
  28. bottom, rgb(239,239,239) 0%, rgb(255,255,255) 100%);
  29. background-image: -o-linear-gradient(
  30. bottom, rgb(239,239,239) 0%, rgb(255,255,255) 100%);
  31. background-image: -moz-linear-gradient(
  32. bottom, rgb(239,239,239) 0%, rgb(255,255,255) 100%);
  33. background-image: -webkit-linear-gradient(
  34. bottom, rgb(239,239,239) 0%, rgb(255,255,255) 100%);
  35. }
  36. div#projectname {
  37. font-family: 'Source Sans Pro', sans-serif;
  38. font-size: 25px;
  39. font-weight: bold;
  40. }
  41. div#projectbrief {
  42. font-family: 'Source Sans Pro', sans-serif;
  43. font-size: 13px;
  44. }
  45. /* the first tab bar is different ... */
  46. div.tabs {
  47. background: #3b3d3e;
  48. height: 30px;
  49. font-size: 14px;
  50. }
  51. div.tabs li {
  52. background: transparent;
  53. line-height: 30px;
  54. }
  55. div.tabs li:hover {
  56. background: rgb(46, 46, 46);
  57. }
  58. div.tabs a {
  59. color: rgba(255, 255, 255, 0.75);
  60. background: transparent;
  61. text-transform: uppercase;
  62. text-shadow: none;
  63. }
  64. div.tabs a:hover {
  65. color: rgb(233, 233, 233);
  66. background: transparent;
  67. }
  68. div.tabs li.current a {
  69. color: rgb(74, 74, 74);
  70. background: rgb(250, 250, 250);
  71. text-shadow: none;
  72. }
  73. /* the other tabs are the same */
  74. div.tabs2,
  75. div.tabs3 {
  76. background: rgb(250, 250, 250);
  77. border: 1px solid rgb(196, 196, 196);
  78. border-top: 0;
  79. font-size: 13px;
  80. }
  81. div.tabs2 li,
  82. div.tabs3 li {
  83. background: transparent;
  84. line-height: 30px;
  85. }
  86. div.tabs2 a,
  87. div.tabs3 a {
  88. padding: 0 8px;
  89. color: rgb(183, 28, 28);
  90. background: transparent;
  91. }
  92. div.tabs2 a:hover,
  93. div.tabs3 a:hover {
  94. color: rgb(74, 74, 74);
  95. background: transparent;
  96. text-shadow: none;
  97. }
  98. div.tabs2 li.current a,
  99. div.tabs3 li.current a {
  100. color: rgb(74, 74, 74);
  101. background: transparent;
  102. text-shadow: none;
  103. }
  104. /* nav path (at the bottom of the page) */
  105. div.navpath {
  106. background: rgb(233, 233, 233);
  107. border: 1px solid rgb(196, 196, 196);
  108. border-width: 1px 0;
  109. font-size: 13px;
  110. line-height: 20px;
  111. }
  112. div.navpath ul {
  113. background: transparent;
  114. border: 0;
  115. }
  116. /* directories */
  117. div.directory {
  118. border-color: rgba(0, 0, 0, 0.35);
  119. }