summaryrefslogtreecommitdiff
path: root/site/docs/1.1.0/css/main.css
diff options
context:
space:
mode:
authorPatrick Wendell <pwendell@apache.org>2014-09-11 05:00:26 +0000
committerPatrick Wendell <pwendell@apache.org>2014-09-11 05:00:26 +0000
commit07461d1269cd6d373630c20fb50c2988af5c21f4 (patch)
tree04c4f9a3cbe613b3d3c79a8581e6b83babbc3e0b /site/docs/1.1.0/css/main.css
parent46d52fbb9be4b5b90a7a1ee9ce3e943156d190b9 (diff)
downloadspark-website-07461d1269cd6d373630c20fb50c2988af5c21f4.tar.gz
spark-website-07461d1269cd6d373630c20fb50c2988af5c21f4.tar.bz2
spark-website-07461d1269cd6d373630c20fb50c2988af5c21f4.zip
Adding Spark 1.1.0 docs.
Diffstat (limited to 'site/docs/1.1.0/css/main.css')
-rwxr-xr-xsite/docs/1.1.0/css/main.css148
1 files changed, 148 insertions, 0 deletions
diff --git a/site/docs/1.1.0/css/main.css b/site/docs/1.1.0/css/main.css
new file mode 100755
index 000000000..f6fe7d5f0
--- /dev/null
+++ b/site/docs/1.1.0/css/main.css
@@ -0,0 +1,148 @@
+/* ==========================================================================
+ Author's custom styles
+ ========================================================================== */
+
+.navbar .brand {
+ height: 50px;
+ width: 110px;
+ margin-left: 1px;
+ padding: 0;
+}
+
+.version {
+ line-height: 30px;
+ vertical-align: bottom;
+ font-size: 12px;
+ padding: 0;
+ margin: 0;
+ font-weight: bold;
+ color: #777;
+}
+
+.navbar-inner {
+ padding-top: 2px;
+ height: 50px;
+}
+
+.navbar-inner .nav {
+ margin-top: 5px;
+ font-size: 15px;
+}
+
+.navbar .divider-vertical {
+ border-right-color: lightgray;
+}
+
+.navbar-text .version-text {
+ color: #555555;
+ padding: 5px;
+ margin-left: 10px;
+}
+
+body #content {
+ line-height: 1.6; /* Inspired by Github's wiki style */
+}
+
+.title {
+ font-size: 32px;
+}
+
+h1 {
+ font-size: 28px;
+ margin-top: 12px;
+}
+
+h2 {
+ font-size: 24px;
+ margin-top: 12px;
+}
+
+h3 {
+ font-size: 21px;
+ margin-top: 10px;
+}
+
+pre {
+ font-family: "Menlo", "Lucida Console", monospace;
+}
+
+code {
+ font-family: "Menlo", "Lucida Console", monospace;
+ background: white;
+ border: none;
+ padding: 0;
+ color: #444444;
+}
+
+a code {
+ color: #0088cc;
+}
+
+a:hover code {
+ color: #005580;
+ text-decoration: underline;
+}
+
+.container {
+ max-width: 914px;
+}
+
+.dropdown-menu {
+ /* Remove the default 2px top margin which causes a small
+ gap between the hover trigger area and the popup menu */
+ margin-top: 0;
+ /* Avoid too much whitespace at the right for shorter menu items */
+ min-width: 50px;
+}
+
+/**
+ * Make dropdown menus in nav bars show on hover instead of click
+ * using solution at http://stackoverflow.com/questions/8878033/how-
+ * to-make-twitter-bootstrap-menu-dropdown-on-hover-rather-than-click
+ **/
+ul.nav li.dropdown:hover ul.dropdown-menu{
+ display: block;
+}
+
+a.menu:after, .dropdown-toggle:after {
+ content: none;
+}
+
+/** Make the submenus open on hover on the parent menu item */
+ul.nav li.dropdown ul.dropdown-menu li.dropdown-submenu:hover ul.dropdown-menu {
+ display: block;
+}
+
+/** Make the submenus be invisible until the parent menu item is hovered upon */
+ul.nav li.dropdown ul.dropdown-menu li.dropdown-submenu ul.dropdown-menu {
+ display: none;
+}
+
+/**
+ * Made the navigation bar buttons not grey out when clicked.
+ * Essentially making nav bar buttons not react to clicks, only hover events.
+ */
+.navbar .nav li.dropdown.open > .dropdown-toggle {
+ background-color: transparent;
+}
+
+/**
+ * Made the active tab caption blue. Otherwise the active tab is black, and inactive tab is blue.
+ * That looks weird. Changed the colors to active - blue, inactive - black, and
+ * no color change on hover.
+ */
+.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
+ color: #08c;
+}
+
+.nav-tabs > li > a, .nav-tabs > li > a:hover {
+ color: #333;
+}
+
+/**
+ * MathJax (embedded latex formulas)
+ */
+.MathJax .mo { color: inherit }
+.MathJax .mi { color: inherit }
+.MathJax .mf { color: inherit }
+.MathJax .mh { color: inherit }