File tree Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -31,11 +31,27 @@ body {
31
31
letter-spacing : 1.2px ;
32
32
}
33
33
34
+ /* Centrar los botones en la parte inferior */
34
35
# header-buttons {
35
36
display : flex;
36
- justify-content : center;
37
+ justify-content : center; /* Centra los botones horizontalmente */
38
+ align-items : center; /* Centra los botones verticalmente */
37
39
gap : 10px ;
40
+ margin-top : 20px ; /* Ajusta el espacio entre el título y los botones */
38
41
}
39
42
43
+ /* Estilos para los botones */
40
44
# 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
+ }
You can’t perform that action at this time.
0 commit comments