mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
80 lines
1.3 KiB
React
80 lines
1.3 KiB
React
import styled from 'styled-components';
|
|
|
|
export const Threads = styled.div`
|
|
padding: 20px 0;
|
|
text-align: center;
|
|
margin: 0;
|
|
|
|
.thread {
|
|
width: 180px;
|
|
max-height: 320px;
|
|
vertical-align: top;
|
|
display: inline-block;
|
|
word-wrap: break-word;
|
|
overflow: hidden;
|
|
margin-top: 5px;
|
|
margin-bottom: 20px;
|
|
padding: 5px 0 3px;
|
|
position: relative;
|
|
}
|
|
|
|
video, audio, img {
|
|
max-width: 150px;
|
|
max-height: 150px;
|
|
}
|
|
|
|
.card {
|
|
display: inline;
|
|
margin: auto;
|
|
box-shadow: 0 0 5px rgba(0, 0, 0, .25);
|
|
border: 0;
|
|
}
|
|
|
|
.thread-icons {
|
|
display: inline;
|
|
height: 16px;
|
|
margin: 2px 0 0 -101px;
|
|
position: absolute;
|
|
width: 100px;
|
|
text-align: right;
|
|
}
|
|
|
|
.offline-icon {
|
|
height: 16px;
|
|
margin: 2px;
|
|
}
|
|
|
|
.offline-icon-no-link {
|
|
height: 11px;
|
|
position: absolute;
|
|
margin-left: 13px;
|
|
margin-top: -2px;
|
|
}
|
|
|
|
.sticky-icon {
|
|
background-image: url(assets/sticky.gif);
|
|
width: 16px;
|
|
height: 16px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.closed-icon {
|
|
background-image: url(assets/closed.gif);
|
|
width: 16px;
|
|
height: 16px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.meta {
|
|
cursor: help;
|
|
font-size: 11px;
|
|
line-height: 8px;
|
|
margin-top: 2px;
|
|
margin-bottom: 1px;
|
|
}
|
|
|
|
.teaser {
|
|
display: block;
|
|
padding: 0 15px;
|
|
}
|
|
`; |