Skip to content

Commit

Permalink
new commit
Browse files Browse the repository at this point in the history
  • Loading branch information
eylulozatman committed Nov 18, 2023
1 parent 6cf2e05 commit b0aea7c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 13 deletions.
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,16 +55,16 @@
</div>
<div class="inputBox" id="radioOpt">
<span>Gender</span>
<input type="radio" id="male" name="gender" value="male">
<input type="radio" class="radiobtn" name="gender" value="male">
<span>Male</span>
<input type="radio" id="female" name="gender" value="female">
<input type="radio" class="radiobtn" name="gender" value="female">
<span>Female</span>
</div>
<div class="inputBox" id="radioOpt">
<span>Are you a beginner</span>
<input type="radio" id="no" name="beginner" value="yes">
<input type="radio" class="radiobtn" name="beginner" value="yes">
<span> Yes </span>
<input type="radio" id="no" name="beginner" value="no">
<input type="radio" class="radiobtn" name="beginner" value="no">
<span>No</span>
</div>

Expand Down
21 changes: 12 additions & 9 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ body {
}
input{
margin-left: 2%;
width: 30%;
}
span{
position: relative;
font-family: 'Lucida Sans Regular';
font-size: 130%;
font-weight: 200;
}
Expand Down Expand Up @@ -47,6 +49,11 @@ span{
cursor: pointer;
}

.menutab-item:hover{
color: rgb(92, 42, 88);
}


.container {
display: flex;
justify-content: center;
Expand Down Expand Up @@ -78,7 +85,6 @@ flex-direction: column;

width: 100%;
height: 100%;

display: flex;
justify-content: center;
align-items: center;
Expand All @@ -92,21 +98,18 @@ flex-direction: column;
position: relative;
margin-left: 30%;
margin-top: 2.5%;
width: 100%;
width: 70%;
color: plum;
}

#phoneCodesSelect{
width: 6%;
height: 23px;
}

#radioOpt{

display: flex;

display: flex;
}
.radiobtn{
width: min-content;
}

#registerButton {
width: fit-content;
padding: 10px 10px;
Expand Down

0 comments on commit b0aea7c

Please sign in to comment.