Skip to content

Commit

Permalink
first-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
thecynic101 committed Feb 26, 2024
0 parents commit 26054ad
Show file tree
Hide file tree
Showing 13 changed files with 378 additions and 0 deletions.
Binary file added images/avatar-testimonial.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions images/bg-curve-desktop.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions images/bg-curve-mobile.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions images/icon-arrow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions images/icon-email.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions images/icon-phone.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions images/icon-quotes.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions images/illustration-1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions images/illustration-2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions images/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
145 changes: 145 additions & 0 deletions index.html

Large diffs are not rendered by default.

224 changes: 224 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,224 @@
*{
border: 0px;
padding: 0;
box-sizing: border-box;
}
body{
justify-content: center;
margin: 40px;
}

.part1{
display: flex;
width: 100%;
gap: 50px;

}
.features{
display: flex;
direction: rtl;
margin-bottom: 10px;
flex-direction: row;
gap: 20px;
margin-right: 100px;
font-size: 16px;
color: hsl(238, 22%, 44%);
font-family: "Raleway", sans-serif;
}

.ilustration-1 svg{
width: 50%;
height: 40px;

}

.introduction-h2{
width: 500px;
color: hsl(243, 87%, 12%);
font-family: "Raleway", sans-serif;
font-size: 20px;
}

.Description1{
width: 450px;
font-size: 16px;
color: (238, 22%, 44%);
font-family: "Open Sans", sans-serif;

}
.button{
display: flex;
justify-content: 1fr 1fr;
.box{
color: hsl(240, 75%, 98%);
background-color: hsl(224, 93%, 58%);
width: 150px;
height: 8px;
padding-left: 20px;
padding-bottom: 50px;
}
}

.placeholder{
border: solid 1px black;
width: 300px;
text-align: center;
gap: 10px;
margin-right: 10px;
padding: 10px;
}

.part2{
display: flex;
background-image: url("images/bg-curve-desktop.svg") ;
background-repeat: no-repeat;
width: 100%;
gap: 150px;

}

.combo1{
margin-top: 100px;
}

.illustration-2{
width: 50%;
}





.Description2{
width: 450px;
font-size: 16px;
color: hsl(238, 22%, 44%);
font-family: "Open Sans", sans-serif;
}
.Works{
text-decoration: underline;
color: hsl(170, 45%, 43%);
margin-bottom: 10px;

}
.image-borders{
width: 50px;
height: 50px;
border-radius: 50%;
}

.part3{
background-color: hsl(240, 75%, 98%);
width: 300px;
padding: 5px;
font-size: 16px;
margin-top: 45px;
}
.quotes{
height: 8px;
}
.ceo{
display: flex;
gap: 10px;
.name{
font-weight: bold;
font-family: "Open Sans", sans-serif;
justify-content: left 10px;
text-align: center;
margin-bottom: 10px;
}
.title{
font-size: 10px;
text-align: left;
margin-right: 30px;
}
.image{
border-radius: 100%;
}
}

.info{
display: grid;
gap: none;
}


.footer-top{
display: flex;
gap: 30rem;
background:hsl(238, 22%, 44%) ;
color: white;
align-items: center;
justify-content: center;
padding-top: 50px;
padding-bottom: 40px;
padding-left: 150px;
padding-right: 150px;

}

.message{
display: grid;
gap: 10px;
}

.form{
display: grid;
gap: 10px;
}

#form-text{
width: 20rem;
height: 2.5rem;
border-radius: 4px;
border: none;
padding: 10px 20px;
}

#bttn{
background-color:hsl(224, 93%, 58%);
color: white;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
width: 11rem;
}

.footer-bottom{
display: flex;
gap: 15rem;
background: hsl(243, 87%, 12%);
color: white;
align-items: center;
justify-content: center;
padding-top: 50px;
padding-bottom: 50px;
}

.contact-info{
display: grid;
gap: 20px;
color: white;
padding-bottom: 150px;
}

.i-info{
display: flex;
align-items: center;
gap: 15px;
line-height: 0.01px;
}

.list-type{
list-style-type: none;
}

.list-one, .list-two{
line-height: 30px;
}


.list-two{
padding-bottom: 30px;
}

0 comments on commit 26054ad

Please sign in to comment.