generated from UoaWDCC/ssr-template
-
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.
Merge pull request #87 from UoaWDCC/ORAKEI-110-New-contacts-implement…
…ation Orakei 110 new contacts implementation
- Loading branch information
Showing
2 changed files
with
234 additions
and
127 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
.contacts-wrapper{ | ||
position: relative; | ||
overflow: hidden; | ||
|
||
/*Silly navbar background workaround*/ | ||
margin-top: -100px; | ||
} | ||
|
||
.contacts-content{ | ||
padding: 14rem 0; | ||
|
||
display: flex; | ||
gap: 64px; | ||
} | ||
|
||
.contacts-left{ | ||
flex: 1.2; | ||
|
||
display: flex; | ||
flex-direction: column; | ||
gap: 64px; | ||
} | ||
|
||
.contacts-right{ | ||
flex: 0.8; | ||
} | ||
|
||
.contacts-card{ | ||
padding: 36px; | ||
border-radius: 16px; | ||
|
||
background: rgba(241, 255, 246, 0.6); | ||
backdrop-filter: blur(12px); | ||
} | ||
|
||
.form-wrapper{ | ||
display: flex; | ||
flex-direction: column; | ||
gap: 24px; | ||
} | ||
|
||
.form-group{ | ||
width: 100%; | ||
} | ||
|
||
.form-group label{ | ||
color: #2F2F2F; | ||
font-weight: bold; | ||
} | ||
|
||
.form-group input{ | ||
width: 100%; | ||
height: 45px; | ||
border-radius: 8px; | ||
border: 1px solid #C8C8C8; | ||
} | ||
|
||
.form-group textarea{ | ||
width: 100%; | ||
min-height: 150px; | ||
|
||
border-radius: 8px; | ||
border: 1px solid #C8C8C8; | ||
} | ||
|
||
.form-group button{ | ||
display: flex; | ||
width: 100%; | ||
padding: 18px 0 13px; | ||
justify-content: center; | ||
align-items: center; | ||
|
||
border-radius: 8px; | ||
background: var(--YOO-Blue-Darkest); | ||
box-shadow: 4px 4px 6px 0px rgba(110, 172, 109, 0.15); | ||
|
||
color: white; | ||
font-size: 20px; | ||
font-weight: 700; | ||
line-height: 1; | ||
|
||
transition: all 400ms; | ||
} | ||
|
||
.form-group button:hover{ | ||
opacity: 0.9; | ||
box-shadow: 4px 4px 8px -2px hsl(188deg 100% 16% / 0.1), 12px 12px 18px -3px hsl(188deg 100% 16% / 0.1); | ||
transform: translate(-3px, -3px); | ||
|
||
transition: all 200ms; | ||
will-change: transform, box-shadow; | ||
} | ||
|
||
@media(max-width: 1024px){ | ||
.contacts-content{ | ||
flex-direction: column; | ||
} | ||
} |