aboutsummaryrefslogtreecommitdiff
path: root/app/src/styles/Dashboard.module.css
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/Dashboard.module.css
parent8941213c8d94f3ad84e07e467e78105dc7fed734 (diff)
TOO MUCH STUFF
Diffstat (limited to 'app/src/styles/Dashboard.module.css')
-rw-r--r--app/src/styles/Dashboard.module.css74
1 files changed, 74 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