Skip to content

Commit

Permalink
foto km
Browse files Browse the repository at this point in the history
  • Loading branch information
uo276976 committed Nov 14, 2024
1 parent 1d32df4 commit f384db8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
6 changes: 4 additions & 2 deletions css/index-styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@
/* Sección derecha (30%) */
.right {
width: 30%;
height: 100%;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden; /* Ensures image fits within bounds */
position: relative;
}

Expand Down
9 changes: 7 additions & 2 deletions css/styles.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
*,
*::before,
*::after {
box-sizing: border-box;
}

body, html {
margin: 0;
padding: 0;
Expand All @@ -13,6 +19,7 @@ header {
top: 0;
left: 0;
width: 100%;
max-width: 100%;
z-index: 1;
display: flex;
align-items: center; /* Center vertically */
Expand Down Expand Up @@ -51,11 +58,9 @@ footer {
background-color: #f1f1f1;
color: black;
text-align: center;
position: fixed;
left: 0;
bottom: 0;
width: 100%;
z-index: 1;
padding: 0.5em 0;
}

Expand Down

0 comments on commit f384db8

Please sign in to comment.