71 lines
1.9 KiB
CSS
71 lines
1.9 KiB
CSS
/*
|
|
Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; version 2 of the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
/******************************************************************************
|
|
*** ***
|
|
*** Style sheet settings for MySQL CLuster configuration user guide ***
|
|
*** ***
|
|
******************************************************************************/
|
|
|
|
body {
|
|
font-family: Helvetica, Verdana, sans-serif;
|
|
font-size: 80%;
|
|
line-height: 1.5em;
|
|
text-align: left;
|
|
background-color: #f9fbfc;
|
|
color: #000000;
|
|
}
|
|
|
|
.guibutton {
|
|
background: #fff;
|
|
display: inline;
|
|
border: 1px double #777;
|
|
/*padding: 1px 4px;
|
|
line-height: 1.2em;*/
|
|
margin: 2px;
|
|
padding: 4px;
|
|
font-size: 12px;
|
|
/*line-height: 1.4em;*/
|
|
white-space: nowrap;
|
|
border-radius: 6px;
|
|
-moz-border-radius: 6px;
|
|
-webkit-border-radius: 6px;
|
|
}
|
|
|
|
.collapsible {
|
|
background-color: #777;
|
|
color: white;
|
|
cursor: pointer;
|
|
padding: 18px;
|
|
width: 100%;
|
|
border: none;
|
|
text-align: left;
|
|
outline: none;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.active, .collapsible:hover {
|
|
background-color: #555;
|
|
}
|
|
|
|
.content {
|
|
padding: 0 18px;
|
|
display: none;
|
|
overflow: hidden;
|
|
background-color: #f1f1f1;
|
|
}
|