material-design-stock-theme/mobile/mobile.scss
Jordan Vidrine 8feff773f5 Revert "Changed variables to use var()"
This reverts commit 1c8e0c66ba.
2020-08-12 15:21:56 -05:00

63 lines
978 B
SCSS

@mixin boxShadow {
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 0 0 0 rgba(0, 0, 0, 0.12);
}
//create conversation cards
.topic-body {
@include boxShadow;
background-color: lighten($secondary, 10%);
margin-top: 10px;
padding: 20px;
border-radius: 4px;
}
//more space for avatars
.topic-avatar {
border-top: 0;
padding-top: 20px;
padding-left: 10px;
.avatar-flair {
right: 4px;
}
}
//increase space between post meta and post content
.boxed .contents {
padding: 20px 0 0 0;
}
//remove stray border from bottom of last post
.topic-status-info {
border-top: 0;
}
.small-action {
border: none;
}
#topic-closing-info {
border: none;
}
//remove lines between cards
.topic-post article {
border: none;
}
//put shadow on quotes as well
aside.quote {
@include boxShadow;
}
// RTL Overrides
.rtl {
.topic-avatar {
padding-left: initial;
padding-right: 10px;
.avatar-flair {
right: initial;
left: 4px;
}
}
}