Skip to content
13 changes: 8 additions & 5 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,24 @@ Please complete the details below this message

# Your Details

- Your Name:
- Your City:
- Your Slack Name:
- Your Name: Abdirahim Sharif Hussein
- Your City: Birmingham
- Your Slack Name:Abdirahim Sharif Hussein

# Homework Details

- Module:
- Week:
- Module: HTML-CSS-Module-Project
- Week: 2

# Notes

- What did you find easy?


- What did you find hard?
indenting the code

- What do you still not understand?


- Any other notes?
221 changes: 221 additions & 0 deletions css/store.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,221 @@
*{
margin: 0;
}
.colour-radio{
display: inline-flex;
align-items: center;
cursor: pointer;
margin-right: 10px;
}
.grey-radio{
display: inline-flex;
align-items: center;
cursor: pointer;
margin-right: 10px;
}
.header {
display: flex;
align-items: center;
justify-content: space-around;
height: 5rem;
width: 100%;
background-color: rgb(238, 231, 231);
}

.navigation-menu{
display: flex;
list-style: none;
}

.nav-item {
padding: 16px 0;

}
.nav-header{
color: grey;
font-weight: 500;
text-decoration: none;
padding: 0 1em;
margin-right: 10px;
transition: opacity 0.25s;
}
.nav-header:hover {
color: orangered;
}
/*form section*/
.main{
position: absolute;
width: 1318px;
height: 1235px;
left: 122px;
top: 98px;

}
.form-container {
margin: 0px 5%;
display: flex;
justify-content: space-between;
width: 70%;
height: 50%;
}

.image-form{
position: absolute;
width: 701px;
height: 1235px;
left: 739px;
top: 98px;
}

.title {
position: absolute;
width: 521px;
height: 118px;
left: 123px;
top: 214px;

font-family: 'Roboto';
font-style: normal;
font-weight: 500;
font-size: 50px;
line-height: 59px;

color: #DE6E49;
}

.form {
position: absolute;
width: 501px;
height: 849px;
left: 122px;
top: 414px;
}
.first-name {
position: absolute;
width: 235px;
height: 90px;
left: 122px;
top: 414px;
}
.Last-name {
position: absolute;
width: 235px;
height: 90px;
left: 384px;
top: 414px;
}

.first-name input,
.Last-name input{
width: 320px;
height: 50px;
margin-top: 1rem;
border: 3px solid rgb(177, 174, 174);
border-radius: 5px;
}

.Address {
position: absolute;
width: 499px;
height: 90px;
left: 122px;
top: 536px;
}
.Address input{
width: 685px;
height: 53px;
margin-top: 1rem;
border: 3px solid rgb(177, 174, 174);
border-radius: 4px;
}
.Address-2{
position: absolute;
width: 499px;
height: 90px;
left: 122px;
top: 658px;
}
.Address-2 input{
width: 685px;
height: 53px;
margin-top: 1rem;
border: 3px solid rgb(177, 174, 174);
border-radius: 5px;
}

.city{
position: absolute;
width: 250px;
height: 90px;
left: 122px;
top: 780px;
}
.city select {
width: 405px;
height: 50px;
margin-top: 1rem;
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
font-size: 21px;
color: #666666;
border: 3px solid rgb(177, 174, 174);
border-radius: 5px;

}
.Postcode{
position: absolute;
width: 165px;
height: 90px;
left: 456px;
top: 790px;
}
.Postcode input{
width: 200px;
height: 45px;
margin-top: 0.2rem;
border: 3px solid rgb(177, 174, 174);
border-radius: 5px;
}
.colour-radio {
position: absolute;
width: 353px;
height: 70px;
left: 122px;
top: 940px;
width: 200px;
height: 53px;
margin-top: 1rem;
border: 3px solid rgb(177, 174, 174);
border-radius: 4px;
}

.checkbox {
position: absolute;
width: 500px;
height: 51px;
left: 123px;
top: 1106px;
}

.submit{
position: absolute;
width: 269px;
height: 70px;
left: 122px;
top: 1100px;

}
.submit button {
background: #E0633A;
font-family: 'Roboto';
font-style: normal;
color: white;
font-weight: 500;
font-size: 22px;
margin-top: 4em;
line-height: 26px;
width: 280px;
height: 70px;
border-radius: 0.25em;
}
Loading