23 lines
486 B
Sass
23 lines
486 B
Sass
// Quotes Table Style
|
|
.quotes
|
|
border-collapse: collapse
|
|
width: 8em // Set the width to 8em for a much shorter table
|
|
margin: 20px 0
|
|
border: none // Ensure no borders are applied to the table
|
|
|
|
td
|
|
padding: 10px 0
|
|
vertical-align: top
|
|
border: none // Remove borders between rows
|
|
|
|
td:first-child
|
|
text-align: left
|
|
font-weight: bold
|
|
|
|
td:last-child
|
|
text-align: right
|
|
font-style: italic
|
|
&:before
|
|
content: '“'
|
|
&:after
|
|
content: '”'
|