generated from Arquisoft/wiq_0
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
22 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,22 @@ | ||
.start-button { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; /* Esto hace que el botón esté centrado verticalmente en la pantalla */ | ||
|
||
/* Estilos del botón */ | ||
.button { | ||
font-size: 20px; /* Ajusta el tamaño de la fuente según sea necesario */ | ||
padding: 10px 20px; /* Ajusta el padding según sea necesario */ | ||
background-color: green; | ||
color: white; | ||
border: none; | ||
border-radius: 5px; /* Ajusta el border-radius según sea necesario */ | ||
cursor: pointer; | ||
text-decoration: none; /* Esto elimina el subrayado del texto del botón */ | ||
} | ||
} | ||
/* Establece el tamaño del botón */ | ||
font-size: 2em; /* Ajusta el tamaño de la fuente según sea necesario */ | ||
padding: 20px 40px; /* Ajusta el padding según sea necesario */ | ||
|
||
/* Centra el botón en el medio de la pantalla */ | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
|
||
/* Establece el color de fondo y el color de la letra */ | ||
background-color: green; | ||
color: white; | ||
|
||
/* Establece el estilo del borde */ | ||
border: none; | ||
border-radius: 5px; /* Ajusta el border-radius según sea necesario */ | ||
|
||
/* Establece el estilo del cursor */ | ||
cursor: pointer; | ||
} |