-
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.
- Loading branch information
1 parent
b4185ef
commit 56e5eff
Showing
3 changed files
with
122 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
.deposition__section { | ||
display: flex; | ||
justify-content: center; | ||
padding-bottom: 6rem; | ||
} | ||
|
||
.deposition { | ||
align-items: center; | ||
background: rgba(195, 25, 25, 0.03); | ||
border-radius: 16px; | ||
display: flex; | ||
flex-direction: column; | ||
gap: 2rem; | ||
padding: 1.5rem; | ||
} | ||
|
||
.deposition__content { | ||
align-items: stretch; | ||
display: flex; | ||
flex-direction: column; | ||
gap: 1rem; | ||
} | ||
|
||
.deposition__content span, .deposition__content h2 { | ||
font-family: var(--default-font); | ||
text-align: center; | ||
} | ||
|
||
.deposition__content span { | ||
color: var(--red-100); | ||
font-size: 14px; | ||
font-weight: 600; | ||
line-height: 142.857%; | ||
} | ||
|
||
.deposition__content h2 { | ||
color: var(--gray-900); | ||
font-size: 18px; | ||
font-weight: 500; | ||
line-height: 122.222%; | ||
letter-spacing: -0.72px; | ||
} | ||
|
||
.deposition__person { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
flex-direction: column; | ||
} | ||
|
||
.deposition__person img { | ||
padding-bottom: 1rem; | ||
} | ||
|
||
.deposition__person h3, .deposition__person span { | ||
font-family: var(--default-font); | ||
text-align: center; | ||
} | ||
|
||
.deposition__person h3 { | ||
color: var(--gray-900, #101828); | ||
font-size: 16px; | ||
font-weight: 500; | ||
line-height: 150%; | ||
padding-bottom: 4px; | ||
} | ||
|
||
.deposition__person span { | ||
color: var(--gray-500); | ||
font-size: 14px; | ||
line-height: 142.857%; | ||
} | ||
|
||
@media screen and (min-width: 900px) { | ||
.deposition__section { | ||
padding: 0 7%; | ||
padding-bottom: 6rem; | ||
} | ||
|
||
.deposition { | ||
padding: 4rem; | ||
} | ||
|
||
.deposition__content h2 { | ||
font-size: 2.25rem; | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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