diff --git a/github-repo-analyzer/styles.css b/github-repo-analyzer/styles.css new file mode 100644 index 0000000..03d890b --- /dev/null +++ b/github-repo-analyzer/styles.css @@ -0,0 +1,59 @@ +body { + font-family: Arial, sans-serif; + line-height: 1.6; + color: #333; + max-width: 800px; + margin: 0 auto; + padding: 20px; +} + +h1, h2 { + color: #2c3e50; +} + +form { + margin-bottom: 20px; +} + +input[type="text"] { + padding: 10px; + width: 300px; + font-size: 16px; +} + +input[type="submit"] { + padding: 10px 20px; + background-color: #3498db; + color: white; + border: none; + cursor: pointer; + font-size: 16px; +} + +table { + border-collapse: collapse; + width: 100%; + margin-bottom: 20px; +} + +th, td { + text-align: left; + padding: 8px; + border-bottom: 1px solid #ddd; +} + +th { + background-color: #f2f2f2; +} + +img { + max-width: 100%; + height: auto; + margin-bottom: 20px; +} + +textarea { + width: 100%; + padding: 10px; + font-family: monospace; +}