2016-02-26 19:48:20 +00:00
|
|
|
|
|
|
|
.activity-stream {
|
|
|
|
clear: both;
|
2016-02-26 20:11:52 +00:00
|
|
|
box-shadow: 4px 3px 0 rgba(0, 0, 0, 0.1);
|
2016-02-26 19:48:20 +00:00
|
|
|
|
|
|
|
.entry {
|
2016-02-29 18:42:08 +00:00
|
|
|
border-bottom: 1px solid $darker-background-color;
|
2016-02-27 23:02:59 +00:00
|
|
|
background: $background-color;
|
|
|
|
border-left: 2px solid $primary-color;
|
2016-02-26 19:48:20 +00:00
|
|
|
|
2016-02-26 20:11:52 +00:00
|
|
|
&.entry-reblog {
|
2016-02-27 23:02:59 +00:00
|
|
|
border-left: 2px solid $tertiary-color;
|
2016-02-29 18:42:08 +00:00
|
|
|
|
|
|
|
.content {
|
|
|
|
a {
|
|
|
|
color: $tertiary-color;
|
|
|
|
}
|
|
|
|
}
|
2016-02-26 19:48:20 +00:00
|
|
|
}
|
|
|
|
|
2016-02-28 13:02:53 +00:00
|
|
|
&.entry-predecessor, &.entry-successor {
|
|
|
|
border-left: 2px solid $lighter-text-color;
|
|
|
|
background: darken($background-color, 5%);
|
2016-02-29 18:42:08 +00:00
|
|
|
|
|
|
|
.content {
|
|
|
|
a {
|
|
|
|
color: $lighter-text-color;
|
|
|
|
}
|
|
|
|
}
|
2016-02-28 13:02:53 +00:00
|
|
|
}
|
|
|
|
|
2016-02-28 14:46:29 +00:00
|
|
|
&.entry-follow, &.entry-favourite {
|
|
|
|
.content {
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-26 19:48:20 +00:00
|
|
|
&:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-28 13:02:53 +00:00
|
|
|
.entry__container {
|
2016-02-27 23:51:05 +00:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
width: 48px;
|
|
|
|
padding: 10px;
|
|
|
|
padding-left: 8px;
|
|
|
|
padding-right: 0;
|
|
|
|
padding-top: 12px;
|
|
|
|
|
|
|
|
img {
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
display: block;
|
2016-02-28 13:02:53 +00:00
|
|
|
border-radius: 5px;
|
2016-02-27 23:51:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-28 13:02:53 +00:00
|
|
|
.entry__container__container {
|
2016-02-27 23:51:05 +00:00
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
2016-02-26 19:48:20 +00:00
|
|
|
.header {
|
2016-02-29 18:42:08 +00:00
|
|
|
margin-bottom: 5px;
|
2016-02-26 20:11:52 +00:00
|
|
|
padding: 10px;
|
|
|
|
padding-bottom: 0;
|
2016-02-29 18:42:08 +00:00
|
|
|
padding-left: 8px;
|
2016-02-26 20:11:52 +00:00
|
|
|
|
|
|
|
.name {
|
|
|
|
text-decoration: none;
|
2016-02-28 13:02:53 +00:00
|
|
|
color: $lighter-text-color;
|
2016-02-26 20:11:52 +00:00
|
|
|
|
|
|
|
strong {
|
2016-02-28 13:02:53 +00:00
|
|
|
color: $text-color;
|
2016-02-26 20:11:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
strong {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-02-26 19:48:20 +00:00
|
|
|
}
|
|
|
|
|
2016-02-26 20:11:52 +00:00
|
|
|
.pre-header {
|
2016-02-29 18:42:08 +00:00
|
|
|
border-bottom: 1px solid darken($background-color, 5%);
|
2016-02-27 23:02:59 +00:00
|
|
|
color: $tertiary-color;
|
2016-02-26 20:11:52 +00:00
|
|
|
padding: 5px 10px;
|
|
|
|
padding-left: 8px;
|
2016-02-27 23:51:05 +00:00
|
|
|
clear: both;
|
2016-02-26 19:48:20 +00:00
|
|
|
|
2016-02-26 20:11:52 +00:00
|
|
|
.name {
|
2016-02-27 23:02:59 +00:00
|
|
|
color: $tertiary-color;
|
2016-02-26 20:11:52 +00:00
|
|
|
font-weight: bold;
|
|
|
|
text-decoration: none;
|
2016-02-26 19:48:20 +00:00
|
|
|
|
2016-02-26 20:11:52 +00:00
|
|
|
&:hover {
|
2016-02-26 19:48:20 +00:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
2016-02-29 18:42:08 +00:00
|
|
|
font-size: 14px;
|
2016-02-26 20:11:52 +00:00
|
|
|
padding: 0 10px;
|
|
|
|
padding-left: 8px;
|
2016-02-29 18:42:08 +00:00
|
|
|
padding-bottom: 25px;
|
2016-02-28 14:46:29 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: $primary-color;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2016-02-26 19:48:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.time {
|
|
|
|
text-decoration: none;
|
2016-02-28 13:02:53 +00:00
|
|
|
color: $lighter-text-color;
|
2016-02-26 19:48:20 +00:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|