This commit is contained in:
MasterAcnolo
2025-07-02 22:24:46 +02:00
parent 751f3d5c3e
commit db654c5f82
27 changed files with 743 additions and 116 deletions

View File

@@ -4,10 +4,22 @@
@import url("layout/header.css");
@import url("layout/videoinfo.css");
@import url("components/checkbox.css");
@import url("variables.css");
@import url("components/themebutton.css");
/* @import url("variables.css"); */
@import url("theme/themeimport.css");
@import url("components/editpathbutton.css");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
#app {
display: block;
opacity: 0;
transition: opacity 0.6s ease;
}
#app.visible {
opacity: 1;
}
html,body{
margin: 0;
padding: 0;
@@ -34,6 +46,7 @@ body {
display: flex;
flex-direction: column;
align-items: center;
}
@@ -45,22 +58,11 @@ header p{
color: var(--mp3-text-color);
}
/* #videoInfo {
margin-top: 100px;
padding: 1em;
max-width: 600px;
margin-left: auto;
margin-right: auto;
border-radius: 8px;
color: rgb(0, 0, 0);
box-shadow: 0 0 10px rgba(0,0,0,0.5);
transition: opacity 0.5s ease, max-height 0.5s ease;
opacity: 0;
max-height: 0;
overflow: hidden;
}
#videoInfo.visible {
opacity: 1;
max-height: 1000px;
} */
body,
.container,
input,
button,
select,
label {
transition: background-color 0.2s ease, color 0.5s ease, border-color 0.2s ease;
}