App.css 858 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .App {
  2. }
  3. .App-logo {
  4. height: 40vmin;
  5. pointer-events: none;
  6. }
  7. @media (prefers-reduced-motion: no-preference) {
  8. .App-logo {
  9. animation: App-logo-spin infinite 20s linear;
  10. }
  11. }
  12. .App-header {
  13. background-color: #282c34;
  14. min-height: 100vh;
  15. display: flex;
  16. flex-direction: column;
  17. align-items: center;
  18. justify-content: center;
  19. font-size: calc(10px + 2vmin);
  20. color: white;
  21. }
  22. .App-link {
  23. color: #61dafb;
  24. }
  25. @keyframes App-logo-spin {
  26. from {
  27. transform: rotate(0deg);
  28. }
  29. to {
  30. transform: rotate(360deg);
  31. }
  32. }
  33. #components-layout-demo-top-side-2 .logo {
  34. float: left;
  35. width: 120px;
  36. height: 31px;
  37. margin: 16px 24px 16px 0;
  38. background: rgba(255, 255, 255, 0.3);
  39. }
  40. .ant-row-rtl #components-layout-demo-top-side-2 .logo {
  41. float: right;
  42. margin: 16px 0 16px 24px;
  43. }
  44. .site-layout-background {
  45. background: #fff;
  46. }