Skip to content

Commit e64ae83

Browse files
authored
Update styles.css
1 parent 9a9e618 commit e64ae83

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

styles.css

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,27 @@ body {
3131
letter-spacing: 1.2px;
3232
}
3333

34+
/* Centrar los botones en la parte inferior */
3435
#header-buttons {
3536
display: flex;
36-
justify-content: center;
37+
justify-content: center; /* Centra los botones horizontalmente */
38+
align-items: center; /* Centra los botones verticalmente */
3739
gap: 10px;
40+
margin-top: 20px; /* Ajusta el espacio entre el título y los botones */
3841
}
3942

43+
/* Estilos para los botones */
4044
#header-buttons button {
41-
background
45+
background-color: #4CAF50; /* Ejemplo de color de fondo */
46+
color: white;
47+
padding: 10px 20px;
48+
border: none;
49+
border-radius: 5px;
50+
cursor: pointer;
51+
font-size: 1rem;
52+
transition: background-color 0.3s ease;
53+
}
54+
55+
#header-buttons button:hover {
56+
background-color: #45a049; /* Color al pasar el cursor */
57+
}

0 commit comments

Comments
 (0)