AdminLTE/build/scss/pages/_profile.scss

45 lines
574 B
SCSS
Raw Normal View History

//
// Pages: Profile
//
2015-10-31 21:00:16 +00:00
.profile-user-img {
border: 3px solid $gray-500;
2015-10-31 21:00:16 +00:00
margin: 0 auto;
padding: 3px;
width: 100px;
2015-10-31 21:00:16 +00:00
}
.profile-username {
font-size: 21px;
margin-top: 5px;
}
.post {
2018-02-03 23:45:19 +00:00
border-bottom: 1px solid $gray-500;
color: #666;
2015-10-31 21:00:16 +00:00
margin-bottom: 15px;
padding-bottom: 15px;
2015-10-31 21:00:16 +00:00
&:last-of-type {
border-bottom: 0;
margin-bottom: 0;
padding-bottom: 0;
}
2015-10-31 21:00:16 +00:00
.user-block {
margin-bottom: 15px;
width: 100%;
}
.row {
width: 100%;
2015-10-31 21:00:16 +00:00
}
}
2020-09-24 07:08:20 +00:00
@include dark-mode () {
2020-09-24 07:08:20 +00:00
.post {
color: $white;
border-color: $gray-600;
}
}