866 lines
15 KiB
CSS
866 lines
15 KiB
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
}
|
|
|
|
header {
|
|
background-color: #4CAF50;
|
|
padding: 1rem;
|
|
}
|
|
|
|
nav ul {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
nav ul li {
|
|
margin: 0 1rem;
|
|
}
|
|
|
|
nav ul li a {
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* Dropdown menu styles */
|
|
nav ul li.dropdown {
|
|
position: relative;
|
|
}
|
|
|
|
nav ul li.admin-dropdown {
|
|
margin-left: auto; /* Push to the right */
|
|
}
|
|
|
|
nav ul li.dropdown .dropdown-toggle {
|
|
cursor: pointer;
|
|
padding: 10px 15px;
|
|
display: block;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
nav ul li.dropdown .dropdown-menu {
|
|
display: none;
|
|
position: absolute;
|
|
right: 0; /* Align to the right for admin dropdown */
|
|
background-color: #333;
|
|
min-width: 180px;
|
|
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
|
|
z-index: 1000;
|
|
padding: 10px 0;
|
|
border-radius: 4px;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
/* Show dropdown on hover and keep it visible when hovering over the menu */
|
|
nav ul li.dropdown:hover .dropdown-menu,
|
|
nav ul li.dropdown .dropdown-menu:hover {
|
|
display: block;
|
|
}
|
|
|
|
nav ul li.dropdown .dropdown-menu li {
|
|
display: block;
|
|
padding: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
nav ul li.dropdown .dropdown-menu li a {
|
|
padding: 10px 20px;
|
|
display: block;
|
|
text-align: left;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
transition: background-color 0.2s ease;
|
|
}
|
|
|
|
nav ul li.dropdown .dropdown-menu li a:hover {
|
|
background-color: #444;
|
|
}
|
|
|
|
main {
|
|
max-width: 1200px;
|
|
margin: 2rem auto;
|
|
padding: 0 1rem;
|
|
}
|
|
|
|
.hero {
|
|
text-align: center;
|
|
padding: 2rem 0;
|
|
background-color: #f9f9f9;
|
|
border-radius: 5px;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.features {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 2rem;
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
.feature {
|
|
background-color: #f9f9f9;
|
|
padding: 1.5rem;
|
|
border-radius: 5px;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.feature h3 {
|
|
color: #4CAF50;
|
|
margin-top: 0;
|
|
}
|
|
|
|
.about, .contact, .thank-you {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.form-group label {
|
|
display: block;
|
|
margin-bottom: 0.5rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.form-group input,
|
|
.form-group textarea,
|
|
.form-group select {
|
|
width: 100%;
|
|
padding: 0.5rem;
|
|
border: 1px solid #ddd;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
button {
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
border: none;
|
|
padding: 8px 16px;
|
|
cursor: pointer;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.btn {
|
|
padding: 5px 10px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 1rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #45a049;
|
|
color: white;
|
|
margin-bottom: 1rem;
|
|
margin-right: 1rem;
|
|
margin-left: 1rem;
|
|
display: inline-block;
|
|
font-size: medium;
|
|
}
|
|
|
|
.btn-sm {
|
|
padding: 5px 10px;
|
|
border-radius: 4px;
|
|
font-size: small;
|
|
}
|
|
|
|
.btn-secondary {
|
|
background-color: #f44336;
|
|
color: white;
|
|
}
|
|
|
|
.btn-success {
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
}
|
|
|
|
.btn:hover {
|
|
background-color: #45a049;
|
|
}
|
|
|
|
.btn-danger {
|
|
background-color: #f44336;
|
|
}
|
|
|
|
.btn-danger:hover {
|
|
background-color: #d32f2f;
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
padding: 1rem;
|
|
background-color: #f4f4f4;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
/* Time tracking specific styles */
|
|
.timetrack-container {
|
|
max-width: 800px;
|
|
margin: 0 auto 3rem auto;
|
|
}
|
|
|
|
.timer-section {
|
|
background-color: #f5f5f5;
|
|
padding: 2rem;
|
|
border-radius: 5px;
|
|
margin-bottom: 2rem;
|
|
text-align: center;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
#timer {
|
|
font-size: 3rem;
|
|
font-weight: bold;
|
|
margin: 1rem 0;
|
|
font-family: monospace;
|
|
color: #333;
|
|
}
|
|
|
|
.arrive-btn {
|
|
background-color: #4CAF50;
|
|
font-size: 1.2rem;
|
|
padding: 0.8rem 2rem;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
.arrive-btn:hover {
|
|
background-color: #45a049;
|
|
}
|
|
|
|
.leave-btn {
|
|
background-color: #f44336;
|
|
font-size: 1.2rem;
|
|
padding: 0.8rem 2rem;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
.leave-btn:hover {
|
|
background-color: #d32f2f;
|
|
}
|
|
|
|
.time-history {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.time-history th, .time-history td {
|
|
padding: 0.8rem;
|
|
text-align: left;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
|
|
.time-history th {
|
|
background-color: #f2f2f2;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.time-history tr:hover {
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
.button-group {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 1rem;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.pause-btn {
|
|
background-color: #ff9800;
|
|
font-size: 1.2rem;
|
|
padding: 0.8rem 2rem;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
.pause-btn:hover {
|
|
background-color: #f57c00;
|
|
}
|
|
|
|
.resume-btn {
|
|
background-color: #2196F3;
|
|
font-size: 1.2rem;
|
|
padding: 0.8rem 2rem;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
.resume-btn:hover {
|
|
background-color: #1976D2;
|
|
}
|
|
|
|
.break-info {
|
|
color: #ff9800;
|
|
font-weight: bold;
|
|
margin: 0.5rem 0;
|
|
}
|
|
|
|
.break-total {
|
|
color: #666;
|
|
font-size: 0.9rem;
|
|
margin: 0.5rem 0;
|
|
}
|
|
|
|
.notification {
|
|
position: fixed;
|
|
top: 20px;
|
|
right: 20px;
|
|
padding: 15px 25px;
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
border-radius: 4px;
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.2);
|
|
z-index: 1000;
|
|
animation: fadeIn 0.3s, fadeOut 0.3s 2.7s;
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
from { opacity: 0; transform: translateY(-20px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
|
|
@keyframes fadeOut {
|
|
from { opacity: 1; transform: translateY(0); }
|
|
to { opacity: 0; transform: translateY(-20px); }
|
|
}
|
|
|
|
.config-container {
|
|
max-width: 800px;
|
|
margin: 0 auto 3rem auto;
|
|
padding: 1rem;
|
|
background-color: #f9f9f9;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.form-section {
|
|
border: 1px solid #e0e0e0;
|
|
border-radius: 5px;
|
|
padding: 1rem;
|
|
margin-bottom: 1.5rem;
|
|
background-color: #f9f9f9;
|
|
}
|
|
|
|
.form-section h3 {
|
|
margin-top: 0;
|
|
margin-bottom: 1rem;
|
|
color: #333;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.config-form .form-group {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.config-form label {
|
|
display: block;
|
|
margin-bottom: 0.5rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.config-form small {
|
|
display: block;
|
|
color: #666;
|
|
margin-top: 4px;
|
|
font-style: italic;
|
|
}
|
|
|
|
.alert {
|
|
padding: 0.75rem 1rem;
|
|
margin-bottom: 1rem;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.alert-success {
|
|
background-color: #d4edda;
|
|
color: #155724;
|
|
border: 1px solid #c3e6cb;
|
|
}
|
|
|
|
.alert-error {
|
|
background-color: #f8d7da;
|
|
color: #721c24;
|
|
border: 1px solid #f5c6cb;
|
|
}
|
|
|
|
/* Modal styles */
|
|
.modal {
|
|
display: none;
|
|
position: fixed;
|
|
z-index: 1000;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(0,0,0,0.5);
|
|
}
|
|
|
|
.modal-content {
|
|
background-color: #fff;
|
|
margin: 10% auto;
|
|
padding: 20px;
|
|
border-radius: 5px;
|
|
width: 80%;
|
|
max-width: 500px;
|
|
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
|
|
}
|
|
|
|
.close {
|
|
color: #aaa;
|
|
float: right;
|
|
font-size: 28px;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.close:hover,
|
|
.close:focus {
|
|
color: #000;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.modal-actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 10px;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.edit-entry-btn, .delete-entry-btn {
|
|
padding: 5px 10px;
|
|
margin-right: 5px;
|
|
border: none;
|
|
border-radius: 3px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.edit-entry-btn {
|
|
background-color: #2196F3;
|
|
color: white;
|
|
}
|
|
|
|
.edit-entry-btn:hover {
|
|
background-color: #0b7dda;
|
|
}
|
|
|
|
.delete-entry-btn {
|
|
background-color: #f44336;
|
|
color: white;
|
|
}
|
|
|
|
.delete-entry-btn:hover {
|
|
background-color: #d32f2f;
|
|
}
|
|
|
|
input[type="date"], input[type="time"] {
|
|
font-family: monospace;
|
|
padding: 8px;
|
|
width: 100%;
|
|
}
|
|
|
|
/* Force consistent date format display */
|
|
input[type="date"]::-webkit-datetime-edit,
|
|
input[type="time"]::-webkit-datetime-edit {
|
|
font-family: monospace;
|
|
}
|
|
|
|
/* Add some styling to the format hints */
|
|
.form-group small {
|
|
display: block;
|
|
color: #666;
|
|
margin-top: 4px;
|
|
font-style: italic;
|
|
}
|
|
|
|
/* Admin Dashboard Styles */
|
|
.admin-container {
|
|
padding: 1.5rem;
|
|
background-color: white;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.admin-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.admin-panel {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 20px;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.admin-card {
|
|
background-color: #f8f9fa;
|
|
border-radius: 5px;
|
|
padding: 20px;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
width: 300px;
|
|
transition: transform 0.2s, box-shadow 0.2s;
|
|
}
|
|
|
|
.admin-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.admin-card h2 {
|
|
margin-top: 0;
|
|
color: #333;
|
|
}
|
|
|
|
.admin-card p {
|
|
color: #666;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
/* User status badges */
|
|
.status-badge {
|
|
display: inline-block;
|
|
padding: 3px 8px;
|
|
border-radius: 12px;
|
|
font-size: 0.85em;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.status-active {
|
|
background-color: #d4edda;
|
|
color: #155724;
|
|
}
|
|
|
|
.status-blocked {
|
|
background-color: #f8d7da;
|
|
color: #721c24;
|
|
}
|
|
|
|
.settings-card {
|
|
background-color: #f8f9fa;
|
|
border-radius: 5px;
|
|
padding: 20px;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.setting-description {
|
|
color: #6c757d;
|
|
font-size: 0.9em;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.checkbox-container {
|
|
display: block;
|
|
position: relative;
|
|
padding-left: 35px;
|
|
margin-bottom: 12px;
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
user-select: none;
|
|
}
|
|
|
|
.checkbox-container input {
|
|
position: absolute;
|
|
opacity: 0;
|
|
cursor: pointer;
|
|
height: 0;
|
|
width: 0;
|
|
}
|
|
|
|
.checkmark {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
height: 25px;
|
|
width: 25px;
|
|
background-color: #eee;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.checkbox-container:hover input ~ .checkmark {
|
|
background-color: #ccc;
|
|
}
|
|
|
|
.checkbox-container input:checked ~ .checkmark {
|
|
background-color: #2196F3;
|
|
}
|
|
|
|
.checkmark:after {
|
|
content: "";
|
|
position: absolute;
|
|
display: none;
|
|
}
|
|
|
|
.checkbox-container input:checked ~ .checkmark:after {
|
|
display: block;
|
|
}
|
|
|
|
.checkbox-container .checkmark:after {
|
|
left: 9px;
|
|
top: 5px;
|
|
width: 5px;
|
|
height: 10px;
|
|
border: solid white;
|
|
border-width: 0 3px 3px 0;
|
|
transform: rotate(45deg);
|
|
}
|
|
|
|
.form-actions {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
/* General table styling */
|
|
.data-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.data-table th, .data-table td {
|
|
padding: 0.8rem;
|
|
text-align: left;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
|
|
.data-table th {
|
|
background-color: #f2f2f2;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.data-table tr:hover {
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
/* Team Hours Page Styles */
|
|
.date-filter {
|
|
margin-bottom: 20px;
|
|
padding: 15px;
|
|
background-color: #f5f5f5;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.date-filter .form-group {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
}
|
|
|
|
.team-hours-table {
|
|
margin-bottom: 30px;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.team-hours-table table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.team-hours-table th,
|
|
.team-hours-table td {
|
|
padding: 8px 12px;
|
|
border: 1px solid #ddd;
|
|
text-align: center;
|
|
}
|
|
|
|
.team-hours-table th {
|
|
background-color: #f0f0f0;
|
|
}
|
|
|
|
.team-hours-details {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.member-entries {
|
|
margin-bottom: 25px;
|
|
padding-bottom: 15px;
|
|
border-bottom: 1px solid #eee;
|
|
}
|
|
|
|
.member-entries h4 {
|
|
margin-bottom: 10px;
|
|
color: #333;
|
|
}
|
|
|
|
.member-entries table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.member-entries th,
|
|
.member-entries td {
|
|
padding: 6px 10px;
|
|
border: 1px solid #ddd;
|
|
text-align: left;
|
|
}
|
|
|
|
.member-entries th {
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
.checkbox {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
}
|
|
|
|
/* Export Page Styling */
|
|
.export-options {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
|
|
gap: 2rem;
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
.export-section {
|
|
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
|
|
padding: 2rem;
|
|
border-radius: 12px;
|
|
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
|
|
border: 1px solid #e9ecef;
|
|
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
|
}
|
|
|
|
.export-section:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.export-section h3 {
|
|
color: #4CAF50;
|
|
margin-top: 0;
|
|
margin-bottom: 1.5rem;
|
|
font-size: 1.3rem;
|
|
font-weight: 600;
|
|
border-bottom: 2px solid #4CAF50;
|
|
padding-bottom: 0.5rem;
|
|
}
|
|
|
|
.quick-export-buttons {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 0.75rem;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.quick-export-buttons .btn {
|
|
padding: 0.75rem 1rem;
|
|
font-size: 0.9rem;
|
|
border-radius: 8px;
|
|
transition: all 0.2s ease;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.quick-export-buttons .btn:hover {
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
|
|
}
|
|
|
|
.export-button-container {
|
|
text-align: center;
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
.export-button-container .btn {
|
|
background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
|
|
color: white;
|
|
padding: 1rem 2rem;
|
|
font-size: 1.1rem;
|
|
border-radius: 8px;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
transition: all 0.2s ease;
|
|
font-weight: 600;
|
|
box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
|
|
}
|
|
|
|
.export-button-container .btn:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
|
|
background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%);
|
|
}
|
|
|
|
/* Custom date range form styling */
|
|
.export-section .form-group {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.export-section .form-group label {
|
|
display: block;
|
|
margin-bottom: 0.5rem;
|
|
font-weight: 500;
|
|
color: #333;
|
|
}
|
|
|
|
.export-section .form-group input,
|
|
.export-section .form-group select {
|
|
width: 100%;
|
|
padding: 0.75rem;
|
|
border: 2px solid #e9ecef;
|
|
border-radius: 6px;
|
|
font-size: 1rem;
|
|
transition: border-color 0.2s ease;
|
|
}
|
|
|
|
.export-section .form-group input:focus,
|
|
.export-section .form-group select:focus {
|
|
outline: none;
|
|
border-color: #4CAF50;
|
|
box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
|
|
}
|
|
|
|
/* Team Hours Export Styling */
|
|
#export-buttons {
|
|
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
|
|
padding: 1.5rem;
|
|
border-radius: 12px;
|
|
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
|
|
border: 1px solid #e9ecef;
|
|
margin: 2rem 0;
|
|
text-align: center;
|
|
}
|
|
|
|
#export-buttons h4 {
|
|
color: #4CAF50;
|
|
margin-bottom: 1rem;
|
|
font-size: 1.2rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
#export-buttons .quick-export-buttons {
|
|
display: flex;
|
|
gap: 1rem;
|
|
justify-content: center;
|
|
}
|
|
|
|
#export-buttons .quick-export-buttons .btn {
|
|
padding: 0.75rem 1.5rem;
|
|
font-size: 1rem;
|
|
border-radius: 8px;
|
|
transition: all 0.2s ease;
|
|
font-weight: 500;
|
|
min-width: 140px;
|
|
}
|
|
|
|
#export-buttons .quick-export-buttons .btn:hover {
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
|
|
}
|