aboutsummaryrefslogtreecommitdiff
path: root/app/src/styles
diff options
context:
space:
mode:
authorParker <contact@pkrm.dev>2024-11-10 16:36:16 -0600
committerParker <contact@pkrm.dev>2024-11-10 16:36:16 -0600
commit691aa744a0398f185b3ca98a36fbd83806c7786c (patch)
tree7840f31c30bb6eda903abd6bbf4dbfb2ac590966 /app/src/styles
parent8941213c8d94f3ad84e07e467e78105dc7fed734 (diff)
TOO MUCH STUFF
Diffstat (limited to 'app/src/styles')
-rw-r--r--app/src/styles/Dashboard.module.css74
-rw-r--r--app/src/styles/Login.module.css87
2 files changed, 161 insertions, 0 deletions
diff --git a/app/src/styles/Dashboard.module.css b/app/src/styles/Dashboard.module.css
new file mode 100644
index 0000000..042a2f1
--- /dev/null
+++ b/app/src/styles/Dashboard.module.css
@@ -0,0 +1,74 @@
+body {
+ margin: 0;
+ padding: 0;
+ font-family: Arial, sans-serif;
+ background-color: #2c3338;
+}
+
+#container {
+ display: flex;
+ justify-content: center;
+ margin-top: 100px;
+}
+
+
+table {
+ margin: 20px 0 20px 0;
+ text-align: center;
+ font-size: 25px;
+ width: 1000px;
+ color: #ccc;
+ border-collapse: collapse;
+ overflow: hidden;
+}
+
+/* Center all sub tables */
+.log-table-row table {
+ margin: 0 auto;
+}
+
+.log-table-row table {
+ width: 90%;
+}
+
+table th {
+ background-color: #415eac;
+ border: 2px solid #ccc;
+ padding: 10px;
+}
+
+.link-table-row {
+ border: 2px solid #ccc;
+}
+
+table td {
+ padding: 10px;
+}
+
+.link-table-row td {
+ padding: 20px;
+}
+
+.log-table-row table td {
+ background-color: #3b4148;
+ padding: 10px;
+}
+
+.log-table-row table tr {
+ border: 2px solid #ccc;
+}
+
+.link-button {
+ background-color: #3b4148;
+ color: #ccc;
+ border: none;
+ padding: 10px;
+ cursor: pointer;
+ font-size: 25px;
+ border-radius: 5px;
+}
+
+.fa-trash:hover {
+ color: rgb(238, 86, 86);
+ cursor: pointer;
+} \ No newline at end of file
diff --git a/app/src/styles/Login.module.css b/app/src/styles/Login.module.css
new file mode 100644
index 0000000..b2bcddf
--- /dev/null
+++ b/app/src/styles/Login.module.css
@@ -0,0 +1,87 @@
+body {
+ margin: 0;
+ padding: 0;
+ font-family: Arial, sans-serif;
+ background-color: #2c3338;
+}
+
+#container {
+ font-size: 17px;
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ text-align: center;
+}
+
+#loginText,
+#signupText {
+ color: #ccc;
+ font-size: 30px;
+ font-weight: 600;
+ border: 2px solid #606468;
+ padding: 10px;
+ border-radius: 5px;
+ margin: 0 auto;
+}
+
+input {
+ display: block;
+ margin: 10px auto;
+ width: 300px;
+ border-radius: 5px;
+ padding: 15px;
+ color: #ccc;
+ background-color: #3b4148;
+ border: none;
+ font-size: 17px;
+}
+
+button {
+ display: block;
+ margin: 10px auto;
+ width: 100%;
+ border-radius: 5px;
+ padding: 15px;
+ color: #ccc;
+ background-color: #415eac;
+ border: none;
+ font-size: 17px;
+ cursor: pointer;
+ transition: background-color 0.2s ease, transform 0.3s ease;
+}
+
+button:hover {
+ background-color: #2e4781;
+}
+
+button:active {
+ transform: scale(0.95);
+}
+
+#error {
+ color: #ee6161;
+}
+
+.link {
+ text-decoration: underline;
+ color: #ccc;
+
+}
+
+.link:hover {
+ text-decoration: none;
+ color: #415eac;
+}
+
+#bottomText {
+ color: #606468;
+}
+
+.visible {
+ visibility: visible;
+}
+
+.hidden {
+ visibility: hidden;
+} \ No newline at end of file