Skip to content

Commit

Permalink
btn sign
Browse files Browse the repository at this point in the history
  • Loading branch information
Manavsheth78 committed Feb 9, 2023
1 parent 2ca497e commit 2c2b98b
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 26 deletions.
2 changes: 1 addition & 1 deletion src/components/Events/Event.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
box-shadow: 5px 5px 12px rgba(172, 112, 255, 0.33),
-5px -5px 12px rgba(172, 112, 255, 0.33),
5px 5px 10px rgba(172, 112, 255, 0.33),
-5px -5px 10px rgba(172, 112, 255, 0.33);
-5px -5px 10px rgba(172, 112, 255, 0.329);
width: 17.5rem;
/* height: fit-content; */
filter: drop-shadow(5px 5px 10px rgba(172, 112, 255, 0.33));
Expand Down
41 changes: 31 additions & 10 deletions src/components/signup/Signup.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
background-size: contain;
background-repeat: no-repeat;
position: relative;

/* min-width: 2000px; */

}
Expand All @@ -23,7 +24,12 @@
letter-spacing: 10px;

}

.sbtn{
width: 150px;
height: 70px;
color: aquamarine;
z-index: 0;
}
.shead p{
display: flex;
justify-content: center;
Expand All @@ -39,10 +45,19 @@
gap: 30px;

}

.rect{
width: 500px;
height: 50px;
border: solid rgba(106, 15, 233);
border-radius: 5px;
position: relative;
top: -31px;
right: 19px;
}
.inputbox{
position: relative;
width: 250px;
width: 500px;
margin-top: 7rem;
}

.inputbox input{
Expand All @@ -69,12 +84,18 @@
text-transform: uppercase;
}

.inputbox .input:valid ~ span,
.inputbox .input:valid ~ span :focus
{
.sbtn button{
width: 40%;
height: 30px;
margin: 80px 150px;
}

.rect2{
width: 100px;
height: 50px;
border: solid rgba(106, 15, 233);
border-radius: 5px;
position: relative;
top: -31px;
right: 19px;
}




23 changes: 8 additions & 15 deletions src/components/signup/Signup.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,19 @@ const Signup = () => {
<input type="email" required="required" />
<span>
Email

<div className="rect" />
</span>
</div>
<div className="sbtn">
<button type="button">Get Link</button>
</div>
<div className="sbtn" >
<button>
<div className="rect2"/>
Get Link
</button>
</div>

</div>


<div className="s-content">
<div className="email">
Email: <input type="email"/>
</div>
</div>






</div>
)
}
Expand Down

0 comments on commit 2c2b98b

Please sign in to comment.