-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsource.html
More file actions
72 lines (66 loc) · 1.47 KB
/
source.html
File metadata and controls
72 lines (66 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en-gb">
<head>
<meta charset="utf-8">
<title>Pattern Primer</title>
<!-- a starting point of sensible defaults -->
<link rel="stylesheet" href="css/normalize.css">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- minimal styles to layout the patterns neatly -->
<style>
html {
border-top: 0.5em solid #693;
background-color: #eee;
}
body {
background-color: #fefefe;
background: rgba(255,255,255,0.9);
margin: 0 2.5%;
padding: 1em 2.5% 0;
font-size: 100%;
line-height: 1.875;
font-family: Cambria, Georgia, serif;
color: #333;
border-left: 1px solid;
border-right: 1px solid;
border-color: #ddd;
border-color: rgba(0,0,0,0.13);
}
.pattern .source textarea {
width: 90%;
background-color: #FFFFFF;
border: 1px solid #CCCCCC;
border-radius: 0.25em;
padding: 0.25em;
}
.pattern {
clear: both;
overflow: hidden;
margin-top: 1em;
}
.pattern .display {
width: 65%;
float: left;
}
.pattern .source {
width: 30%;
float: right;
}
.pattern .source a:link,
.pattern .source a:visited {
border-bottom-color: #336699;
color: #336699;
}
.pattern .source a {
border-bottom-style: dotted;
border-bottom-width: 1px;
text-decoration: none;
white-space: pre-wrap;
}
</style>
<!-- Add your stylesheets here -->
<link rel="stylesheet" href="_css/patterns.css"> <!-- Example stylesheet for example patterns -->
</head>
<body>