spark-instrumented-optimizer/docs/css/main.css

107 lines
1.7 KiB
CSS
Raw Normal View History

/* ==========================================================================
Author's custom styles
========================================================================== */
.navbar .brand {
2012-09-25 22:31:07 -04:00
height: 50px;
width: 110px;
2012-09-25 22:31:07 -04:00
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;
2012-09-25 22:31:07 -04:00
height: 50px;
}
.navbar-inner .nav {
margin-top: 5px;
2012-09-25 18:46:18 -04:00
font-size: 15px;
}
.navbar .divider-vertical {
border-right-color: lightgray;
}
.navbar-text .version-text {
color: #555555;
padding: 5px;
margin-left: 10px;
}
2012-09-13 12:56:27 -04:00
body #content {
line-height: 1.6; /* Inspired by Github's wiki style */
}
2012-09-12 22:47:31 -04:00
.title {
font-size: 32px;
}
h1 {
font-size: 28px;
margin-top: 12px;
}
2012-09-12 22:47:31 -04:00
h2 {
font-size: 24px;
margin-top: 12px;
2012-09-12 22:47:31 -04:00
}
h3 {
font-size: 21px;
margin-top: 10px;
}
pre {
font-family: "Menlo", "Lucida Console", monospace;
2012-09-12 22:47:31 -04:00
}
code {
2012-09-25 18:46:18 -04:00
font-family: "Menlo", "Lucida Console", monospace;
background: white;
border: none;
padding: 0;
color: #444444;
2012-09-25 18:46:18 -04:00
}
2012-09-26 02:51:04 -04:00
a code {
color: #0088cc;
}
a:hover code {
color: #005580;
text-decoration: underline;
}
.container {
max-width: 914px;
}
/**
* 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
**/
.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;
}
ul.nav li.dropdown:hover ul.dropdown-menu{
display: block;
}
a.menu:after, .dropdown-toggle:after {
content: none;
}