77 lines
1.6 KiB
CSS
77 lines
1.6 KiB
CSS
/* Hover and Transition Effects */
|
|
.hover-shadow:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
|
|
}
|
|
|
|
.transition-all {
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
/* Text Truncation */
|
|
.text-truncate-2 {
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* TSR Share URL */
|
|
.tsr-share-url-box {
|
|
padding: 1rem;
|
|
border: 1px solid rgba(13, 110, 253, 0.18);
|
|
border-radius: 0.75rem;
|
|
background: linear-gradient(180deg, rgba(13, 110, 253, 0.04), rgba(248, 249, 250, 0.9));
|
|
}
|
|
|
|
.tsr-share-url-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.15rem;
|
|
padding: 0.35rem 0.65rem;
|
|
border: 1px solid rgba(13, 110, 253, 0.18);
|
|
border-radius: 999px;
|
|
background-color: #fff;
|
|
color: #0d6efd;
|
|
font-size: 0.75rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.tsr-share-url-input .input-group-text {
|
|
border-color: rgba(13, 110, 253, 0.24);
|
|
background-color: #fff;
|
|
color: #0d6efd;
|
|
}
|
|
|
|
.tsr-share-url-input .form-control {
|
|
border-color: rgba(13, 110, 253, 0.24);
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
.tsr-share-url-input .form-control:focus {
|
|
border-color: #0d6efd;
|
|
box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.12);
|
|
}
|
|
|
|
.tsr-share-url-help {
|
|
color: #6c757d;
|
|
font-size: 0.8125rem;
|
|
}
|
|
|
|
@media (max-width: 575.98px) {
|
|
.tsr-share-url-box {
|
|
padding: 0.875rem;
|
|
border-radius: 0.5rem;
|
|
}
|
|
|
|
.tsr-share-url-input {
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.tsr-share-url-input .form-control {
|
|
min-width: 0;
|
|
font-size: 0.875rem;
|
|
}
|
|
}
|