Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions src/css/main.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
blockquote {
background: #f9f9f9;
border-left: 6px solid #ccc;

margin: 1.5em 10px;
padding: 0.5em 10px;
}

blockquote cite {
color: #6bbbdb;
font-weight: 500;
font-style: normal;
}

blockquote * {
display: inline;
color: #aaa;
}

div#artitalk_main {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
Expand Down Expand Up @@ -467,8 +486,31 @@ div#artitalk_main {
vertical-align: middle;
}
#artitalk_main span.cbp_tmlabel>p {
display: flex;
flex-wrap: wrap;

overflow: unset;
}

@media screen and (max-width: 768px) {
#artitalk_main span.cbp_tmlabel>p {
flex-direction: row-reverse;
}
}

@media screen and (min-width: 768px) {
#artitalk_main span.cbp_tmlabel>p {
flex-direction: row;
align-items: flex-end;
}

#artitalk_main span.cbp_tmlabel > p.shuoshuo_time .label_attachment {
flex-grow: 1;
flex-basis: 3%;
text-align: right;
}
}

#artitalk_main ul#maina>li {
list-style: none;
}
Expand Down
Loading