2016-02-26 20:48:20 +01:00
|
|
|
.activity-stream {
|
|
|
|
clear: both;
|
2016-03-06 17:52:23 +01:00
|
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
|
2016-02-26 20:48:20 +01:00
|
|
|
|
|
|
|
.entry {
|
2016-03-05 23:42:40 +01:00
|
|
|
border-bottom: 1px solid #d9e1e8;
|
|
|
|
background: #fff;
|
|
|
|
border-left: 2px solid #fff;
|
2016-02-26 20:48:20 +01:00
|
|
|
|
2016-02-26 21:11:52 +01:00
|
|
|
&.entry-reblog {
|
2016-03-06 12:34:39 +01:00
|
|
|
border-left-color: #2b90d9;
|
2016-02-26 20:48:20 +01:00
|
|
|
}
|
|
|
|
|
2016-02-28 14:02:53 +01:00
|
|
|
&.entry-predecessor, &.entry-successor {
|
2016-03-06 12:34:39 +01:00
|
|
|
background: #d9e1e8;
|
|
|
|
border-left-color: #d9e1e8;
|
2016-03-26 14:42:05 +01:00
|
|
|
border-bottom-color: darken(#d9e1e8, 10%);
|
2016-03-12 16:09:46 +01:00
|
|
|
|
|
|
|
.header {
|
|
|
|
.header__right {
|
|
|
|
.counter-btn {
|
|
|
|
color: darken(#d9e1e8, 15%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-02-28 14:02:53 +01:00
|
|
|
}
|
|
|
|
|
2016-03-26 14:42:05 +01:00
|
|
|
&.entry-center {
|
|
|
|
border-bottom-color: darken(#d9e1e8, 10%);
|
|
|
|
}
|
|
|
|
|
2016-02-28 15:46:29 +01:00
|
|
|
&.entry-follow, &.entry-favourite {
|
|
|
|
.content {
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 10px;
|
2016-03-06 12:34:39 +01:00
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
2016-02-28 15:46:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-26 20:48:20 +01:00
|
|
|
&:last-child {
|
|
|
|
border-bottom: 0;
|
2016-03-06 12:34:39 +01:00
|
|
|
border-radius: 0 0 4px 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-06 22:00:56 +02:00
|
|
|
.entry:first-child {
|
|
|
|
border-radius: 4px 4px 0 0;
|
2016-03-06 12:34:39 +01:00
|
|
|
|
2016-10-06 22:00:56 +02:00
|
|
|
&:last-child {
|
|
|
|
border-radius: 4px;
|
2016-02-26 20:48:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-03 00:26:00 +02:00
|
|
|
@media screen and (max-width: 700px) {
|
|
|
|
border-radius: 0;
|
2016-03-12 16:09:46 +01:00
|
|
|
box-shadow: none;
|
|
|
|
|
2016-10-03 16:10:17 +02:00
|
|
|
.entry {
|
|
|
|
&:last-child {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
2016-10-03 00:26:00 +02:00
|
|
|
border-radius: 0;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
}
|
2016-03-12 16:09:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-28 14:02:53 +01:00
|
|
|
.entry__container {
|
2016-10-06 21:56:07 +02:00
|
|
|
overflow: hidden;
|
2016-02-28 00:51:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.avatar {
|
2016-03-06 17:52:23 +01:00
|
|
|
width: 56px;
|
2016-11-15 18:45:54 +01:00
|
|
|
padding: 15px 10px;
|
|
|
|
padding-right: 5px;
|
2016-10-06 21:56:07 +02:00
|
|
|
float: left;
|
2016-02-28 00:51:05 +01:00
|
|
|
|
|
|
|
img {
|
2016-03-06 17:52:23 +01:00
|
|
|
width: 56px;
|
|
|
|
height: 56px;
|
2016-02-28 00:51:05 +01:00
|
|
|
display: block;
|
2016-10-03 00:26:00 +02:00
|
|
|
border-radius: 4px;
|
2016-02-28 00:51:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-28 14:02:53 +01:00
|
|
|
.entry__container__container {
|
2016-11-15 18:45:54 +01:00
|
|
|
margin-left: 71px;
|
2016-02-28 00:51:05 +01:00
|
|
|
}
|
|
|
|
|
2016-02-26 20:48:20 +01:00
|
|
|
.header {
|
2016-03-06 17:52:23 +01:00
|
|
|
margin-bottom: 10px;
|
2016-03-05 23:42:40 +01:00
|
|
|
padding: 15px;
|
2016-02-26 21:11:52 +01:00
|
|
|
padding-bottom: 0;
|
2016-02-29 19:42:08 +01:00
|
|
|
padding-left: 8px;
|
2016-03-06 17:52:23 +01:00
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.header__left {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header__right {
|
|
|
|
|
|
|
|
}
|
2016-02-26 21:11:52 +01:00
|
|
|
|
|
|
|
.name {
|
|
|
|
text-decoration: none;
|
2016-03-05 23:42:40 +01:00
|
|
|
color: #9baec8;
|
2016-02-26 21:11:52 +01:00
|
|
|
|
|
|
|
strong {
|
2016-03-05 23:42:40 +01:00
|
|
|
color: #282c37;
|
|
|
|
font-weight: 500;
|
2016-02-26 21:11:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
strong {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-02-26 20:48:20 +01:00
|
|
|
}
|
|
|
|
|
2016-02-26 21:11:52 +01:00
|
|
|
.pre-header {
|
2016-03-05 23:42:40 +01:00
|
|
|
border-bottom: 1px solid #d9e1e8;
|
|
|
|
color: #2b90d9;
|
2016-02-26 21:11:52 +01:00
|
|
|
padding: 5px 10px;
|
|
|
|
padding-left: 8px;
|
2016-02-28 00:51:05 +01:00
|
|
|
clear: both;
|
2016-02-26 20:48:20 +01:00
|
|
|
|
2016-02-26 21:11:52 +01:00
|
|
|
.name {
|
2016-03-05 23:42:40 +01:00
|
|
|
color: #2b90d9;
|
|
|
|
font-weight: 500;
|
2016-02-26 21:11:52 +01:00
|
|
|
text-decoration: none;
|
2016-02-26 20:48:20 +01:00
|
|
|
|
2016-02-26 21:11:52 +01:00
|
|
|
&:hover {
|
2016-02-26 20:48:20 +01:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
2016-02-29 19:42:08 +01:00
|
|
|
font-size: 14px;
|
2016-10-06 21:56:07 +02:00
|
|
|
padding: 0 15px;
|
2016-02-26 21:11:52 +01:00
|
|
|
padding-left: 8px;
|
2016-09-08 01:24:26 +02:00
|
|
|
padding-bottom: 15px;
|
2016-03-05 23:42:40 +01:00
|
|
|
color: #282c37;
|
2016-10-06 21:56:07 +02:00
|
|
|
word-wrap: break-word;
|
|
|
|
overflow: hidden;
|
2016-02-28 15:46:29 +01:00
|
|
|
|
2016-09-10 10:14:36 +02:00
|
|
|
p {
|
|
|
|
margin-bottom: 18px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-28 15:46:29 +01:00
|
|
|
a {
|
2016-03-05 23:42:40 +01:00
|
|
|
color: #2b90d9;
|
2016-02-28 15:46:29 +01:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2016-03-06 17:52:23 +01:00
|
|
|
|
|
|
|
&.mention {
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
span {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-02-28 15:46:29 +01:00
|
|
|
}
|
2016-02-26 20:48:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.time {
|
|
|
|
text-decoration: none;
|
2016-03-05 23:42:40 +01:00
|
|
|
color: #9baec8;
|
2016-02-26 20:48:20 +01:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2016-09-08 01:24:26 +02:00
|
|
|
|
|
|
|
.media-attachments {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
padding-left: 10px;
|
2016-11-15 18:45:54 +01:00
|
|
|
margin-bottom: 15px;
|
2016-09-08 01:24:26 +02:00
|
|
|
|
|
|
|
li {
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
width: 120px;
|
|
|
|
height: 100px;
|
|
|
|
border-radius: 4px;
|
|
|
|
margin-right: 4px;
|
2016-10-03 16:10:17 +02:00
|
|
|
margin-bottom: 4px;
|
2016-09-08 01:24:26 +02:00
|
|
|
|
|
|
|
a {
|
|
|
|
display: block;
|
|
|
|
width: 120px;
|
|
|
|
height: 100px;
|
|
|
|
border-radius: 4px;
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: none;
|
|
|
|
background-size: cover;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-10-06 22:00:56 +02:00
|
|
|
|
|
|
|
@media screen and (max-width: 360px) {
|
|
|
|
.avatar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entry__container__container {
|
|
|
|
margin-left: 7px;
|
|
|
|
}
|
|
|
|
}
|
2016-02-26 20:48:20 +01:00
|
|
|
}
|