-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathstyle.css
106 lines (85 loc) · 2.87 KB
/
style.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
94
95
96
97
98
99
100
101
102
103
104
105
/*
* Copyright Abel Sinkovics ([email protected]) 2013.
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt)
*/
body {
margin-left: 10%;
margin-right: 10%;
}
img {
width: 100%;
}
a:link {
text-decoration: none;
}
pre.sourceCode, table {
border-style: solid;
border-width: 2px;
border-radius: 10px;
/* Gradient generated with: http://www.colorzilla.com/gradient-editor/ */
background: #fafafa; /* Old browsers */
background: -moz-linear-gradient(-45deg, #fafafa 0%, #f0f0f0 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#fafafa), color-stop(100%,#f0f0f0)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(-45deg, #fafafa 0%,#f0f0f0 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(-45deg, #fafafa 0%,#f0f0f0 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(-45deg, #fafafa 0%,#f0f0f0 100%); /* IE10+ */
background: linear-gradient(135deg, #fafafa 0%,#f0f0f0 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fafafa', endColorstr='#f0f0f0',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
pre.sourceCode, table, td, th {
border-color: #c0c0c0;
}
pre.sourceCode {
padding: 10px;
}
p.caption {
text-align: center;
font-size: 80%;
}
h1 {
text-align: center;
}
td, th {
padding: 5px;
border-width: 1px;
border-style: dotted;
}
td:last-child, th:last-child {
border-right-style: none;
}
td:first-child, th:first-child {
border-left-style: none;
}
tr:last-child>td, tr:last-child>th {
border-bottom-style: none;
}
tr:first-child>td, tr:first-child>th {
border-top-style: none;
}
blockquote {
border-style: solid;
border-width: 2px;
border-radius: 10px;
border-color: #d0d0d0;
padding: 10px;
padding-top: 0px;
padding-bottom: 0px;
/* Gradient generated with: http://www.colorzilla.com/gradient-editor/ */
background: #d5cea6; /* Old browsers */
background: -moz-linear-gradient(top, #d5cea6 0%, #c9c190 40%, #b7ad70 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d5cea6), color-stop(40%,#c9c190), color-stop(100%,#b7ad70)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #d5cea6 0%,#c9c190 40%,#b7ad70 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #d5cea6 0%,#c9c190 40%,#b7ad70 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #d5cea6 0%,#c9c190 40%,#b7ad70 100%); /* IE10+ */
background: linear-gradient(to bottom, #d5cea6 0%,#c9c190 40%,#b7ad70 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d5cea6', endColorstr='#b7ad70',GradientType=0 ); /* IE6-9 */
}
p.copyright {
font-size: 80%;
}
th {
font-weight: normal;
background-color: #c0c0c0;
}