1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- body {
- margin: 0;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
- "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
- sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- background-color: #222;
- color: #ccc;
- font-weight: 500;
- }
- code {
- font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
- monospace;
- }
- button {
- border-radius: 0px;
- border: 1px solid #555;
- padding: 8px;
- background-color: #555;
- color: #fff;
- font-weight: 600;
- cursor: pointer;
- transition: background-color 300ms;
- }
- button:hover {
- background-color: #777;
- }
- button:focus {
- outline: none;
- border: 1px solid #999;
- }
- button::-moz-focus-inner {
- border: 0;
- }
- button:disabled {
- color: #777;
- background-color: #333;
- cursor: default;
- }
- #root {
- position: absolute;
- width: 100% !important;
- height: 100% !important;
- }
- .fade-enter {
- opacity: 0;
- }
- .fade-enter-active {
- opacity: 1;
- transition: opacity 500ms;
- }
- .fade-exit {
- position: absolute;
- z-index: 1;
- opacity: 1;
- }
- .fade-exit-active {
- position: absolute;
- z-index: 1;
- opacity: 0;
- transition: opacity 500ms;
- }
|