aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/docs/docs_style.css
diff options
context:
space:
mode:
authorGravatar Kristina Chodorow <kchodorow@google.com>2015-03-31 14:49:30 +0000
committerGravatar Laurent Le Brun <laurentlb@google.com>2015-03-31 20:09:33 +0000
commit974b20891380c26bf147c037b19ceaf6f93f1e0b (patch)
treeebde4cb7d8f87bfd56641ea88107a393dd350868 /site/docs/docs_style.css
parent317bf22ee2d7ceaf306e022b0fb56061c89d702e (diff)
Improve site structure
It's a bit weird having everything under docs/, so this puts the blog and "about" pages under / and all of the documentation under docs. -- MOS_MIGRATED_REVID=89965504
Diffstat (limited to 'site/docs/docs_style.css')
-rw-r--r--site/docs/docs_style.css61
1 files changed, 61 insertions, 0 deletions
diff --git a/site/docs/docs_style.css b/site/docs/docs_style.css
new file mode 100644
index 0000000000..bb225e1fd9
--- /dev/null
+++ b/site/docs/docs_style.css
@@ -0,0 +1,61 @@
+* {
+ font-family: "Open Sans", sans-serif;
+}
+
+h1, h2, h3, h4, h5, h6 {
+ color: #444;
+ font-weight: 400;
+}
+
+p, li {
+ font-size: 14px;
+ color: #444;
+ font-weight: 400;
+}
+
+a {
+ color: #49b;
+ font-weight: 600;
+}
+
+code {
+ font-family: monospace;
+ font-size: 13px;
+ color: #000;
+}
+
+pre {
+ display: block;
+ background-color: #f5f7f9;
+ border: 1px solid #9ab;
+ padding: 0.5em;
+}
+
+table {
+ border-spacing: 0px;
+ border: 1px solid #9ab;
+}
+
+th, td {
+ border-left: 1px solid #9ab;
+}
+
+th:first-child, td:first-child {
+ border-left: none;
+}
+
+th {
+ padding: 0.5em;
+}
+
+td {
+ padding: 0.3em;
+}
+
+tr:nth-child(odd) {
+ background: #eee;
+}
+
+tr:nth-child(even) {
+ background: #fff;
+}