2016-08-31 21:58:10 +01:00
|
|
|
.button {
|
|
|
|
background-color: #2b90d9;
|
2016-09-27 22:12:33 +01:00
|
|
|
font-family: 'Roboto';
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
box-sizing: border-box;
|
|
|
|
text-align: center;
|
|
|
|
border: 10px none;
|
|
|
|
color: #fff;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
letter-spacing: 0;
|
|
|
|
text-transform: uppercase;
|
|
|
|
padding: 0 16px;
|
|
|
|
height: 36px;
|
|
|
|
cursor: pointer;
|
|
|
|
line-height: 36px;
|
|
|
|
border-radius: 4px;
|
|
|
|
text-decoration: none;
|
2016-08-31 21:58:10 +01:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: #489fde;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
background-color: #9baec8;
|
2016-10-02 14:28:47 +01:00
|
|
|
cursor: default;
|
2016-08-31 21:58:10 +01:00
|
|
|
}
|
2016-09-07 17:17:15 +01:00
|
|
|
|
|
|
|
&.button-secondary {
|
|
|
|
background-color: #282c37;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: #282c37;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
background-color: #9baec8;
|
|
|
|
}
|
|
|
|
}
|
2016-08-31 21:58:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-button {
|
|
|
|
color: #616b86;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: #717b98;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
color: #535b72;
|
|
|
|
cursor: default;
|
|
|
|
}
|
2016-09-01 12:21:48 +01:00
|
|
|
|
|
|
|
&.active {
|
|
|
|
color: #2b90d9;
|
|
|
|
}
|
2016-08-31 21:58:10 +01:00
|
|
|
}
|
|
|
|
|
2016-09-03 13:01:10 +01:00
|
|
|
.compose-form__textarea, .follow-form__input {
|
2016-08-31 21:58:10 +01:00
|
|
|
background: #fff;
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
background: #d9e1e8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content, .reply-indicator__content {
|
2016-08-31 15:48:21 +01:00
|
|
|
font-size: 15px;
|
|
|
|
line-height: 20px;
|
|
|
|
word-wrap: break-word;
|
|
|
|
font-weight: 300;
|
2016-10-06 20:56:07 +01:00
|
|
|
overflow: hidden;
|
2016-08-31 15:48:21 +01:00
|
|
|
|
2016-09-10 09:14:36 +01:00
|
|
|
p {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-24 20:08:00 +01:00
|
|
|
a {
|
2016-08-31 15:48:21 +01:00
|
|
|
color: #d9e1e8;
|
2016-08-24 20:08:00 +01:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mention {
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
span {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-08-31 21:58:10 +01:00
|
|
|
|
2016-09-25 13:20:29 +01:00
|
|
|
.detailed-status {
|
|
|
|
.status__content {
|
|
|
|
font-size: 19px;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-31 21:58:10 +01:00
|
|
|
.reply-indicator__content {
|
|
|
|
color: #282c37;
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: #535b72;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-25 13:20:29 +01:00
|
|
|
.status__display-name, .status__relative-time, .detailed-status__display-name, .detailed-status__datetime {
|
2016-08-31 21:58:10 +01:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2016-09-01 13:12:11 +01:00
|
|
|
.status__display-name {
|
|
|
|
strong {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-25 13:20:29 +01:00
|
|
|
.status__display-name, .reply-indicator__display-name, .detailed-status__display-name {
|
2016-08-31 21:58:10 +01:00
|
|
|
&:hover {
|
|
|
|
strong {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-25 13:20:29 +01:00
|
|
|
.detailed-status__display-name {
|
|
|
|
color: #d9e1e8;
|
|
|
|
line-height: 24px;
|
|
|
|
|
|
|
|
strong, span {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-size: 16px;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__relative-time, .detailed-status__datetime {
|
2016-08-31 21:58:10 +01:00
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2016-09-07 17:17:15 +01:00
|
|
|
|
|
|
|
.transparent-background {
|
|
|
|
background: image-url('void.png');
|
|
|
|
}
|
2016-09-29 23:00:45 +01:00
|
|
|
|
|
|
|
.dropdown {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown__content {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown--active .dropdown__content {
|
|
|
|
display: block;
|
|
|
|
z-index: 9999;
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 0 4.5px 7.8px 4.5px;
|
|
|
|
border-color: transparent transparent #d9e1e8 transparent;
|
|
|
|
top: -7px;
|
|
|
|
left: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
2016-10-03 17:49:52 +01:00
|
|
|
background: #d9e1e8;
|
|
|
|
padding: 4px 0;
|
|
|
|
border-radius: 4px;
|
|
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
|
|
|
|
min-width: 100px;
|
2016-09-29 23:00:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
font-size: 13px;
|
|
|
|
display: block;
|
|
|
|
padding: 6px 16px;
|
2016-10-07 23:01:22 +01:00
|
|
|
width: 100px;
|
2016-09-29 23:00:45 +01:00
|
|
|
text-decoration: none;
|
|
|
|
background: #d9e1e8;
|
|
|
|
color: #282c37;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: #2b90d9;
|
|
|
|
color: #d9e1e8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-10-06 21:47:35 +01:00
|
|
|
|
|
|
|
.static-content {
|
|
|
|
padding: 10px;
|
|
|
|
padding-top: 20px;
|
|
|
|
color: #616b86;
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 40px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
font-size: 13px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
}
|