css 縫い目のようなデザイン

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" media="screen,print">
<title>縫い目のようなデザイン</title>
<style type="text/css">
div {
  background: #036;
	display: inline-block;
/*デフォルトのpaddingがかかる h1をたくさん使って使用すると
floatなしでもナビボタンのように並んでくれる*/
	box-shadow: 1px 1px 0 rgba(0,0,0,0,5);
	color: #ff9;
	margin: 10px;
	outline: 1px dashed #fff;
	outline-offset: -5px;/*-5pxで内側に*/
	padding: 10px;/*これをしないと、文字がはみ出そうになる*/
	-webkit-transform: rotate(-5deg);/*回転させる*-webkitが必要なPCもある*/
}

h1 {
	font-family:"Courier New", Courier, monospace;
	margin: 0;
}
</style>
</head>

<body>
<div>
  <h1>Stitched</h1>
</div>
<div>
  <h1>Stitched</h1>
</div>
<div>
  <h1>Stitched</h1>
</div>
</body>
</html>