mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-19 19:21:02 +03:00
129 lines
1.9 KiB
SCSS
129 lines
1.9 KiB
SCSS
.large-col {
|
|
max-width: 320px;
|
|
}
|
|
|
|
.medium-col {
|
|
max-width: 240px;
|
|
}
|
|
|
|
.small-col {
|
|
max-width: 240px;
|
|
}
|
|
|
|
.search-bar {
|
|
transition: all .5s ease;
|
|
position: relative;
|
|
float: right;
|
|
}
|
|
|
|
.search-bar-unfocused {
|
|
width: 165px;
|
|
}
|
|
|
|
.search-input {
|
|
transition: all .5s ease;
|
|
}
|
|
|
|
.search-bar-focused {
|
|
width: 200px;
|
|
}
|
|
|
|
.flex-grid {
|
|
width: 100%;
|
|
display: block;
|
|
position: relative;
|
|
padding-left: 12px;
|
|
padding-right: 12px;
|
|
}
|
|
|
|
.column {
|
|
width: 33%;
|
|
display: inline-block;
|
|
}
|
|
|
|
.paginator {
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.my-videos-title {
|
|
text-align: center;
|
|
position: relative;
|
|
top: 12px;
|
|
}
|
|
|
|
@media (max-width: 576px) {
|
|
.my-videos-title {
|
|
top: 0px;
|
|
}
|
|
}
|
|
|
|
.list-ghosts {
|
|
position: relative;
|
|
top: 4px;
|
|
}
|
|
|
|
.audio-video-icon {
|
|
position: relative;
|
|
top: 6px;
|
|
}
|
|
|
|
.cdk-drag-preview {
|
|
box-sizing: border-box;
|
|
border-radius: 4px;
|
|
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),
|
|
0 8px 10px 1px rgba(0, 0, 0, 0.14),
|
|
0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
.cdk-drag-placeholder {
|
|
opacity: 0;
|
|
}
|
|
|
|
.cdk-drag-animating {
|
|
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
|
|
.media-box:last-child {
|
|
border: none;
|
|
}
|
|
|
|
.media-list.cdk-drop-list-dragging .media-box:not(.cdk-drag-placeholder) {
|
|
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
|
|
.remove-item-button {
|
|
right: 10px;
|
|
position: absolute;
|
|
top: 0px;
|
|
}
|
|
|
|
.playlist-item-text {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
max-width: 70%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.blurred {
|
|
filter: blur(2px);
|
|
}
|
|
|
|
.downloading-spinner {
|
|
align-self: center;
|
|
position: absolute;
|
|
}
|
|
|
|
.filter-list {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.hide {
|
|
display: none !important;
|
|
}
|
|
|
|
.select-file-title {
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
} |