Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _includes/themes/lab/member.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<div class="row">
<div class="col-md-3">
<div class="media">
<img class="pull-left pad-right big-member-photo" src="{{ image }}" style="width:250px; height:auto; padding:1px; border:1px solid #021a40;">
<img class="pull-left pad-right big-member-photo" src="{{ image }}">
</div>
<div class="bigspacer"></div>

Expand Down
14 changes: 9 additions & 5 deletions assets/themes/lab/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -169,14 +169,18 @@ a.off {
}

.big-member-photo {
height: 400px;
width: 267;
// max-width: 300px;
border-radius: 50%;
width: 250px;
height:auto;
padding:1px;
border:1px solid #021a40;
}

.member-photo {
height: 150px;
width: 100px;
width: 175px;
height:175px;
border:1px solid #021a40;
border-radius: 50%;
}

.member-name {
Expand Down
2 changes: 1 addition & 1 deletion team/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<div class="col-md-1.25 memberbox">
<div class="media" style="width:500px; height:200px">
<a class="pull-left" href="{{ member.url }}">
<img class="media-object member-photo" src="{{ image }}" style="width:175px; height:175px; border:1px solid #021a40;">
<img class="media-object member-photo" src="{{ image }}">
</a>
<div class="media-body">
<div class="head media-heading member-name"><a href="{{ member.url }}" class="off">{{ member.title }}</a></div>
Expand Down