2019-07-18 14:22:11 +00:00
|
|
|
//
|
|
|
|
// Component: Social Widgets
|
|
|
|
//
|
|
|
|
|
2015-10-31 21:00:16 +00:00
|
|
|
//General widget style
|
2018-03-17 17:07:55 +00:00
|
|
|
.card-widget {
|
2019-07-18 14:22:11 +00:00
|
|
|
border: 0;
|
2015-10-31 21:00:16 +00:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
//User Widget Style 1
|
|
|
|
.widget-user {
|
2019-06-28 08:02:07 +00:00
|
|
|
|
2015-10-31 21:00:16 +00:00
|
|
|
//User name container
|
|
|
|
.widget-user-header {
|
2018-03-17 17:07:55 +00:00
|
|
|
@if $enable-rounded {
|
|
|
|
@include border-top-radius($border-radius);
|
|
|
|
}
|
2019-06-28 08:02:07 +00:00
|
|
|
|
2019-08-31 08:25:58 +00:00
|
|
|
height: 135px;
|
2019-06-28 08:02:07 +00:00
|
|
|
padding: 1rem;
|
2019-09-01 09:21:33 +00:00
|
|
|
text-align: center;
|
2015-10-31 21:00:16 +00:00
|
|
|
}
|
2019-06-28 08:02:07 +00:00
|
|
|
|
2015-10-31 21:00:16 +00:00
|
|
|
//User name
|
|
|
|
.widget-user-username {
|
|
|
|
font-size: 25px;
|
|
|
|
font-weight: 300;
|
2019-08-31 08:25:58 +00:00
|
|
|
margin-bottom: 0;
|
2019-06-28 08:02:07 +00:00
|
|
|
margin-top: 0;
|
2020-05-30 13:06:11 +00:00
|
|
|
text-shadow: 0 1px 1px rgba($black, .2);
|
2015-10-31 21:00:16 +00:00
|
|
|
}
|
2019-06-28 08:02:07 +00:00
|
|
|
|
2015-10-31 21:00:16 +00:00
|
|
|
//User single line description
|
|
|
|
.widget-user-desc {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2019-06-28 08:02:07 +00:00
|
|
|
|
2015-10-31 21:00:16 +00:00
|
|
|
//User image container
|
|
|
|
.widget-user-image {
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -45px;
|
2019-06-28 08:02:07 +00:00
|
|
|
position: absolute;
|
2019-09-01 09:15:42 +00:00
|
|
|
top: 80px;
|
2019-06-28 08:02:07 +00:00
|
|
|
|
2015-10-31 21:00:16 +00:00
|
|
|
> img {
|
2018-03-17 17:07:55 +00:00
|
|
|
border: 3px solid $white;
|
2019-06-28 08:02:07 +00:00
|
|
|
height: auto;
|
|
|
|
width: 90px;
|
2015-10-31 21:00:16 +00:00
|
|
|
}
|
|
|
|
}
|
2018-03-17 17:07:55 +00:00
|
|
|
|
|
|
|
.card-footer {
|
2019-09-01 09:15:42 +00:00
|
|
|
padding-top: 50px;
|
2015-10-31 21:00:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//User Widget Style 2
|
|
|
|
.widget-user-2 {
|
2019-06-28 08:02:07 +00:00
|
|
|
|
2015-10-31 21:00:16 +00:00
|
|
|
//User name container
|
|
|
|
.widget-user-header {
|
2018-03-17 17:07:55 +00:00
|
|
|
@include border-top-radius($border-radius);
|
2019-06-28 08:02:07 +00:00
|
|
|
padding: 1rem;
|
2015-10-31 21:00:16 +00:00
|
|
|
}
|
2019-06-28 08:02:07 +00:00
|
|
|
|
2015-10-31 21:00:16 +00:00
|
|
|
//User name
|
|
|
|
.widget-user-username {
|
|
|
|
font-size: 25px;
|
|
|
|
font-weight: 300;
|
2019-06-28 08:02:07 +00:00
|
|
|
margin-bottom: 5px;
|
|
|
|
margin-top: 5px;
|
2015-10-31 21:00:16 +00:00
|
|
|
}
|
2019-06-28 08:02:07 +00:00
|
|
|
|
2015-10-31 21:00:16 +00:00
|
|
|
//User single line description
|
|
|
|
.widget-user-desc {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2019-06-28 08:02:07 +00:00
|
|
|
|
2015-10-31 21:00:16 +00:00
|
|
|
.widget-user-username,
|
|
|
|
.widget-user-desc {
|
|
|
|
margin-left: 75px;
|
|
|
|
}
|
2019-06-28 08:02:07 +00:00
|
|
|
|
2015-10-31 21:00:16 +00:00
|
|
|
//User image container
|
|
|
|
.widget-user-image {
|
|
|
|
> img {
|
|
|
|
float: left;
|
2019-06-28 08:02:07 +00:00
|
|
|
height: auto;
|
|
|
|
width: 65px;
|
2015-10-31 21:00:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|