Skip to content

Commit

Permalink
Capstone Project
Browse files Browse the repository at this point in the history
  • Loading branch information
KatalKavya96 committed Dec 13, 2024
1 parent bee5658 commit 2a4d094
Show file tree
Hide file tree
Showing 2 changed files with 330 additions and 167 deletions.
233 changes: 220 additions & 13 deletions capstone.css
Original file line number Diff line number Diff line change
@@ -1,37 +1,244 @@

*{
margin-left: 11px;
* {
margin-left: 10px;
padding: 0;
box-sizing: border-box;
}

body{
body {
background-color: black;
color: white;
margin: 0;
padding: 0;

font-family: 'Chivo', sans-serif;
}

.navbar {
width: 1344px;
height: 72px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 0;
border-bottom: 1px solid white;
}

.logo {
width: 139px;
height: 48px;
}

.titles {
display: flex;
gap: 24px;
}

.titles a {
font-weight: 400;
font-size: 28px;
line-height: 32px;
letter-spacing: -1%;
}

.hero {
width: 1344px;
text-align: center;
padding: 72px 0;
border-bottom: 1px solid white;
}

.title {
font-weight: 900;
font-size: 120px;
line-height: 120px;
letter-spacing: -2%;
margin-bottom: 32px;
}

.titleimg {
width: 100%;
max-width: 1344px;
height: 672px;
border-radius: 56px;
border: 1px solid black;
}

.grid {
width: 1344px;
display: flex;
flex-direction: column;
gap: 32px;
}

.row {
display: flex;
justify-content: space-between;
align-items: stretch;
gap: 32px;
}

.project {
width: 30%;
display: flex;
flex-direction: column;
gap: 6px;
}

.project img {
width: 100%;
height: 279px;
border: 1px solid white;
border-radius: 8px;
}

.info h3 {
font-family: 'Archivo', sans-serif;
font-weight: 500;
font-size: 20px;
line-height: 24px;
}

.info p {
font-family: 'Archivo', sans-serif;
font-weight: 500;
font-size: 17px;
line-height: 24px;
color: rgba(255, 255, 255, 0.6);
}
.navbar{

.segment {
width: 1344px;
padding: 32px 0;
display: flex;

align-items: center;
gap: 32px;
}

.spacer {
width: 656px;
height: 154px;
}

.para {
width: 656px;
height: 154px;
font-family: 'Archivo', sans-serif;
font-weight: 500;
font-size: 24px;
line-height: 32px;
letter-spacing: -0.5%;
}

.landing-footer {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
height: 150px;
}

.footer-para {
font-family: 'Chivo', sans-serif;
font-weight: 900;
font-size: 34px;
line-height: 40px;
letter-spacing: -1%;
margin-bottom: 20px;
}

#row1{
.footer-form {
width: 600px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
margin: 20px auto;
}

.email {
width: 490px;
border-radius: 8px;
padding: 6px 12px;
background-color: black;
border: 1px solid white;
display: flex;

justify-content: center;
align-items: center;
}

.email input {
width: 100%;
border: none;
outline: none;
font-family: 'Archivo', sans-serif;
font-weight: 500;
font-size: 20px;
line-height: 24px;
background: none;
color: white;
}

.submit {
width: 98px;
height: 40px;
border-radius: 8px;
background-color: #928DD3;
display: flex;
justify-content: center;
align-items: center;
}

.submit input {
width: 100%;
border: none;
font-family: 'Archivo', sans-serif;
font-weight: 600;
background: none;
color: black;
cursor: pointer;
}

#row2,#row3{
.socials {
width: 192px;
height: 48px;
display: flex;

justify-content: center;
gap: 24px;
margin: 16px auto;
}

.socials img {
width: 48px;
height: 48px;
}

.footer {
width: 100%;
padding: 16px 0;
background-color: black;
color: white;
text-align: center;
}

.footer-content {
width: 1344px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}

#pagelinks p {
font-family: 'Chivo', sans-serif;
font-weight: 400;
font-size: 20px;
margin: 0;
}

.buttonlarge {
border: 1px solid white;
border-radius: 8px;
padding: 8px 16px;
font-family: 'Archivo', sans-serif;
font-weight: 600;
font-size: 20px;
cursor: pointer;
text-align: center;
}
Loading

0 comments on commit 2a4d094

Please sign in to comment.