Skip to content

Commit

Permalink
Zoom Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
qzxtu committed Jan 11, 2024
1 parent 7a76aa7 commit 956f811
Showing 1 changed file with 80 additions and 77 deletions.
157 changes: 80 additions & 77 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -1,87 +1,90 @@
body {
font-family: 'Poppins', sans-serif;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background: url('https://qzxtu.github.io/PixelCorder/images/background.jpg') center/cover no-repeat fixed;
overflow: hidden;
position: relative;
}
body {
font-family: 'Poppins', sans-serif;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background: url('https://qzxtu.github.io/PixelCorder/images/background.jpg') center/cover no-repeat fixed;
overflow: hidden;
position: relative;
}

.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.4);
backdrop-filter: blur(5px);
}
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.4);
backdrop-filter: blur(5px);
}

.container {
z-index: 1;
max-width: 600px;
width: 100%;
text-align: center;
padding: 30px;
background-color: rgba(0, 0, 0, 0.6);
box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
border-radius: 10px;
color: #ffffff;
}
.container {
z-index: 1;
max-width: 320px;
min-height: 250px;
width: 100%;
text-align: center;
padding: 20px;
background-color: rgba(0, 0, 0, 0.6);
box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
border-radius: 10px;
color: #ffffff;
}

h1 {
font-size: 2rem;
font-weight: bold;
color: #f9fafb;
margin-bottom: 20px;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}
h1 {
font-size: 1.2rem;
font-weight: bold;
color: #f9fafb;
margin-bottom: 20px;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

label {
display: block;
font-size: 1rem;
font-weight: bold;
color: #ffffff;
margin-bottom: 8px;
}
label {
display: block;
font-size: 0.7rem;
font-weight: bold;
color: #ffffff;
margin-bottom: 8px;
}

select,
button {
width: 100%;
padding: 12px;
border: none;
border-radius: 5px;
margin-top: 8px;
cursor: pointer;
transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}
select,
button {
width: 100%;
padding: 5px;
border: none;
font-size: 0.7rem;
border-radius: 5px;
margin-top: 8px;
cursor: pointer;
transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

select {
background-color: rgba(0, 0, 0, 0.8);
color: #ffffff;
}
select {
background-color: rgba(0, 0, 0, 0.8);
color: #ffffff;
font-size: 0.7rem;
}

select:focus,
button:focus {
outline: none;
}
select:focus,
button:focus {
outline: none;
}

button {
background-color: rgba(0, 0, 0, 0.6);
color: #ffffff;
}
button {
background-color: rgba(0, 0, 0, 0.6);
color: #ffffff;
}

button:hover {
background-color: #1a1a1a;
}
button:hover {
background-color: #1a1a1a;
}

video {
width: 100%;
border-radius: 5px;
margin-top: 20px;
max-width: 100%; /* Añadido para evitar la deformación */
height: auto; /* Añadido para evitar la deformación */
}
video {
width: 100%;
border-radius: 5px;
margin-top: 20px;
max-width: 100%;
height: auto;
}

0 comments on commit 956f811

Please sign in to comment.