| Server IP : 101.53.144.229 / Your IP : 216.73.216.104 Web Server : Apache System : Linux host.gdigitalindia.in 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : digitalshiksha ( 1179) PHP Version : 5.6.40 Disable Function : eval,show_source,system,shell_exec,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,dl,show_source,curl_multi_exechellcmd, ini_restore,apache_get_modules,get_cfg_var,passthru, exec ,proc_get_status,fpassthru,c999_buff_prepare,c999_sess_put,c99_buff_prepare,c99_sess_put,proc_close,ini_alter,dl,symlink,link,proc_close,ini_alter,dl,symlink,link,mail MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/digitalshiksha/public_html/assets/admin/scss/material-dashboard/ |
Upload File : |
//
// Avatar
//
// General styles
.avatar {
color: $white;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: $avatar-font-size;
border-radius: $border-radius-pill;
height: $avatar-height;
width: $avatar-width;
transition: all .2s ease-in-out;
img {
width: 100%;
}
&.rounded-circle {
img {
@extend .rounded-circle;
}
}
+ .avatar-content {
display: inline-block;
margin-left: $avatar-content-margin;
}
&.avatar-raised {
margin-top: -$avatar-height * 0.5;
}
&.avatar-scale-up:hover {
transform: scale(1.2);
}
}
// Style for the Testimonials Carousel
.active {
.avatar.avatar-scale-up {
transform: scale(1.2);
}
}
// Avatar size variations
.avatar-xxl {
width: $avatar-xxl-width !important;
height: $avatar-xxl-height !important;
&.avatar-raised {
margin-top: -$avatar-xxl-height * 0.5;
}
}
.avatar-xl {
width: $avatar-xl-width !important;
height: $avatar-xl-height !important;
&.avatar-raised {
margin-top: -$avatar-xl-height * 0.5;
}
}
.avatar-lg {
width: $avatar-lg-width !important;
height: $avatar-lg-height !important;
font-size: $font-size-sm;
&.avatar-raised {
margin-top: -$avatar-lg-height * 0.5;
}
}
.avatar-sm {
width: $avatar-sm-width !important;
height: $avatar-sm-height !important;
font-size: $font-size-sm;
&.avatar-raised {
margin-top: -$avatar-sm-height * 0.5;
}
}
.avatar-xs {
width: $avatar-xs-width !important;
height: $avatar-xs-height !important;
font-size: $font-size-xs;
&.avatar-raised {
margin-top: -$avatar-xs-height * 0.5;
}
}
//
// Avatar group
//
// General styles
.avatar-group {
.avatar {
position: relative;
z-index: $avatar-group-zindex;
border: $avatar-group-border solid $card-bg;
&:hover {
z-index: $avatar-group-zindex-hover;
}
}
.avatar + .avatar {
margin-left: $avatar-group-double;
}
}