overlay-child.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. html.js {
  2. background:transparent !important;
  3. overflow-y:scroll;
  4. overflow-x:hidden;
  5. }
  6. html.js body {
  7. background: transparent !important;
  8. padding:20px 40px;
  9. }
  10. #overlay {
  11. display:block;
  12. position:relative;
  13. }
  14. #overlay-titlebar {
  15. position:relative;
  16. z-index:100;
  17. }
  18. #overlay-title { display:none; }
  19. #overlay-close-wrapper {
  20. position:absolute;
  21. right:0px;
  22. width:30px;
  23. }
  24. #overlay-close,
  25. #overlay-close:hover {
  26. -moz-border-radius:5px;
  27. -webkit-border-radius:5px;
  28. border-radius:5px;
  29. background:#444 url(images/buttons.png) -4000px 50% no-repeat;
  30. display: block;
  31. position: absolute;
  32. height: 20px;
  33. width: 20px;
  34. margin: 5px;
  35. padding: 0px;
  36. }
  37. #overlay-close:active { background:#333 url(images/buttons.png) -4400px 50% no-repeat; }
  38. #overlay-content {
  39. background:#fff;
  40. position:relative;
  41. padding:0px 0px 10px;
  42. min-height:400px;
  43. border-radius:6px 6px 5px 5px;
  44. box-shadow:#111 0px 0px 10px;
  45. -moz-border-radius:6px 6px 5px 5px;
  46. -moz-box-shadow:#111 0px 0px 10px;
  47. -webkit-border-radius:6px 6px 5px 5px;
  48. -webkit-box-shadow:#111 0px 0px 10px;
  49. }
  50. #overlay-content .limiter { margin:0px 20px; }
  51. #branding {
  52. border-radius:5px 5px 0px 0px;
  53. -moz-border-radius:5px 5px 0px 0px;
  54. -webkit-border-radius:5px 5px 0px 0px;
  55. }
  56. #branding .limiter { margin-left:0px; }
  57. #branding .breadcrumb-depth-0 a,
  58. #branding .breadcrumb-depth-0 span {
  59. border-radius:5px 0px 0px 0px;
  60. -moz-border-radius:5px 0px 0px 0px;
  61. -webkit-border-radius:5px 0px 0px 0px;
  62. }
  63. /**
  64. * Tabs on the overlay.
  65. */
  66. #overlay-tabs { display:none; }
  67. /**
  68. * Shortcut integration.
  69. */
  70. #overlay-titlebar .add-or-remove-shortcuts {
  71. position:absolute;
  72. top:5px;
  73. right:25px;
  74. padding:0px;
  75. }
  76. #overlay-titlebar .add-or-remove-shortcuts a { background-color:#444; }
  77. #overlay-titlebar .add-or-remove-shortcuts a:active {
  78. background-color:#333;
  79. text-shadow:#555 0px 1px 0px;
  80. }