Sha256: 213ed39a0b25c725a87818c33f3b93e0dc0a2cfba74afa0c543b04f2533a23e2

Contents?: true

Size: 714 Bytes

Versions: 4

Compression:

Stored size: 714 Bytes

Contents

@mixin blockquote-mark {
  color: $color-gray-dim-light;
}

blockquote {
	padding: 0 0 0 4rem;
	border: none;
	p {
	  font-style: italic;
	  &:before {
	    content: '\201C';	    
	    font-size: $font-size-blockquote-mark;
	    margin-left: -3rem;
	    float: left;
	    line-height: 1em;
	    @include blockquote-mark;
	  }
	  &:after {
	    content: '\201D';	    
	    margin-left: 0.4em;
	    @include blockquote-mark;
	  }
	}
	footer {
	  font-size: $font-size-small;
	  color: $color-gray-dim-light;
	  &:before {
	  	content: '\2014 \00A0';
	  }
	}
}

.pullquote {
	border: none;
	color: $color-gray-light;
	text-align: center;
	
	p {
		font-size: $font-size-big;
	}
	
	&:before {
		content: '”';
	}
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
krad-3.7.5 _sass/components/_blockquotes.scss
krad-3.7.4 _sass/components/_blockquotes.scss
krad-3.7.3 _sass/components/_blockquotes.scss
krad-3.7.2 _sass/components/_blockquotes.scss