-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* replace hr's with css margins, constrain text * move contact css into separate file * put navbar logo above other items on page * copy nav + footer from other pages * change a lot of very specific px values over to more responsive units * improve contrast on form
- Loading branch information
Showing
5 changed files
with
130 additions
and
163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
body { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
.nav-wrapper { | ||
background-color: white; | ||
} | ||
|
||
.contactCont { | ||
font-weight: bold; | ||
padding: 2rem 2.5rem; | ||
border-radius: 1.3rem; | ||
background: #d9d9d9b5; | ||
box-shadow: 0px 4px 4px 0px #00000040; | ||
text-align: center; | ||
width: max-content; | ||
margin: 37vh 50vw 37vh; | ||
transform: translate(-50%, -25%); | ||
} | ||
|
||
.navBanner { | ||
position: relative; | ||
width: 100%; | ||
height: 80vh; | ||
border: 1px solid #304562; | ||
background: url('../img/dedilseFigmaBanner.png'), #304562 0px -140px / 100% 295% no-repeat; | ||
background-size: cover; | ||
background-position: center; | ||
} | ||
|
||
form { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
margin-top: 4rem; | ||
} | ||
|
||
form div { | ||
margin-bottom: 1.1rem; | ||
} | ||
|
||
form label { | ||
font-weight: bold; | ||
color: black !important; | ||
} | ||
|
||
form input, | ||
form textarea { | ||
width: 50vw; | ||
padding: 1rem; | ||
font-size: 1.3rem; | ||
background: #FFF; | ||
} | ||
|
||
form textarea { | ||
height: 30vh; | ||
resize: none; | ||
border: 1px solid #C45A4C; | ||
margin: 5vh auto; | ||
} | ||
|
||
button { | ||
width: 10vw; | ||
height: 3rem; | ||
color: #FFF; | ||
background-color: #C45A4C; | ||
border: none; | ||
font-size: 1.2rem; | ||
border-radius: 1.2rem; | ||
margin-bottom: 6vh; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,6 +52,7 @@ nav ul li a { | |
width: 125px; | ||
height: 125px; | ||
margin-top:30px; | ||
z-index: 3; | ||
} | ||
|
||
footer { | ||
|