-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path0870_header_subhead.html
More file actions
83 lines (83 loc) · 2.74 KB
/
0870_header_subhead.html
File metadata and controls
83 lines (83 loc) · 2.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!-- Twitter bootstrap JavaScript サイドのデモで使われているヘッダーのデザイン -->
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<link href="assets/bootstrap.css" rel="stylesheet">
<style type="text/css">
/* Jumbotrons
-------------------------------------------------- */
.jumbotron {
min-width: 940px;
/* padding-top: 40px; */
}
.jumbotron .inner {
background: transparent url(assets/grid-18px.png) top center;
padding: 45px 0;
-webkit-box-shadow: inset 0 10px 30px rgba(0,0,0,.3);
-moz-box-shadow: inset 0 10px 30px rgba(0,0,0,.3);
/* box-shadow: inset 0 10px 30px rgba(0,0,0,.3); */
}
.jumbotron h1,
.jumbotron p {
margin-bottom: 9px;
color: #fff;
text-align: center;
text-shadow: 0 1px 1px rgba(0,0,0,.3);
}
.jumbotron h1 {
font-size: 54px;
line-height: 1;
text-shadow: 0 1px 2px rgba(0,0,0,.5);
}
.jumbotron p {
font-weight: 300;
}
.jumbotron .lead {
font-size: 20px;
line-height: 27px;
}
.jumbotron p a {
color: #fff;
font-weight: bold;
}
/* supporting docs pages */
.subhead {
background-color: #767d80;
background-repeat: no-repeat;
background-image: -webkit-gradient(linear, left top, left bottom, from(#565d60), to(#767d80));
background-image: -webkit-linear-gradient(#565d60, #767d80);
background-image: -moz-linear-gradient(#565d60, #767d80);
background-image: -o-linear-gradient(top, #565d60, #767d80);
background-image: -khtml-gradient(linear, left top, left bottom, from(#565d60), to(#767d80));
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#565d60', endColorstr='#767d80', GradientType=0); /* IE8 and down */
}
.subhead .inner {
padding: 36px 0 27px;
}
.subhead h1,
.subhead p {
text-align: left;
}
.subhead h1 {
font-size: 40px;
}
.subhead p a {
font-weight: normal;
}
</style>
</head>
<body>
<header class="jumbotron subhead">
<div class="inner">
<div class="container">
<h1>文体練習</h1>
<p class="lead">
フランス人の作家・レーモン・クノーが1947年に発表した実験的な文学作品である。
</p>
<p><strong>Nerd alert:</strong> 「バスの中で見かけた乗客を罵倒する若者を、2時間後に別の場所でもう一度見かける」という短い話を99通りの記述方法で表現する。</p>
</div>
</div>
</header>
</body>
</html>