CSSスニペット

/* 擬似要素 ------------------------- */ .main-content-area em:before { content: "【"; } .main-content-area em:after { content: "】"; } /* テキストシャドウ ------------------------- */ /* 白い影 */ p { text-shadow: 0 1px 0 rgba(255,255,255,1); } /* 黒い影 */ p { text-shadow: 0px 0px 2px rgba(0,0,0,.8); } /* ボックス影 */ div { box-shadow: 0px 10px 15px -10px rgba(0,0,0,.4); } /* テキストカラー ------------------------- */ /* 白 */ p { color: rgba(255,255,255,.65); } /* 黒 */ p { color: rgba(0,0,0,.65); } /* オレンジ色 */ p { color: rgba(255,148,0,.65); }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.