mirror of
https://github.com/golang/go
synced 2024-11-13 15:20:22 -07:00
84c7e83b4c
Uses placeholder attribute instead of changing the value of search field on browsers that support it. On other browsers, the fake placeholder text is restored when the empty box loses focus. R=golang-dev, gri CC=golang-dev https://golang.org/cl/4441041
202 lines
3.2 KiB
CSS
202 lines
3.2 KiB
CSS
/* General Styles */
|
|
body {
|
|
font-family: "Bitstream Vera Sans", Verdana, sans-serif;
|
|
font-size: 81.25%;
|
|
line-height: 1.23em;
|
|
padding: 0;
|
|
margin: 1.23em;
|
|
background: white;
|
|
color: black;
|
|
}
|
|
a {
|
|
color: #04a;
|
|
text-decoration: none;
|
|
}
|
|
a:visited {
|
|
color: #04a;
|
|
}
|
|
a:hover {
|
|
color: #a40;
|
|
text-decoration: underline;
|
|
}
|
|
a:active {
|
|
color: #c00;
|
|
}
|
|
code, pre {
|
|
font-size: 1.2em;
|
|
}
|
|
pre {
|
|
background: #F0F0F0;
|
|
padding: 0.5em 1em;
|
|
}
|
|
|
|
/* Top bar */
|
|
#container {
|
|
width: 100%;
|
|
margin: auto;
|
|
}
|
|
#topnav {
|
|
height: 55px;
|
|
background: url(/doc/logo.png) no-repeat top left;
|
|
}
|
|
a#logo-box {
|
|
display: block;
|
|
height: 55px;
|
|
}
|
|
h1#title {
|
|
display: none;
|
|
}
|
|
#nav-main {
|
|
float: right;
|
|
width: 500px;
|
|
margin-top: -5px;
|
|
text-align: center;
|
|
}
|
|
#nav-main ul {
|
|
padding-left: 0;
|
|
margin-left: 0;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
#nav-main li a {
|
|
display: inline;
|
|
display: inline-block;
|
|
padding: .46em .62em .38em .62em;
|
|
}
|
|
#nav-main li a:link,
|
|
#nav-main li a:visited {
|
|
color: #000;
|
|
}
|
|
#nav-main li {
|
|
display: inline;
|
|
display: inline-block;
|
|
background: #e6e6e6 url(/doc/button_background.png) repeat-x;
|
|
border: solid 1px #999;
|
|
margin-left: -1px;
|
|
text-shadow: #fff 0 1px 0;
|
|
box-shadow: 0 1px 1px #ccc;
|
|
-moz-box-shadow: 0 1px 1px #ccc;
|
|
-webkit-box-shadow: 0 1px 1px #ccc;
|
|
}
|
|
#nav-main li:first-child {
|
|
-moz-border-top-left-radius: 4px;
|
|
border-top-left-radius: 4px;
|
|
-moz-border-bottom-left-radius: 4px;
|
|
border-bottom-left-radius: 4px;
|
|
}
|
|
#nav-main li:last-child {
|
|
-moz-border-top-right-radius: 4px;
|
|
border-top-right-radius: 4px;
|
|
-moz-border-bottom-right-radius: 4px;
|
|
border-bottom-right-radius: 4px;
|
|
}
|
|
#nav-main .quickref {
|
|
color: #444;
|
|
}
|
|
#nav-main .quickref .sep {
|
|
color: #999;
|
|
}
|
|
#search {
|
|
width: 120px;
|
|
margin-left: 0.5em;
|
|
}
|
|
#search.inactive {
|
|
text-align: center;
|
|
color: #444;
|
|
}
|
|
|
|
/* Footer */
|
|
#site-info {
|
|
position: relative;
|
|
text-align: center;
|
|
}
|
|
#site-info, #site-info a:link, #site-info a:visited {
|
|
color: #aaa;
|
|
}
|
|
|
|
/* Content */
|
|
#content {
|
|
clear: both;
|
|
padding: 0;
|
|
position: relative;
|
|
margin-top: 1.5em;
|
|
margin-bottom: 1.5em;
|
|
border-top: solid 1px #aaa;
|
|
border-bottom: solid 1px #aaa;
|
|
}
|
|
.left-column {
|
|
width: 49%;
|
|
float: left;
|
|
}
|
|
.right-column {
|
|
width: 49%;
|
|
float: right;
|
|
}
|
|
.end-columns {
|
|
clear: both;
|
|
}
|
|
#content h1 {
|
|
margin-bottom: -0em;
|
|
padding: 0;
|
|
}
|
|
#content h2 {
|
|
border-top: 1px solid #ddd;
|
|
background: #E2E7F0;
|
|
padding: 5px;
|
|
margin: 1.5em 0 0;
|
|
}
|
|
#content .subtitle {
|
|
margin-top: 1em;
|
|
display: block;
|
|
}
|
|
.navtop a {
|
|
font-weight: normal; font-size: 7pt;
|
|
float: right; color: #999;
|
|
}
|
|
|
|
/* Content and Code Highlighting */
|
|
pre.ebnf, pre.grammar {
|
|
background: #FFFFE0;
|
|
}
|
|
span.ln {
|
|
font-size: 80%;
|
|
color: #777777;
|
|
}
|
|
span.comment {
|
|
color: #002090;
|
|
}
|
|
span.highlight {
|
|
background: #FF9900;
|
|
font-weight: bold;
|
|
}
|
|
span.highlight-comment {
|
|
background: #FF9900;
|
|
font-weight: bold;
|
|
color: #002090;
|
|
}
|
|
span.selection {
|
|
background: #FFFF00
|
|
}
|
|
span.selection-comment {
|
|
color: #002090;
|
|
background: #FFFF00
|
|
}
|
|
span.selection-highlight {
|
|
background: #FF9900;
|
|
font-weight: bold;
|
|
}
|
|
span.selection-highlight-comment {
|
|
background: #FF9900;
|
|
font-weight: bold;
|
|
color: #002090;
|
|
}
|
|
span.alert {
|
|
color: #D00000;
|
|
}
|
|
#nav table {
|
|
width: 100%;
|
|
}
|
|
.detail {
|
|
padding: 0.25em 1em;
|
|
background: #F4F4F4;
|
|
}
|