-
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
4ad1ee1
commit ce56e0a
Showing
14 changed files
with
543 additions
and
10 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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,54 @@ | ||
.team-card { | ||
padding: 40px 35px; | ||
|
||
border-radius: var(--border-radius-large); | ||
border: var(--border); | ||
box-shadow: var(--shadow); | ||
|
||
height: 100%; | ||
|
||
&__header { | ||
display: flex; | ||
} | ||
|
||
&__image { | ||
&:not(:last-child) { | ||
margin-right: 20px; | ||
} | ||
} | ||
|
||
&__info { | ||
align-self: end; | ||
|
||
&:not(:last-child) { | ||
margin-right: 10px; | ||
} | ||
} | ||
|
||
&__name { | ||
&:not(:last-child) { | ||
margin-bottom: 3px; | ||
} | ||
} | ||
|
||
|
||
&__link { | ||
@include flex-center; | ||
@include square(34px); | ||
|
||
flex-shrink: 0; | ||
|
||
margin-left: auto; | ||
align-self: start; | ||
|
||
color: var(--color-accent); | ||
background-color: var(--color-dark); | ||
border-radius: 50%; | ||
} | ||
|
||
&__body { | ||
padding-top: 28px; | ||
margin-top: 28px; | ||
border-top: var(--border); | ||
} | ||
} |
Oops, something went wrong.