From b247dc24dee015c10c8ebd6a0f2c962a51694514 Mon Sep 17 00:00:00 2001
From: snipe <72265661+notsniped@users.noreply.github.com>
Date: Sun, 11 Dec 2022 21:00:13 +0530
Subject: [PATCH 1/2] Add quick-action buttons for organization GitHub page and
Discord server to website title panel
---
index.html | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/index.html b/index.html
index 946fdde..c77bd39 100644
--- a/index.html
+++ b/index.html
@@ -31,6 +31,14 @@
+
+
+
+
+
+
+
+
From 8f3b51fe0697d83da1f6bf017da778992278daaf Mon Sep 17 00:00:00 2001
From: snipe <72265661+notsniped@users.noreply.github.com>
Date: Sun, 11 Dec 2022 21:01:12 +0530
Subject: [PATCH 2/2] Add style configuration for quick-action buttons in
website
---
style.css | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/style.css b/style.css
index def44a1..2fc4718 100644
--- a/style.css
+++ b/style.css
@@ -60,6 +60,26 @@ body {
font-size: 23px;
font-family: 'Roboto Mono', monospace;
}
+#quick-action-button-row button {
+ border-radius: 8px;
+ background-color: transparent;
+ font-size: 16px;
+ color: white;
+ border-color: white;
+ border-width: 1px;
+ border-style: solid;
+ padding: 10px;
+ font-family: 'Roboto Mono', monospace;
+ margin-left: 20px;
+ margin-right: 20px;
+ width: 40%;
+}
+#quick-action-button-row button:hover {
+ cursor: pointer;
+ color: rgb(160, 92, 224);
+ background-color: white;
+ font-weight: bold;
+}
.content-container {
margin-left: 30px;