documon
Version:
A documentation system for mortals. Use with any language.
210 lines (174 loc) • 3.8 kB
CSS
/*
Part of Documon.
Copyright (c) Michael Gieson.
www.documon.net
*/
html,
body {
width: 100%;
height: 100%;
overflow: hidden;
/*font-family: "Inconsolata", "Monoco", "Lucida Grande", "Courier New", Courier, monospace;
font-family: Helvetica, Arial, sans-serif;
font-family: 'Fira Sans';*/
font-family: -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
font-size : 13px;
font-weight: normal;
margin : 0;
padding : 0;
}
/* -----------------------------------------------------------------
Panels
- Ued by the jbeeb.utils.Layout
- Define the basic areas of the page
----------------------------------------------------------------- */
/* the wrapper div for the #headerPanel content area */
/* Dark */
#headerPanel {
background-color: #464646;
border-top: 1px solid #000000;
border-bottom: 1px solid #000000;
}
/* Light
#headerPanel {
background-color: #3A3A3A;
background-image: linear-gradient(to bottom, #f4f4f4 0%, #d4d4d4 100%);
border-bottom: 1px solid #959595;
}
*/
/* the wrapper div for the #menuPanel content area */
#leftPanel {
border-right: 1px solid #CCCCCC;
background-color: #EFEFEF;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
z-index : 2;
}
#menuPanel {
}
/* the wrapper div for the #mainPanel content area */
#contentPanel {
padding : 0;
z-index : 1;
}
#tabPanel {
padding : 0;
background-color: #989898;
}
#pagePanel {
padding : 0;
}
/* -----------------------------------------------------------------
header
----------------------------------------------------------------- */
.header {
text-decoration : none; /* me no why need here too :( */
white-space :nowrap;
color : #CFCFCF;
}
.header a {
text-decoration : none;
color : #CFCFCF;
}
.header-left,
.header-center,
.header-right {
position: absolute;
display: inline-block;
}
/* ======================= left */
.header-left {
z-index: 2;
white-space : nowrap;
padding: 3px 0 0 10px;
}
.header-left .title {
position : relative;
display: inline-block;
font-size: 1.2em;
font-weight: bold;
}
.header-left .version {
position : relative;
display: inline-block;
font-size: 1em;
font-style: italic;
}
.header-left .version:before {
content: '- v';
}
/* ======================= center */
.header-center {
top: 0;
left: 0;
font-weight: 200;
width: 100%;
text-align: center;
z-index: 1;
}
/* ======================= search panel */
#searchPanel {
background-color : #515151;
}
#searchBox {
position : relative;
white-space : nowrap;
padding : 15px 0 10px 6px;
}
#searchText {
width : 70%;
height : 20px;
border-radius : 12px;
padding : 0 8px 0 8px;
background-color : #D3D3D3;
border : 1px solid #000000;resize: both;
}
#searchButton {
position : absolute;
top : 19px;
right : 10px;
color: #7A7A7A;
font-size: 1.33333333em;
line-height: 0.75em;
vertical-align: -15%;
margin-left : 5px;
cursor : pointer;
}
#searchButton:before {
content: "\f002";
}
#searchResults {
padding-left : 6px;
}
#searchResults > div {
color : #D7D7D7;
line-height : 1.3em;
cursor : default;
}
#searchResults a {
text-decoration : none;
color : #CFCFCF;
}
/* ======================= right */
.header-right {
top: 0.4em;
right: 1em;
z-index: 2;
}
/* A wrapper div for the checkboxes (Protected, Private, etc...) */
.header-right .access-box {}
/* The labels on the checkboxes */
.header-right label {
font-weight: normal;
padding-left: 0.3em;
padding-right: 0.3em;
}
iframe {
position : absolute;
left : 0;
top : 0;
right : 0;
bottom : 0;
border : 0;
margin : 0;
padding : 0;
}