| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- .content {
- font-family: 'Arial', sans-serif;
- background-color: #f4f4f9;
- margin: 0;
- padding: 0;
- display: grid;
- place-items: center;
- box-sizing: border-box;
- }
- .container {
- width: 90%;
- max-width: 1200px;
- background-color: #ffffff;
- padding: 20px;
- border-radius: 10px;
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
- 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: #ffffff;
- font-size: 14px;
- background-color: #54ccac;
- transition: background-color 0.3s ease, transform 0.2s ease;
- }
- td a.share-link {
- background-color: #7ccc54;
- }
- td a.participants-link {
- background-color: #cc54c6;
- }
- td a:hover {
- background-color: #5750d9;
- transform: translateY(-2px);
- }
- /* Modern Button Styling */
- td button {
- padding: 8px 12px;
- border: none;
- border-radius: 4px;
- font-size: 14px;
- color: white;
- background-color: #ff6b6b;
- cursor: pointer;
- transition: background-color 0.3s ease, transform 0.2s ease;
- }
- td button:hover {
- background-color: #e05555;
- transform: translateY(-2px);
- }
- h2 {
- text-align: center;
- color: #333333;
- 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 */
- .container {
- overflow-x: auto;
- }
|