| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- :root {
- --primary-color: #ff6b6b;
- --edit-link-color: #54ccac;
- --share-link-color: #7ccc54;
- --participants-link-color: #cc54c6;
- --hover-color: #5750d9;
- --dark-hover-color: #e05555;
- }
- .content {
- box-sizing: border-box;
- }
- .container {
- width: 90%;
- max-width: 1200px;
- padding: 20px;
- border-radius: 10px;
- overflow-x: auto; /* Ensure content is scrollable on smaller screens */
- }
- /* Modern A-Tag Styling */
- td a {
- text-decoration: none;
- padding: 8px 12px;
- border-radius: 4px;
- color: white;
- font-size: 14px;
- transition: background-color 0.3s ease, transform 0.2s ease;
- }
- td a.edit-link {
- background-color: var(--edit-link-color);
- }
- td a.share-link {
- background-color: var(--share-link-color);
- }
- td a.participants-link {
- background-color: var(--participants-link-color);
- }
- td a:hover {
- background-color: var(--hover-color);
- transform: translateY(-2px);
- }
- /* Modern Button Styling */
- td button {
- padding: 8px 12px;
- border: none;
- border-radius: 4px;
- font-size: 14px;
- color: white;
- background-color: var(--primary-color);
- cursor: pointer;
- transition: background-color 0.3s ease, transform 0.2s ease;
- }
- td button:hover {
- background-color: var(--dark-hover-color);
- transform: translateY(-2px);
- }
- h2 {
- margin-bottom: 20px;
- }
- /* Ensure table stays scrollable on smaller screens */
- .container {
- overflow-x: auto;
- }
|