/ lib / base / base / _blockquotes.import.less
_blockquotes.import.less
 1  // ==========================================================================
 2  // Base – Blockquotes
 3  // ==========================================================================
 4  blockquote {
 5    .font-size(22);
 6    .line-height(32);
 7    color: #434343;
 8    margin: 1em 0;
 9    &:extend(.em);
10    p {
11      margin: 1em 0;
12    }
13  }
14  cite {
15    color: #434343;
16    font-style: normal;
17    &:extend(.font-normal);
18    .font-size(16);
19    line-height: normal;
20  }
21  
22  q {
23    &:extend(.em);
24    quotes: none;
25  }
26  q:before, q:after {
27    content: '';
28    content: none;
29  }