|
@@ -1,20 +1,21 @@
|
|
|
|
|
+:root {
|
|
|
|
|
+ --primary-color: #ff6b6b;
|
|
|
|
|
+ --edit-link-color: #54ccac;
|
|
|
|
|
+ --share-link-color: #7ccc54;
|
|
|
|
|
+ --participants-link-color: #cc54c6;
|
|
|
|
|
+ --hover-color: #5750d9;
|
|
|
|
|
+ --dark-hover-color: #e05555;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
.content {
|
|
.content {
|
|
|
- font-family: 'Arial', sans-serif;
|
|
|
|
|
- background-color: #f4f4f9;
|
|
|
|
|
- margin: 0;
|
|
|
|
|
- padding: 0;
|
|
|
|
|
- display: grid;
|
|
|
|
|
- place-items: center;
|
|
|
|
|
box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
.container {
|
|
|
width: 90%;
|
|
width: 90%;
|
|
|
max-width: 1200px;
|
|
max-width: 1200px;
|
|
|
- background-color: #ffffff;
|
|
|
|
|
padding: 20px;
|
|
padding: 20px;
|
|
|
border-radius: 10px;
|
|
border-radius: 10px;
|
|
|
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
|
|
|
overflow-x: auto; /* Ensure content is scrollable on smaller screens */
|
|
overflow-x: auto; /* Ensure content is scrollable on smaller screens */
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -23,22 +24,25 @@ td a {
|
|
|
text-decoration: none;
|
|
text-decoration: none;
|
|
|
padding: 8px 12px;
|
|
padding: 8px 12px;
|
|
|
border-radius: 4px;
|
|
border-radius: 4px;
|
|
|
- color: #ffffff;
|
|
|
|
|
|
|
+ color: white;
|
|
|
font-size: 14px;
|
|
font-size: 14px;
|
|
|
- background-color: #54ccac;
|
|
|
|
|
transition: background-color 0.3s ease, transform 0.2s ease;
|
|
transition: background-color 0.3s ease, transform 0.2s ease;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+td a.edit-link {
|
|
|
|
|
+ background-color: var(--edit-link-color);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
td a.share-link {
|
|
td a.share-link {
|
|
|
- background-color: #7ccc54;
|
|
|
|
|
|
|
+ background-color: var(--share-link-color);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
td a.participants-link {
|
|
td a.participants-link {
|
|
|
- background-color: #cc54c6;
|
|
|
|
|
|
|
+ background-color: var(--participants-link-color);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
td a:hover {
|
|
td a:hover {
|
|
|
- background-color: #5750d9;
|
|
|
|
|
|
|
+ background-color: var(--hover-color);
|
|
|
transform: translateY(-2px);
|
|
transform: translateY(-2px);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -49,92 +53,21 @@ td button {
|
|
|
border-radius: 4px;
|
|
border-radius: 4px;
|
|
|
font-size: 14px;
|
|
font-size: 14px;
|
|
|
color: white;
|
|
color: white;
|
|
|
- background-color: #ff6b6b;
|
|
|
|
|
|
|
+ background-color: var(--primary-color);
|
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
|
transition: background-color 0.3s ease, transform 0.2s ease;
|
|
transition: background-color 0.3s ease, transform 0.2s ease;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
td button:hover {
|
|
td button:hover {
|
|
|
- background-color: #e05555;
|
|
|
|
|
|
|
+ background-color: var(--dark-hover-color);
|
|
|
transform: translateY(-2px);
|
|
transform: translateY(-2px);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
h2 {
|
|
|
- text-align: center;
|
|
|
|
|
- color: #333333;
|
|
|
|
|
margin-bottom: 20px;
|
|
margin-bottom: 20px;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-/* Table Styling */
|
|
|
|
|
-.table-wrapper {
|
|
|
|
|
- overflow-x: auto;
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-table {
|
|
|
|
|
- width: 100%;
|
|
|
|
|
- border-collapse: collapse;
|
|
|
|
|
- text-align: left;
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-th, td {
|
|
|
|
|
- padding: 12px;
|
|
|
|
|
- border: 1px solid #ddd;
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-th {
|
|
|
|
|
- background-color: #6c63ff;
|
|
|
|
|
- color: white;
|
|
|
|
|
- font-weight: normal;
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-tr:nth-child(even) {
|
|
|
|
|
- background-color: #f9f9f9;
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-tr:hover {
|
|
|
|
|
- background-color: #f1f1f1;
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-.time-span {
|
|
|
|
|
- font-weight: bold;
|
|
|
|
|
- color: #0078d7;
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-/* Responsive adjustments */
|
|
|
|
|
-@media (max-width: 768px) {
|
|
|
|
|
- body {
|
|
|
|
|
- height: auto;
|
|
|
|
|
- padding: 20px;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- h2 {
|
|
|
|
|
- font-size: 1.5rem;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- table {
|
|
|
|
|
- font-size: 14px;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- th, td {
|
|
|
|
|
- padding: 10px;
|
|
|
|
|
- }
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-@media (max-width: 480px) {
|
|
|
|
|
- table {
|
|
|
|
|
- font-size: 12px;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- th, td {
|
|
|
|
|
- padding: 8px;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- th {
|
|
|
|
|
- font-size: 0.9rem;
|
|
|
|
|
- }
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
/* Ensure table stays scrollable on smaller screens */
|
|
/* Ensure table stays scrollable on smaller screens */
|
|
|
.container {
|
|
.container {
|
|
|
overflow-x: auto;
|
|
overflow-x: auto;
|
|
|
-}
|
|
|
|
|
|
|
+}
|