Files
swingmusic-extended/src/assets/css/global.scss
T
2022-03-08 09:56:58 +03:00

362 lines
5.4 KiB
SCSS

@import "../css/ProgressBar.scss";
:root {
--separator: #ffffff46;
--green: #4ad168;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
background-color: $card-dark;
color: #fff;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: 1rem;
overflow: hidden;
}
.heading {
font-size: small;
font-weight: bold;
display: flex;
align-items: center;
}
.t-center {
text-align: center;
}
.h-1:hover {
background-color: #3a39393d;
}
a {
text-decoration: none;
color: #fff;
}
.border {
border: solid 1px $gray;
}
.border-sm {
border: solid 1px #27262654;
}
.separator {
border-top: 0.1px $separator solid;
color: transparent;
margin: $small 0 $small 0;
}
.no-border {
border: none;
}
.card-dark {
background-color: #fff;
}
.hidden {
display: none;
}
button {
border: none;
outline: none;
color: inherit;
font-size: 1rem;
cursor: pointer;
display: flex;
align-items: center;
background-color: $blue;
border-radius: $small;
&:hover {
background-color: $red !important;
}
}
.l-container {
display: grid;
grid-template-columns: min-content 1fr min-content;
grid-template-rows: 3rem 1fr 1fr;
grid-auto-flow: row;
grid-template-areas:
"l-sidebar nav r-sidebar"
"l-sidebar content r-sidebar"
"l-sidebar content r-sidebar"
"l-sidebar bottom-bar tabs";
width: 100vw;
height: 100vh;
}
.tabs {
grid-area: tabs;
@include tablet-landscape {
display: none;
}
}
.topnav {
grid-area: nav;
}
.l-sidebar {
width: 15rem;
grid-area: l-sidebar;
padding-top: 0.5rem;
border-right: solid 1px $gray;
}
.bottom-bar {
grid-area: bottom-bar;
height: 4rem;
}
.collapsed .l-sidebar {
width: 3rem;
transition: all 0.3s ease;
}
.ellip {
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
.rounded {
border-radius: $small;
}
.circular {
border-radius: 20px;
}
.flex {
display: flex;
}
.content {
grid-area: content;
overflow: hidden;
padding: 0;
max-width: 1504px;
.nav {
border: solid;
margin: $small;
width: calc(100% - 1rem);
}
}
.r-sidebar {
grid-area: r-sidebar;
}
.image {
background-position: center;
background-repeat: no-repeat;
background-size: cover;
transition: transform 0.3s ease-in-out;
}
.ellipsis {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.shadow-sm {
box-shadow: 0 0 .5rem rgba(0, 0, 0, 0.452);
}
.shadow-md {
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.075);
}
.shadow-lg {
box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.175);
}
/* scrollbars */
/* width */
::-webkit-scrollbar {
width: 0.5rem;
}
/* Track */
::-webkit-scrollbar-track {
background: rgba(51, 51, 51, 0.459);
border-radius: 1rem;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: rgba(128, 128, 128, 0.322);
border-radius: 1rem;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: $blue;
}
@-webkit-keyframes similarAlbums {
0% {
background-position: 0 38%;
}
50% {
background-position: 100% 63%;
}
100% {
background-position: 0 38%;
}
}
@-moz-keyframes similarAlbums {
0% {
background-position: 0 38%;
}
50% {
background-position: 100% 63%;
}
100% {
background-position: 0 38%;
}
}
@-o-keyframes similarAlbums {
0% {
background-position: 0 38%;
}
50% {
background-position: 100% 63%;
}
100% {
background-position: 0 38%;
}
}
@keyframes similarAlbums {
0% {
background-position: 0 38%;
}
50% {
background-position: 100% 63%;
}
100% {
background-position: 0 38%;
}
}
.now-playing-track {
height: 2rem;
width: 2rem;
border-radius: 50%;
background-color: #fff;
margin-top: 0;
background-size: 60%;
}
.active {
background-image: url(../../assets/icons/playing.gif);
transition: all 0.3s ease-in-out;
}
.not_active {
background-image: url(../../assets/icons/playing.webp);
transition: all 0.3s ease-in-out;
}
.item {
position: relative;
background-color: rgba(34, 33, 33, 0.637);
padding: 0.5rem;
border-radius: 0.5rem;
cursor: pointer;
margin: 0 $small 0 0;
display: flex;
align-items: center;
font-size: 0.9rem;
color: rgb(250, 250, 250);
&:hover {
background-color: $pink;
}
}
input[type="number"] {
width: 40px;
padding: 4px 5px;
border: 1px solid #bbb;
border-radius: 3px;
}
.controls {
display: grid;
grid-template-columns: repeat(3, 1fr);
.shuffle {
width: 100%;
display: flex;
align-items: center;
& * {
height: 2rem;
width: 2rem;
background-size: 70%;
cursor: pointer;
border-radius: 0.5rem;
&:hover {
background-color: rgb(170, 50, 50);
}
}
& :first-child {
background-image: url(../../assets/icons/repeat.svg);
}
& :last-child {
background-image: url(../../assets/icons/shuffle.svg);
}
}
.fav {
width: 100%;
display: flex;
align-items: center;
justify-content: flex-end;
& * {
height: 2rem;
width: 2rem;
background-size: 70%;
border-radius: 0.5rem;
cursor: pointer;
&:hover {
background-color: rgb(170, 50, 50);
}
}
& :first-child {
background-image: url(../../assets/icons/plus.svg);
}
& :last-child {
background-image: url(../../assets/icons/heart.svg);
}
}
}