Spaces:
Runtime error
Runtime error
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| } | |
| body { | |
| font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, | |
| Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; | |
| line-height: 1.6; | |
| padding: 2rem; | |
| max-width: 800px; | |
| margin: 0 auto; | |
| background-color: #f8f9fa; | |
| } | |
| #app { | |
| text-align: center; | |
| } | |
| h1 { | |
| margin-bottom: 2rem; | |
| color: #333; | |
| font-size: 2.5rem; | |
| } | |
| h2 { | |
| color: #555; | |
| margin-bottom: 1rem; | |
| font-size: 1.5rem; | |
| } | |
| .auth-container { | |
| margin: 2rem 0; | |
| } | |
| .token-form { | |
| max-width: 400px; | |
| margin: 0 auto; | |
| display: flex; | |
| gap: 1rem; | |
| } | |
| .token-form input { | |
| flex: 1; | |
| } | |
| .auth-button { | |
| background-color: #ff9d00; | |
| color: white; | |
| border: none; | |
| padding: 0.8rem 1.5rem; | |
| border-radius: 6px; | |
| font-size: 1rem; | |
| cursor: pointer; | |
| transition: background-color 0.2s ease; | |
| } | |
| .auth-button:hover { | |
| background-color: #ff8500; | |
| } | |
| .repo-form { | |
| margin: 2rem auto; | |
| max-width: 400px; | |
| display: flex; | |
| flex-wrap: wrap; | |
| gap: 1rem; | |
| } | |
| .repo-form select.repo-input { | |
| min-width: 200px; | |
| } | |
| #resource-group-container { | |
| width: 100%; | |
| } | |
| .repo-input { | |
| flex: 1; | |
| padding: 0.8rem; | |
| border: 2px solid #e0e0e0; | |
| border-radius: 6px; | |
| font-size: 1rem; | |
| transition: border-color 0.2s ease; | |
| } | |
| .repo-input:focus { | |
| outline: none; | |
| border-color: #ff9d00; | |
| } | |
| .repo-button { | |
| background-color: #ff9d00; | |
| color: white; | |
| border: none; | |
| padding: 0.8rem 1.5rem; | |
| border-radius: 6px; | |
| font-size: 1rem; | |
| cursor: pointer; | |
| transition: background-color 0.2s ease; | |
| white-space: nowrap; | |
| } | |
| .repo-button:hover { | |
| background-color: #ff8500; | |
| } | |
| #content { | |
| padding: 2rem; | |
| background-color: white; | |
| border-radius: 12px; | |
| margin-top: 2rem; | |
| box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); | |
| } | |
| .oauth-result { | |
| background-color: #f8f9fa; | |
| padding: 1.5rem; | |
| border-radius: 8px; | |
| text-align: left; | |
| overflow-x: auto; | |
| font-family: "Monaco", "Menlo", "Ubuntu Mono", "Consolas", monospace; | |
| font-size: 0.9rem; | |
| line-height: 1.4; | |
| color: #333; | |
| } | |