mirror of
https://github.com/MasterAcnolo/Freedom-Loader.git
synced 2026-07-29 18:25:47 +02:00
54 lines
909 B
CSS
54 lines
909 B
CSS
@import url("layout/form.css");
|
|
@import url("layout/container.css");
|
|
@import url("layout/ctr-infos.css");
|
|
|
|
*{
|
|
margin: 0;
|
|
padding: 0;
|
|
scroll-behavior: smooth;
|
|
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f5f5f5;
|
|
color: #333;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
#downloadStatus {
|
|
margin-top: 0.5em;
|
|
font-weight: bold;
|
|
color: #eee;
|
|
min-height: 1.5em;
|
|
}
|
|
|
|
#videoInfo {
|
|
margin-top: 100px;
|
|
padding: 1em;
|
|
max-width: 600px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
border-radius: 8px;
|
|
color: #fff;
|
|
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;
|
|
}
|
|
|
|
label {
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 0.9em;
|
|
} |