[パーツ]引用(blockquote) シンプルなアイコン付き引用符(blockquote)デザイン

CSS HTML
 2018.02.09
 2018.03.20

シンプルなアイコン付き引用符(blockquote)デザイン

シンプルなアイコン付き引用符(blockquote)デザインです。

browser:  65 11 20 10 
ニャン易度 

There are two means of refuge from the miseries of life: music and cats.

Albert Schweitzer

<div class="cp_quote">
<blockquote cite="http://">
<p>There are two means of refuge from the miseries of life: music and cats.</p>
<p class="author">Albert Schweitzer</p>
</blockquote>
</div>
*, *:before, *:after {
	font-family: 'FontAwesome';
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_quote {
	position: relative;
	width: 90%;
	margin: 1em auto;
	border-right: 5px solid #4caf50;
	background: #f0fbe4;
}
.cp_quote::before {
	font-size: 1.5em;
	position: absolute;
	top: 50%;
	transform: translate(0%,-50%);
	display: inline-block;
	width: 3em;
	height: 100%;
	line-height: 1.5em;
	padding: 1.5em 1em;
	content: '\f10d';
	color: #ffffff;
	background: #4caf50;
}
.cp_quote blockquote {
	margin: 0.3em 0.3em 0.3em 4.5em;
	padding: 0.3em;
}
.cp_quote blockquote p.author {
	text-align: right;
}
.cp_quote blockquote p.author::before {
	content: '00';
}

copypet.jp

CSS3などで新たに追加された要素・装飾方法など、日々コードを書いていないと忘れてしまったり、ささっとプロトタイプを作る時などちょっとしたことに時間をかけている暇はない。そんな時に「あ〜、あれストックしときゃよかったなぁ」って困った自分用のストックブログです。カスタマイズなどがしやすいよう、昨今のweb制作に取り入れられる一般的なコードを中心に掲載しています。

More Info

こんな記事はいかがですか?