commonInterface.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. ** MediaWiki style sheet for common core styles on interfaces
  3. */
  4. /* Categories */
  5. .catlinks {
  6. border: 1px solid #aaa;
  7. background-color: #f9f9f9;
  8. padding: 5px;
  9. margin-top: 1em;
  10. clear: both;
  11. }
  12. /* User Message */
  13. .usermessage {
  14. background-color: #ffce7b;
  15. border: 1px solid #ffa500;
  16. color: black;
  17. font-weight: bold;
  18. margin: 2em 0 1em;
  19. padding: .5em 1em;
  20. vertical-align: middle;
  21. }
  22. /* Site Notice (includes notices from CentralNotice extension) */
  23. #siteNotice {
  24. position: relative;
  25. text-align: center;
  26. margin: 0;
  27. }
  28. #localNotice {
  29. margin-bottom: 0.9em;
  30. }
  31. /* First h1 */
  32. .firstHeading,
  33. #firstHeading {
  34. margin-bottom: .1em;
  35. /* These two rules hack around bug 2013 (fix for more limited bug 11325).
  36. * When bug 2013 is fixed properly, they should be removed. */
  37. line-height: 1.2em;
  38. padding-bottom: 0;
  39. }
  40. /* Sub-navigation */
  41. #siteSub {
  42. display: none;
  43. }
  44. #jump-to-nav {
  45. /* Negate #contentSub's margin and replicate it so that the jump to links don't affect the spacing */
  46. margin-top: -1.4em;
  47. margin-bottom: 1.4em
  48. }
  49. #contentSub, #contentSub2 {
  50. font-size: 84%;
  51. line-height: 1.2em;
  52. margin: 0 0 1.4em 1em;
  53. color: #7d7d7d;
  54. width: auto;
  55. }
  56. span.subpages {
  57. display: block;
  58. }