35 lines
681 B
CSS
35 lines
681 B
CSS
|
/*
|
||
|
* Copyright 2020 Netsyms Technologies.
|
||
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||
|
*/
|
||
|
/*
|
||
|
Created on : Apr 29, 2020, 9:29:20 PM
|
||
|
Author : Skylar Ittner
|
||
|
*/
|
||
|
|
||
|
.profile-card .card-header {
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
.profile-card .profile-image {
|
||
|
float: left;
|
||
|
width: 80px;
|
||
|
max-width: 25%;
|
||
|
position: relative;
|
||
|
margin-right: 2rem;
|
||
|
}
|
||
|
|
||
|
.profile-card .profile-image img {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.profile-card .profile-name {
|
||
|
|
||
|
}
|
||
|
|
||
|
.profile-card .profile-location {
|
||
|
color: #8e8e93;
|
||
|
font-size: 90%;
|
||
|
}
|