preview-head.html 570 B

12345678910111213141516171819202122232425
  1. <style>
  2. body.sb-show-main.sb-main-padded {
  3. padding: 0;
  4. }
  5. /* Following styles are just meant to avoid white flash when switching from one story to another */
  6. @keyframes fadeToTransparent {
  7. from {
  8. background-color: #393939;
  9. }
  10. to {
  11. background-color: transparent;
  12. }
  13. }
  14. html {
  15. animation: fadeToTransparent 500ms forwards ease-in;
  16. }
  17. body > .sb-preparing-docs {
  18. visibility: hidden;
  19. }
  20. body > .sb-preparing-story {
  21. visibility: hidden;
  22. }
  23. </style>