MEMORANDUM 見出しのデザインあれやこれ
Web用の見出しデザインのソースを、備忘録も兼ねてご紹介します。
見出しのデザイン-h2-
このサイトの記事タイトルには自動でこのデザインが適用されます。背景に画像を配置しています。
HTML
CSS
h2 {
background: #f7f7f7 url("../images/tabs-h2.png") no-repeat scroll center bottom;
color: #24140e;
display: block;
font-size: 120%;
font-weight: bold;
line-height: 1.6em;
margin: 2em 0;
padding: 0.5em;
}
見出しのデザイン-h3-
HTML
CSS
h3 {
text-align: center;
margin:3em 0;
}
h3 {
position: relative;
display: inline-block;
padding-bottom:0.7em;
border-bottom: 1px solid black;
}
h3::before,
h3::after {
position: absolute;
top: 100%;
left:50%;
transform:translateX(-50%);
content: '';
border: 10px solid transparent;
}
h3::before {
border-top: 10px solid black;
}
h3::after {
margin-top: -1px;
border-top: 10px solid white;
}
見出しのデザイン-h4-
HTML
CSS
h4{
padding: 0.5em 1em;
margin: 2em 0;
background: #f4f4f4;
border-left: solid 6px #5bb7ae;
box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.33);
}
見出しのデザイン-h5-
HTML
CSS
h5 {
background: #e9eff5 none no-repeat scroll left center;
border: 1px solid #a9c2d7;
color: #222;
font-family: "Trebuchet MS",Arial,Helvetica,sans-serif;
font-size: 1.5rem;
font-weight: normal;
line-height: 1em;
margin: 2em 0;
padding: 1em 2em;
text-align: left;
}
見出しのデザイン-h6-
HTML
CSS
h6 {
font-size: 1.5rem;
margin:2em 0;
position: relative;
padding: 0.5em 1.5em;
border-top: solid 2px #f19072;
border-bottom: solid 2px #f19072;
}
h6:before, h6:after{
content: '';
position: absolute;
top: -10px;
width: 2px;
height: -webkit-calc(100% + 20px);
height: calc(100% + 20px);
background:#e0815e;
}
h6:before {left: 10px;}
h6:after {right: 10px;}
h6 {
margin: 2em 0;
padding: .5em 3em;
color: #664032;
}
MEMORANDUM 記事タイトルのデザインあれやこれ 〜CLASS指定〜
見出しにも使えるデザインです。文字の大きさは本文の1.5倍に統一しました。
title01 記事タイトルのデザイン
HTML
CSS
.title01 {
background: #f0f6da none repeat scroll 0 0;
border: medium none;
font-size: 150%;
font-weight: normal;
margin: 60px 0 30px;
padding: 0.6em 2em;
}
title02 記事タイトルのデザイン
HTML
CSS
.title02 {
color: #24140e;
display: block;
font-size: 150%;
font-weight: 500;
line-height: 1.5;
margin: 30px 0 20px;
padding: 0.6em;
}
title03 記事タイトルのデザイン
HTML
CSS
.title03 {
color: #663;
display: block;
font-size: 150%;
font-weight: bold;
line-height: 1.2em;
margin: 30px 0 20px;
padding: 0.6em 0.6em 0.2em;
border-bottom: 1px solid #999;
width: 50%;
}
title04 記事タイトルのデザイン
HTML
CSS
.title04 {
display: block;
background-position: 0 center;
border-bottom: 1px dotted #993300;
border-top: 1px dotted #993300;
color: #930;
font-size: 150%;
font-weight: bold;
margin: 30px 0 20px;
padding: 6px 20px 6px 18px;
}
title05 記事タイトルのデザイン
HTML
CSS
.title05 {
background: #82ae46 none repeat scroll 0 0;
color: #fff;
font-size: 150%;
font-weight: bold;
margin: 30px 0 20px;
padding: 1em 3em;
position: relative;
display: inline-block;
}
.title05::before {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
border-color: rgba(0, 0, 0, 0.5) #f2f2f2 #f2f2f2 rgba(0, 0, 0, 0.5);
border-image: none;
border-style: solid;
border-width: 8px;
bottom: 0;
content: "";
height: 0;
position: absolute;
right: 0;
width: 0;
}
title06 記事タイトルのデザイン
HTML
CSS
.title06 {
border-bottom: 2px dotted #5fa74a;
color: #5fa74a;
font-size: 150%;
font-weight: normal;
letter-spacing: 0.15em;
line-height: 1.4;
margin: 30px 0 20px;
padding-bottom: 6px;
position: relative;
text-align: left;
}
title07 記事タイトルのデザイン
HTML
CSS
.title07 {
display: block;
margin: 30px 0 20px;
font-size: 150%;
line-height: 110%;
color:#ffff00;text-shadow: 1px 1px rgba(255, 128, 0, 0.7), 2px 2px rgba(255, 128, 0, 0.7), 3px 3px rgba(255, 128, 0, 0.7), 4px 4px rgba(255, 128, 0, 0.7), 5px 5px rgba(255, 128, 0, 0.7);
}
title08 記事タイトルのデザイン
HTML
CSS
.title08 {
font-size: 150%;
display: inline-block;
position: relative;
margin: 30px 0 20px;
padding: 0.35em 1em;
background: #668ad8;
color: #FFF;
text-decoration: none;
border-radius: 2px;
}
.title08::before {
content: "";
position: absolute;
top: -16px;
left: 0;
width: -webkit-calc(100% - 1px);
width: calc(100% - 1px);
height: 0;
border: solid 8px transparent;
border-bottom-color: #8eacec;
}
title09 記事タイトルのデザイン
HTML
CSS
.title09 {
border-bottom: 3px solid #06c;
box-sizing: border-box;
display: block;
font-size: 150%;
letter-spacing: 0.1em;
margin: 0 auto 50px;
padding: 15px;
position: relative;
text-align: center;
width: auto;
}
.title09::before, .title09::after {
border: 20px solid transparent;
content: "";
height: 0;
left: 50%;
position: absolute;
top: 100%;
transform: translate(-50%, 0px);
width: 0;
}
.title09::before {
border-top: 20px solid #06c;
}
title10 記事タイトルのデザイン
HTML
CSS
.title10 {
display: block;
font-size: 150%;
margin: 60px 0;
padding: 0.8em 0 0.6em;
position: relative;
}
.title10::before, .title10::after {
box-sizing: border-box;
content: "";
height: 6px;
left: 0;
position: absolute;
width: 100%;
font-family: "Roboto Slab",Garamond,"Times New Roman","游明朝","Yu Mincho","游明朝体","YuMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","HiraMinProN-W3","HGS明朝E","MS P明朝","MS PMincho",serif;
}
.title10::before {
border-bottom: 1px solid #ffc0cb;
border-top: 2px solid #ffb6c1;
top: 0;
}
.title10::after {
border-bottom: 2px solid #ffb6c1;
border-top: 1px solid #ffc0cb;
bottom: 0;
}
title11 記事タイトルのデザイン
HTML
CSS
.title11 {
display: inline-block;
background-color: #9acd32;
border: 1px solid #ccc;
border-radius: 6px;
margin: 30px 0 60px;
padding: 0.5em 0.75em;
position: relative;
font-size: 150%;
}
.title11::before, .title11::after {
border: 10px solid transparent;
content: "";
height: 0;
left: 30px;
position: absolute;
top: 100%;
width: 0;
}
.title11::before {
border-top: 15px solid #ccc;
}
.title11::after {
background-color: transparent;
border-top: 15px solid #9acd32;
margin-top: -2px;
}
title12 記事タイトルのデザイン
HTML
CSS
.title12 {
display: block;
border-bottom: 1px solid #ccc;
padding: 0 0.5em 0.5em 2em;
position: relative;
margin: 30px 0 20px;
font-size: 150%;
}
.title12::before, .title12::after {
border-radius: 100%;
content: "";
position: absolute;
}
.title12::before {
background: rgba(0, 128, 50, 0.5) none repeat scroll 0 0;
height: 18px;
left: 0.2em;
top: 0.2em;
width: 18px;
z-index: 2;
}
.title12::after {
background: rgba(144, 238, 144, 0.5) none repeat scroll 0 0;
height: 13px;
left: 0.7em;
top: 0.7em;
width: 13px;
}
title13 記事タイトルのデザイン
HTML
CSS
.title13 {
background: #3babaa none repeat scroll 0 0;
border-radius: 4px;
color: #fff;
display: block;
margin: 30px 0 20px;
padding: 0.5em 1em 0.4em 1.5em;
font-size: 150%;
font-weight: normal;
}
title14 title14 title14 title14 記事タイトルのデザイン
HTML
CSS
.title14 {
display: inline-block;
margin: 30px 0 20px;
border-bottom: 4px solid #ccc;
padding-bottom: 0.5em;
position: relative;
font-size: 150%;
}
.title14::after {
background-color: #3498db;
bottom: -4px;
content: "";
height: 4px;
left: 0;
position: absolute;
width: 20%;
z-index: 2;
}
title15 記事タイトルのデザイン
HTML
CSS
.title15 {
border: 1px dashed #9c9483;
display: block;
margin: 30px 0 20px;
padding: 0.75em 1em;
font-size: 150%;
}
title16 記事タイトルのデザイン
HTML
CSS
.title16 {
background: #d3cbc6;
display: block;
margin: 1em auto;
padding: 0.75em 2em;
position: relative;
font-size: 150%;
}
.title16::before, .title16::after {
border-color: transparent;
border-style: solid;
content: "";
position: absolute;
}
.title16::before {
border-right-color: #9c9483;
border-width: 0 15px 15px 0;
left: 0;
top: 100%;
}
.title16::after {
border-bottom: 15px solid #9c9483;
border-style: solid;
border-width: 0 15px 15px 0;
right: 0;
top: -15px;
}
title17 記事タイトルのデザイン
HTML
CSS
.title17 {
background-color: #f0f8fa;
border: 3px dotted #88c5d9;
display: block;
margin: 20px 60px;
padding: 20px;
text-align: left;
font-size: 150%;
}
title18 記事タイトルのデザイン
HTML
CSS
.title18 {
background-color: #eee5cc;
background-image: -moz-linear-gradient(center top , #ffc, #cc6);
border: 1px solid #d3d3d3;
border-radius: 8px;
box-shadow: 0 0 4px #666;
display: block;
margin: 20px 60px;
padding: 20px;
text-align: left;
font-size: 150%;
}
title19 記事タイトルのデザイン
HTML
CSS
.title19 {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
background: #f4f4f4 none repeat scroll 0 0;
border-color: #ccc currentcolor;
border-image: none;
border-style: dashed none;
border-width: 1px medium;
box-shadow: 0 7px 10px -5px rgba(0, 0, 0, 0.1) inset;
color: #333;
font-size: 150%;
display: block;
margin: 10px 0 20px;
padding: 0.5em 0.75em;
text-align: center;
}
title20 title20 title20 title20 記事タイトルのデザイン
HTML
CSS
.title20 {
line-height: 1.3;
padding: 0 0.4em 0.1em;
position: relative;
font-size: 150%;
}
.title20::after {
background-color: #b6f0fc;
bottom: 0;
content: "";
height: 10px;
left: 0;
position: absolute;
width: 100%;
z-index: -1;
}
title21 記事タイトルのデザイン
HTML
CSS
.title21 {
display: block;
margin: 50px 0 30px;
border-left: 6px solid #3498db;
padding: 0.25em 0 0.5em 0.75em;
position: relative;
font-size: 150%;
}
.title21::after {
border-bottom: 1px solid #ccc;
bottom: 0;
content: "";
height: 0;
left: 0;
position: absolute;
width: 100%;
}
title22 記事タイトルのデザイン
HTML
CSS
.title22 {
border: 1px solid #999;
color: #444;
display: block;
font-size: 150%;
font-weight: normal;
line-height: 1.5;
margin: 20px 0 30px;
padding: 0.2em 0 0.1em 1em;
}