-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.css
49 lines (45 loc) · 913 Bytes
/
example.css
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
html {
font-family: 'PT Sans', sans-serif;
font-size: 10px;
background: #f7b307;
}
body {
padding-left: 2em;
padding-right: 2em;
}
h1 {
font-size: 10em;
margin-bottom: 0;
}
p, pre code {
font-size: 1.5em;
}
kbd
{
-moz-border-radius:3px;
-moz-box-shadow:0 1px 0 rgba(0,0,0,0.2),0 0 0 2px #fff inset;
-webkit-border-radius:3px;
-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.2),0 0 0 2px #fff inset;
background-color:#f7f7f7;
border:1px solid #ccc;
border-radius:3px;
box-shadow:0 1px 0 rgba(0,0,0,0.2),0 0 0 2px #fff inset;
color:#333;
display:inline-block;
font-family:Arial,Helvetica,sans-serif;
font-size:11px;
line-height:1.4;
margin:0 .1em;
padding:.1em .6em;
text-shadow:0 1px 0 #fff;
}
footer {
padding-top: 10em;
text-align: center;
font-size: 1em;
}
a {
text-decoration: none;
color: inherit;
font-weight: 700;
}