mdn-docs.css 692 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. .mdn-container {
  5. height: 300px;
  6. margin: 4px;
  7. overflow: auto;
  8. box-sizing: border-box;
  9. display: flex;
  10. flex-direction: column;
  11. }
  12. .mdn-container header,
  13. .mdn-container footer {
  14. flex: 1;
  15. padding: 0 1em;
  16. }
  17. .mdn-property-info {
  18. flex: 10;
  19. padding: 0 1em;
  20. overflow: auto;
  21. transition: opacity 400ms ease-in;
  22. }
  23. .mdn-syntax {
  24. margin-top: 1em;
  25. }
  26. .devtools-throbber {
  27. align-self: center;
  28. opacity: 0;
  29. }
  30. .mdn-visit-page {
  31. display: inline-block;
  32. padding: 1em 0;
  33. }