AdminLTE/build/scss/_social-widgets.scss

82 lines
1.4 KiB
SCSS
Raw Normal View History

2015-10-31 22:00:16 +01:00
/*
* Component: Social Widgets
* -------------------------
*/
//General widget style
2018-03-17 18:07:55 +01:00
.card-widget {
2015-10-31 22:00:16 +01:00
border: none;
position: relative;
}
//User Widget Style 1
.widget-user {
//User name container
.widget-user-header {
2018-03-17 18:07:55 +01:00
padding: 1rem;
2015-10-31 22:00:16 +01:00
height: 120px;
2018-03-17 18:07:55 +01:00
@if $enable-rounded {
@include border-top-radius($border-radius);
}
2015-10-31 22:00:16 +01:00
}
//User name
.widget-user-username {
margin-top: 0;
margin-bottom: 5px;
font-size: 25px;
font-weight: 300;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
//User single line description
.widget-user-desc {
margin-top: 0;
}
//User image container
.widget-user-image {
position: absolute;
top: 65px;
left: 50%;
margin-left: -45px;
> img {
width: 90px;
height: auto;
2018-03-17 18:07:55 +01:00
border: 3px solid $white;
2015-10-31 22:00:16 +01:00
}
}
2018-03-17 18:07:55 +01:00
.card-footer {
padding-top: 40px;
2015-10-31 22:00:16 +01:00
}
}
//User Widget Style 2
.widget-user-2 {
//User name container
.widget-user-header {
2018-03-17 18:07:55 +01:00
padding: 1rem;
@include border-top-radius($border-radius);
2015-10-31 22:00:16 +01:00
}
//User name
.widget-user-username {
margin-top: 5px;
margin-bottom: 5px;
font-size: 25px;
font-weight: 300;
}
//User single line description
.widget-user-desc {
margin-top: 0;
}
.widget-user-username,
.widget-user-desc {
margin-left: 75px;
}
//User image container
.widget-user-image {
> img {
width: 65px;
height: auto;
float: left;
}
}
}