-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
154 lines (152 loc) · 3.24 KB
/
style.css
File metadata and controls
154 lines (152 loc) · 3.24 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
html {
width: 100%;
min-height: 100%;
margin:0;
padding:0;
}
body {
font-family: 'PT Sans', sans-serif;
width: 100%;
height: auto;
margin:0;
padding:0;
background-image: -moz-radial-gradient(center, ellipse cover, #ffffff 0%, #bbbbbb 100%);
background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#ffffff), color-stop(100%,#bbbbbb));
background-image: -webkit-radial-gradient(center, ellipse cover, #ffffff 0%,#bbbbbb 100%);
background-image: -o-radial-gradient(center, ellipse cover, #ffffff 0%,#bbbbbb 100%);
background-image: -ms-radial-gradient(center, ellipse cover, #ffffff 0%,#bbbbbb 100%);
background-image: radial-gradient(ellipse at center, #ffffff 0%,#bbbbbb 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#bbbbbb',GradientType=1 );
}
a,
a:link,
a:visited {
color:rgb(37,115,186);
}
a:hover {
color:rgba(20,64,105,1);
}
table {
border-collapse: collapse;
}
tr {
}
td, th {
border:1pt solid #aaa;
padding:4px;
margin:0;
}
th {
background:#eee;
}
th:nth-child(1),
th:nth-child(2) {
width:150px;
}
pre code {
overflow-x: scroll;
}
ul.toc {
-webkit-column-count: 3;
-moz-column-count: 3;
-o-column-count: 3;
-ms-column-count: 3;
column-count: 3;
border: 1pt solid rgb(170, 170, 170);
padding: 10px;
}
td {
}
td ul {
margin:0;
padding:0;
}
td ul li {
list-style: none;
}
h2 {
border-bottom: 1pt solid #333;
}
h3.subheading {
font-weight: bold;
padding: 4px 12px 3px;
margin-left: 0;
margin-right: 0;
background: rgb(237, 238, 239);
border-right: 1px solid rgb(204, 204, 204);
border-bottom: 1px solid rgb(204, 204, 204);
color: white;
background-color: rgb(209, 93, 36);
background-image: -moz-linear-gradient(top, rgb(209, 93, 36), rgb(180, 100, 0));
background-image: -o-linear-gradient(top, rgb(209, 93, 36), rgb(180, 100, 0));
background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(209, 93, 36)), to(rgb(180, 100, 0)));
background-image: -webkit-linear-gradient(top, rgb(209, 93, 36), rgb(180, 100, 0));
background-image: linear-gradient(top, rgb(209, 93, 36), rgb(180, 100, 0));
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.35);
}
.container {
margin:0 auto;
width:900px;
}
#main-logo {
font-size: 100px;
text-align: center;
text-shadow: 1px 1px 2px white;
margin: 200px auto 20px auto;
color: rgb(209,93,36);
}
#main-header {
border-bottom: 1pt solid #333;
}
#main-header .main-logo {
font-size: 50px;
color: rgb(209,93,36);
margin:0px;
padding:0px;
}
#main-header .main-logo a {
color: rgb(209,93,36);
text-decoration: none;
}
#main-header .main-tagline {
margin:-10px 0 0 5px;
}
.description {
text-align: center;
font-size: 18px;
}
ul.description {
margin:0;
padding:0;
list-style:none;
}
ul.description li {
list-style:none;
display: inline-block;
margin:0;
padding:0px 10px;
border-left: 1pt solid #333;
}
ul.description li:first-child {
border:0;
}
.large-description {
text-align: center;
font-size: 22px;
font-weight: bold;
}
::selection, ::-moz-selection {
background: rgb(37,115,186);
color: #fff;
}
footer {
padding:20px 0;
width:900px;
margin:0 auto;
border-top:1pt solid #333;
font-size: 12px;
text-align: center;
}