-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
93 lines (75 loc) · 1.92 KB
/
main.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
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
@import url("/fonts/printclearly/stylesheet.css");
html,body {
margin: 0; padding: 0 100px;
}
html {
background-image: url('res/texture.png');
background-color: #FFFFF7;
}
body {
background-image: url('res/logo-transparent.png');
background-repeat: no-repeat;
background-position: 100% 0%;
}
h1 {
font-family: 'PrintClearlyRegular', sans-serif;
font-size: 48px;
line-height: 24px;
text-align: center;
}
h2 {
font-family: 'PrintClearlyRegular', sans-serif;
font-size: 14px/16px;
}
abbr {
border-bottom: 1px dotted #aab;
cursor: help;
}
blockquote {
font-family: 'PrintClearlyRegular', sans-serif;
font-size: 1.3em;
overflow: none;
text-align: center;
}
blockquote p {
background-color: #F8F8F8;
background-color: rgba(24, 24, 48, 0.25);
color: #EEF;
white-space: pre;
display: inline-block;
padding: 1em 5em;
-webkit-box-shadow: 0 0 10px #778;
box-shadow: 0 0 10px #778;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}
.example {
padding: 10px 0;
margin: 0;
}
.example > * {
display: table;
background-color: #F8F8F8;
background-color: rgba(24, 24, 48, 0.25);
color: #EEF;
padding: 10px;
-webkit-box-shadow: 0 0 10px #778;
box-shadow: 0 0 10px #778;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}
.example p > * { display: table-cell; padding: 0 1em; vertical-align: middle; }
hr { width: 90%; margin: 20px auto; }
footer {
font: 1.25em 'PrintClearlyRegular', sans-serif;
text-align: right;
color: #600;
font-weight: bold;
padding: 0 10px 5px;
margin: 0;
left: 0; right: 0; bottom: 0;
height: 48px;
}
.lt-ie9 footer { font-family: sans-serif; font-size: 1.25em; }