minor refactoring

This commit is contained in:
geoffrey45 2021-12-05 22:29:54 +03:00
parent 4e2d9fd1e0
commit 843bde1b7e
3 changed files with 91 additions and 92 deletions

View File

@ -177,10 +177,6 @@ export default {
.collapsed #settings-button #text { .collapsed #settings-button #text {
display: none; display: none;
} }
.r-sidebar {
position: relative;
margin-bottom: 0.5em;
}
.m-np { .m-np {
position: absolute; position: absolute;
bottom: 0; bottom: 0;

View File

@ -1,159 +1,163 @@
:root { :root {
--seperator: #ffffff46; --seperator: #ffffff46;
--green: #4AD168; --green: #4ad168;
} }
body { body {
margin: 0; margin: 0;
background: #0d0e0e; background: #0d0e0e;
color: #fff; color: #fff;
font-family: 'Helvetica Neue', sans-serif; font-family: "Helvetica Neue", sans-serif;
font-size: 1rem; font-size: 1rem;
} }
.heading { .heading {
font-size: small; font-size: small;
font-weight: bold; font-weight: bold;
color: #ffffffb2; color: #ffffffb2;
display: flex; display: flex;
align-items: center; align-items: center;
} }
.t-center { .t-center {
text-align: center; text-align: center;
} }
.h-1:hover { .h-1:hover {
background-color: #3a39393d; background-color: #3a39393d;
} }
a { a {
text-decoration: none; text-decoration: none;
color: #fff; color: #fff;
} }
.seperator { .seperator {
border: 1px solid; border: 1px solid;
color: transparent; color: transparent;
margin: 0rem; margin: 0rem;
} }
.hidden { .hidden {
display: none; display: none;
} }
.l-container { .l-container {
display: grid; display: grid;
grid-template-columns: min-content 4fr 30rem; grid-template-columns: min-content 4fr min-content;
grid-template-rows: 4rem 1fr 1fr; grid-template-rows: 4rem 1fr 1fr;
grid-auto-flow: row; grid-auto-flow: row;
grid-template-areas: "l-sidebar content r-sidebar" "l-sidebar content r-sidebar" "l-sidebar content r-sidebar"; grid-template-areas: "l-sidebar content r-sidebar" "l-sidebar content r-sidebar" "l-sidebar content r-sidebar";
width: 100vw; width: 100vw;
height: 100vh; height: 100vh;
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: cover; background-size: cover;
background-position: center; background-position: center;
background: rgba(0, 0, 0, 0.575); background: rgba(0, 0, 0, 0.575);
backdrop-filter: blur(40px); backdrop-filter: blur(40px);
-webkit-backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
-moz-backdrop-filter: blur(40px); -moz-backdrop-filter: blur(40px);
} }
#bg-blur { #bg-blur {
position: absolute; position: absolute;
width: 100vw; width: 100vw;
height: 100vh; height: 100vh;
background-color: rgba(27, 27, 27, 0.548); background-color: rgba(27, 27, 27, 0.548);
background-image: url(../images/dark-bg.jpg); background-image: url(../images/dark-bg.jpg);
z-index: -1; z-index: -1;
} }
.collapsed .l-sidebar { .collapsed .l-sidebar {
width: 70px; width: 70px;
transition-timing-function: ease-in-out; transition-timing-function: ease-in-out;
transition-duration: 0.3s; transition-duration: 0.3s;
transition-property: width; transition-property: width;
} }
.l-sidebar { .l-sidebar {
width: 250px; width: 250px;
grid-area: l-sidebar; grid-area: l-sidebar;
padding-top: 0.5rem; padding-top: 0.5rem;
margin: .5rem 0 .5rem .5rem; margin: 0.5rem 0 0.5rem 0.5rem;
border-radius: .5rem; border-radius: 0.5rem;
background-color: #131313b2; background-color: #131313b2;
transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
transition-duration: 0.3s; transition-duration: 0.3s;
transition-property: width; transition-property: width;
} }
.rounded { .rounded {
border-radius: 10px; border-radius: 10px;
} }
.circular { .circular {
border-radius: 20px; border-radius: 20px;
} }
.flex { .flex {
display: flex; display: flex;
} }
.content { .content {
grid-area: content; grid-area: content;
border-radius: .25rem; border-radius: 0.25rem;
padding: .5rem; padding: 0.5rem;
overflow: hidden; overflow: hidden;
} }
.r-sidebar { .r-sidebar {
grid-area: r-sidebar; grid-area: r-sidebar;
border-radius: 5px; border-radius: 5px;
margin-right: .5rem; margin-right: 0.5rem;
overflow-y: auto; overflow-y: auto;
width: 30em;
position: relative;
margin-bottom: 0.5em;
}
@media (max-width: 70em) {
.r-sidebar {
display: none;
}
} }
.image { .image {
background-position: center; background-position: center;
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: cover; background-size: cover;
} }
.ellipsis { .ellipsis {
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
} }
/* scrollbars */ /* scrollbars */
/* width */ /* width */
::-webkit-scrollbar { ::-webkit-scrollbar {
width: .5rem; width: 0.5rem;
} }
/* Track */ /* Track */
::-webkit-scrollbar-track { ::-webkit-scrollbar-track {
background: rgba(51, 51, 51, 0.459); background: rgba(51, 51, 51, 0.459);
border-radius: 1rem; border-radius: 1rem;
} }
/* Handle */ /* Handle */
::-webkit-scrollbar-thumb { ::-webkit-scrollbar-thumb {
background: grey; background: grey;
border-radius: 1rem; border-radius: 1rem;
} }
/* Handle on hover */ /* Handle on hover */
::-webkit-scrollbar-thumb:hover { ::-webkit-scrollbar-thumb:hover {
background: rgb(163, 163, 163); background: rgb(163, 163, 163);
} }

View File

@ -43,23 +43,22 @@ export default {
const songtitle = ref(null); const songtitle = ref(null);
const songTitleWidth = ref(null); const songTitleWidth = ref(null);
const minWidth = ref(250); const minWidth = ref(300);
const songs = Songs.songs; const songs = Songs.songs;
const resizeSongTitleWidth = () => { const resizeSongTitleWidth = () => {
songTitleWidth.value = let a = songtitle.value.clientWidth;
songtitle.value.clientWidth > minWidth.value * 4
? songtitle.value.clientWidth / 4 songTitleWidth.value = a > minWidth.value * 4 ? a / 4 : a / 3;
: (songTitleWidth.value = songtitle.value.clientWidth / 3);
}; };
onMounted(() => { onMounted(() => {
resizeSongTitleWidth(); resizeSongTitleWidth();
window.addEventListener("resize", () => { window.addEventListener("resize", () => {
resizeSongTitleWidth(); resizeSongTitleWidth();
}); });
console.log(songTitleWidth.value);
}); });
onUnmounted(() => { onUnmounted(() => {