Skip to content

Commit

Permalink
Initial project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
geekcrea committed Jun 24, 2024
1 parent 63c579a commit 551501f
Show file tree
Hide file tree
Showing 13 changed files with 854 additions and 0 deletions.
Binary file added assets/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions assets/icons/close.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 assets/images/logo.png
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 assets/photographers/account.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
76 changes: 76 additions & 0 deletions css/photographer.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
#contact_modal {
display: none;
}

.photograph-header {
background-color: #FAFAFA;
height: 300px;
margin: 0 100px;
}

.contact_button {
font-size: 20px;
font-weight: bold;
color: white;
padding: 11px;
width: 170px;
height: 70px;
border: none;
background-color: #901C1C;
border-radius: 5px;
cursor: pointer;
}

.modal {
border-radius: 5px;
background-color: #DB8876;
width: 50%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 35px;
margin: auto;
}

.modal header {
justify-content: space-between;
width: 100%;
}

.modal header img {
cursor: pointer;
}

.modal header h2 {
font-size: 64px;
font-weight: normal;
text-align: center;
}

form {
display: flex;
width: 100%;
flex-direction: column;
align-items: flex-start;
}

form label {
color: #312E2E;
font-size: 36px;
}

form div {
display: flex;
flex-direction: column;
width: 100%;
align-items: self-start;
margin-bottom: 26px;
}

form input {
width: 100%;
height: 68px;
border: none;
border-radius: 5px;
}
50 changes: 50 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
@import url("photographer.css");

body {
font-family: "DM Sans", sans-serif;
margin: 0;
}


header {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
height: 90px;
}

h1 {
color: #901C1C;
margin-right: 100px;
}

.logo {
height: 50px;
margin-left: 100px;
}

.photographer_section {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 70px;
margin-top: 100px;
}

.photographer_section article {
justify-self: center;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}

.photographer_section article h2 {
color: #D3573C;
font-size: 36px;
}

.photographer_section article img {
height: 200px;
width: 200px;
}
Loading

0 comments on commit 551501f

Please sign in to comment.