szurubooru/public_html/css/post-list.css

115 lines
1.8 KiB
CSS
Raw Normal View History

2014-10-07 21:15:26 +02:00
.post-list {
2014-09-17 18:34:57 +02:00
text-align: center;
}
2014-10-07 21:15:26 +02:00
.post-list .wrapper {
2014-09-17 18:34:57 +02:00
display: inline-block;
margin: 0 auto;
}
2014-10-07 21:15:26 +02:00
.post-list .search {
2014-10-01 22:22:43 +02:00
margin-bottom: 1em;
}
2014-10-07 21:15:26 +02:00
.post-list .search input {
2014-10-01 22:22:43 +02:00
max-width: 20em;
}
2014-10-07 21:15:26 +02:00
.post-list ul {
2014-09-17 18:34:57 +02:00
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
2014-10-04 14:06:44 +02:00
.post-small a {
display: inline-block;
2014-09-17 18:34:57 +02:00
margin: 0.4em;
2014-09-20 10:55:39 +02:00
border: 1px solid #999;
z-index: 1;
position: relative;
2014-09-17 18:34:57 +02:00
}
2014-10-04 14:06:44 +02:00
.post-small img {
2014-09-17 18:34:57 +02:00
display: block;
2014-10-05 11:05:34 +02:00
border: 0;
background: white;
2014-09-20 10:55:39 +02:00
}
2014-10-04 14:06:44 +02:00
.post-small a:focus,
.post-small a:hover {
2014-09-20 10:55:39 +02:00
background: #afe;
border-color: #5da;
box-shadow: 0 0 0 2px #5da;
outline: 0;
}
2014-10-04 14:06:44 +02:00
.post-small a:focus img,
.post-small a:hover img {
2014-09-20 10:55:39 +02:00
opacity: .9;
2014-09-17 18:34:57 +02:00
}
2014-10-04 14:06:44 +02:00
.post-small a .info {
2014-09-28 11:33:25 +02:00
display: none;
2014-10-04 14:06:44 +02:00
text-align: center;
2014-09-28 11:33:25 +02:00
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: #5da;
color: black;
}
2014-10-04 14:06:44 +02:00
.post-small a .info ul {
list-style-type: none;
padding: 0;
margin: 0;
}
.post-small a .info li {
2014-09-28 11:33:25 +02:00
display: inline-block;
margin: 0.1em 0.5em;
2014-10-04 14:06:44 +02:00
padding: 0;
2014-09-28 11:33:25 +02:00
}
2014-10-04 14:06:44 +02:00
.post-small a:focus .info,
.post-small a:hover .info {
2014-09-28 11:33:25 +02:00
display: block;
}
2014-10-04 14:06:44 +02:00
.post-small:not(.post-type-image) a:before {
display: block;
content: '';
z-index: 2;
position: absolute;
top: 0;
right: 0;
width: 0;
height: 0;
border-top: 50px solid red;
border-left: 50px solid transparent;
}
2014-10-04 14:06:44 +02:00
.post-small:not(.post-type-image) a:after {
display: block;
content: '...';
z-index: 3;
position: absolute;
top: -35px; /* 50 * sqrt(2) / 2 */
right: -35px;
width: 71px; /* 50 * sqrt(2) */
height: 71px;
line-height: 122px; /* 71 * 2 - 11 (font-size) - padding */
transform: rotate(45deg);
color: white;
font-size: 15px;
}
2014-10-04 14:06:44 +02:00
.post-small.post-type-youtube a:after {
font-size: 13px;
content: 'youtube';
}
2014-10-04 14:06:44 +02:00
.post-small.post-type-video a:after {
content: 'video';
}
2014-10-04 14:06:44 +02:00
.post-small.post-type-flash a:after {
content: 'flash';
}