This repository was archived by the owner on Mar 20, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathexample.css
More file actions
105 lines (97 loc) · 1.49 KB
/
example.css
File metadata and controls
105 lines (97 loc) · 1.49 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/**
* Author: Matt Hinchliffe <www.maketea.co.uk>
* Modified: 16/04/2012
* Description: Some crummy styles to lay out the example file
*/
/* Elements */
html, body {
height:100%;
margin:0;
padding:0;
}
body {
line-height:1.5;
font-family:Arial, sans-serif;
color:#111;
background:#eee;
}
h1, h2, h3, h4 {
text-align:center;
color:#555;
}
h1 {
margin:0 0 .2em;
font-size:2.5em;
letter-spacing:-.075em;
}
h2 {
margin:0 0 .5em;
font-weight:normal;
font-size:1.5em;
}
h3, h4 {
margin:0 0 .5em;
font-size:1em;
}
p, dl {
margin:0 0 1.5em;
}
dt {
font-weight:bold;
}
dd {
margin:0 0 1em;
font-size:0.8125em;
color:#555;
}
button {
font-size:1.5em;
line-height:1;
padding:.25em .5em;
border:none;
color:#fff;
background:#333;
border-radius:7px;
cursor:pointer;
}
button:hover {
background-color:#111;
}
figure {
margin:0;
}
pre, code, var {
font:normal 1em/1 Consolas, "Lucida Console", Monaco, monospace;
}
pre {
overflow:auto;
padding:1em .5em;
border:1px solid #333;
text-align:left;
border-radius:5px;
}
var {
text-decoration:underline;
}
hr {
height:1px;
padding:0;
margin:0 0 1.5em;
border:0;
background:#ccc;
}
#container {
width:28em;
margin:0 auto;
padding:3em 1em 2em;
background:#fff;
-webkit-box-shadow:0 0 5em rgba(0, 0, 0, 0.1);
-moz-box-shadow:0 0 5em rgba(0, 0, 0, 0.1);
box-shadow:0 0 5em rgba(0, 0, 0, 0.1);
}
#example {
text-align:center;
}
.slideshow {
border:4px solid #eee;
}