You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

132 lines
2.1 KiB

.activity-stream {
clear: both;
9 years ago
box-shadow: 4px 3px 0 rgba(0, 0, 0, 0.1);
.entry {
border-bottom: 1px solid $darker-background-color;
background: $background-color;
border-left: 2px solid $primary-color;
9 years ago
&.entry-reblog {
border-left: 2px solid $tertiary-color;
.content {
a {
color: $tertiary-color;
}
}
}
&.entry-predecessor, &.entry-successor {
border-left: 2px solid $lighter-text-color;
background: darken($background-color, 5%);
.content {
a {
color: $lighter-text-color;
}
}
}
&.entry-follow, &.entry-favourite {
.content {
padding-top: 10px;
padding-bottom: 10px;
}
}
&:last-child {
border-bottom: 0;
}
}
.entry__container {
display: flex;
}
.avatar {
width: 48px;
padding: 10px;
padding-left: 8px;
padding-right: 0;
padding-top: 12px;
img {
width: 48px;
height: 48px;
display: block;
border-radius: 5px;
}
}
.entry__container__container {
flex-grow: 1;
}
.header {
margin-bottom: 5px;
9 years ago
padding: 10px;
padding-bottom: 0;
padding-left: 8px;
9 years ago
.name {
text-decoration: none;
color: $lighter-text-color;
9 years ago
strong {
color: $text-color;
9 years ago
}
&:hover {
strong {
text-decoration: underline;
}
}
}
}
9 years ago
.pre-header {
border-bottom: 1px solid darken($background-color, 5%);
color: $tertiary-color;
9 years ago
padding: 5px 10px;
padding-left: 8px;
clear: both;
9 years ago
.name {
color: $tertiary-color;
9 years ago
font-weight: bold;
text-decoration: none;
9 years ago
&:hover {
text-decoration: underline;
}
}
}
.content {
font-size: 14px;
9 years ago
padding: 0 10px;
padding-left: 8px;
padding-bottom: 25px;
a {
color: $primary-color;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
}
.time {
text-decoration: none;
color: $lighter-text-color;
&:hover {
text-decoration: underline;
}
}
}