“模板:引用段落/styles.css”的版本间的差异
< 模板:引用段落
跳到导航
跳到搜索
第1行: | 第1行: | ||
.ifw-quote { | .ifw-quote { | ||
+ | padding-top: 1rem; | ||
+ | padding-bottom: 1rem; | ||
display: grid; | display: grid; | ||
grid-template: 1fr auto / auto 1fr auto; | grid-template: 1fr auto / auto 1fr auto; | ||
第8行: | 第10行: | ||
grid-column: 1/2; | grid-column: 1/2; | ||
color: gray; | color: gray; | ||
+ | display: grid; | ||
+ | place-items: center; | ||
} | } | ||
.ifw-quote > .right-bracket { | .ifw-quote > .right-bracket { | ||
第13行: | 第17行: | ||
grid-column: 3/4; | grid-column: 3/4; | ||
color: gray; | color: gray; | ||
+ | display: grid; | ||
+ | place-items: center; | ||
} | } | ||
.ifw-quote > .quote-content { | .ifw-quote > .quote-content { |
2020年12月11日 (五) 11:37的版本
.ifw-quote {
padding-top: 1rem;
padding-bottom: 1rem;
display: grid;
grid-template: 1fr auto / auto 1fr auto;
}
.ifw-quote > .left-bracket {
font-size: 5rem;
grid-column: 1/2;
color: gray;
display: grid;
place-items: center;
}
.ifw-quote > .right-bracket {
font-size: 5rem;
grid-column: 3/4;
color: gray;
display: grid;
place-items: center;
}
.ifw-quote > .quote-content {
grid-column: 2/3;
}
.ifw-quote > .source {
grid-column: 2 / 3;
text-align: right;
}