暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

output.css 539B

123456789101112131415161718192021222324252627282930
  1. .page-background {
  2. background: rgb(204,204,204);
  3. }
  4. body {
  5. display: flex;
  6. justify-content:center;
  7. align-content:center;
  8. }
  9. .page-preview {
  10. background: white;
  11. margin: 0 auto;
  12. margin-bottom: 16px;
  13. box-shadow: 0 0 8px rgba(0,0,0,0.5);
  14. }
  15. @media print {
  16. .page-preview {
  17. margin: 0;
  18. box-shadow: 0;
  19. background-color: white;
  20. }
  21. .page-background {
  22. margin: 0;
  23. box-shadow: 0;
  24. /* Set the background to gray to visualize the page size in the print preview */
  25. background-color: gray;
  26. }
  27. }