- - @@ -55,10 +55,9 @@ justify-content: center; align-items: center; gap: 0.5rem; - } - nav a{ + nav a { color: var(--textolight); } @@ -66,7 +65,7 @@ color: lightgrey; } - li>a>img:hover { + li > a > img:hover { transform: scale(1.1); } diff --git a/src/components/FormCadastro.astro b/src/components/FormCadastro.astro index 85cfc9e..72e10b4 100644 --- a/src/components/FormCadastro.astro +++ b/src/components/FormCadastro.astro @@ -38,6 +38,8 @@ import Form from "./Form.astro"; + Já tem uma conta? Faça login aqui! +
@@ -92,7 +94,6 @@ import Form from "./Form.astro";
display: flex;
flex-direction: column;
align-items: center;
- gap: 2rem;
grid-area: form;
}
@@ -109,6 +110,7 @@ import Form from "./Form.astro";
background-color: var(--secondary);
padding: 0.5rem 1rem !important;
border-radius: 1rem;
+ margin-bottom: 1.5rem;
}
input:focus {
@@ -116,6 +118,25 @@ import Form from "./Form.astro";
box-shadow: 0 0 0 1px var(--primary);
}
+ button{
+ margin: 1rem 0 0.5rem 0;
+ width: 100%;
+ height: 2.5rem !important;
+ }
+
+ span{
+ font-size: 0.8rem;
+ margin-top: 0.rem;
+ }
+
+ span a {
+ color: var(--accent);
+ }
+
+ span a:hover{
+ text-decoration: underline;
+ font-weight: bold;
+ }
@media (max-width: 768px) {
.cadastro {
diff --git a/src/components/FormLogin.astro b/src/components/FormLogin.astro
index 480287f..a6272d4 100644
--- a/src/components/FormLogin.astro
+++ b/src/components/FormLogin.astro
@@ -40,7 +40,7 @@ import Form from "./Form.astro";
- Não tem uma conta? faça a sua cadastrando-se!
+ Não tem uma conta? faça a sua cadastrando-se!
@@ -170,6 +170,11 @@ import Form from "./Form.astro";
border-radius: 1rem;
}
+ a.login:hover{
+ cursor: pointer;
+ transform: scale(1.05);
+ }
+
.login-google {
color: black;
background-color: var(--secondary);
@@ -201,16 +206,16 @@ import Form from "./Form.astro";
}
.cadastro {
+ font-size: 0.8rem;
text-align: center;
}
.cadastro a {
- font-weight: bold;
color: var(--accent)
}
.cadastro a:hover {
text-decoration: underline;
- color: darken(#fc2947, 10%);
+ font-weight: bold;
}
diff --git a/src/components/cards/CardAjuda.astro b/src/components/cards/CardAjuda.astro
index 43ee3a3..f9fc484 100644
--- a/src/components/cards/CardAjuda.astro
+++ b/src/components/cards/CardAjuda.astro
@@ -41,6 +41,7 @@
a:hover{
background-color: lightgray;
+ transform: scale(1.1);
}
@media only screen and (max-width: 768px) {
diff --git a/src/pages/sobre.astro b/src/pages/sobre.astro
index e10beb9..c15ba39 100644
--- a/src/pages/sobre.astro
+++ b/src/pages/sobre.astro
@@ -45,7 +45,7 @@ import CardTime from "../components/cards/CardTime.astro";