aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/docs/docs_style.css
diff options
context:
space:
mode:
authorGravatar Damien Martin-Guillerez <dmarting@google.com>2016-07-28 12:47:11 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2016-07-29 10:09:06 +0000
commit95a54b98368a1c680c14e13d841b14a27aba01ca (patch)
tree4a4f51e0d40ac2231b27054207ff838ef574a4fd /site/docs/docs_style.css
parentadc2d75bfb4bc7000b69183b6053a8ce6578748e (diff)
*** Reason for rollback *** Breaks design docs links *** Original change description *** Move Bazel docs into versioned directory. * Move all Bazel docs (excluding main page, search page, and blog) into versions/master directory. * Replace all original pages with redirects. * Add Jekyll config with default_version setting to specify the default version to redirect docs to. * Add Jekyll config with version_prefix setting specific to pages under each version directory. * Update layouts to generate links to pages for the same version with the version_prefix. * Update Blaze rel... *** -- MOS_MIGRATED_REVID=128690580
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;
+}