From 693072bb4875bd84058e5924d37f6ac142428bad Mon Sep 17 00:00:00 2001 From: stochastic-sisyphus <102266523+stochastic-sisyphus@users.noreply.github.com> Date: Tue, 6 Aug 2024 20:29:11 -0500 Subject: [PATCH] Create styles.css --- github-repo-analyzer/styles.css | 59 +++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 github-repo-analyzer/styles.css 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; +}