114 lines
No EOL
2.4 KiB
CSS
114 lines
No EOL
2.4 KiB
CSS
body {
|
|
margin: 0;
|
|
}
|
|
body.OxThemeClassic {
|
|
background-color: rgb(240, 240, 240);
|
|
}
|
|
body.OxThemeModern {
|
|
background-color: rgb(16, 16, 16);
|
|
}
|
|
|
|
div {
|
|
font-family: Lucida Grande, Segoe UI, DejaVu Sans, Arial;
|
|
font-size: 11px;
|
|
}
|
|
.OxThemeClassic div {
|
|
color: rgb(16, 16, 16);
|
|
}
|
|
.OxThemeModern div {
|
|
color: rgb(240, 240, 240);
|
|
}
|
|
|
|
.OxThemeClassic .bar {
|
|
background-image: -moz-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
|
|
background-image: -o-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
|
|
background-image: -webkit-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
|
|
}
|
|
.OxThemeModern .bar {
|
|
background-image: -moz-linear-gradient(top, rgb(64, 64, 64), rgb(32, 32, 32));
|
|
background-image: -o-linear-gradient(top, rgb(64, 64, 64), rgb(32, 32, 32));
|
|
background-image: -webkit-linear-gradient(top, rgb(64, 64, 64), rgb(32, 32, 32));
|
|
}
|
|
|
|
.button {
|
|
padding: 0 4px 0 4px;
|
|
border-radius: 4px;
|
|
margin: 0 3px 0 3px;
|
|
cursor: pointer;
|
|
}
|
|
.button.selected {
|
|
cursor: default;
|
|
}
|
|
.button:hover {
|
|
box-shadow: 0 0 1px rgb(0, 0, 0);
|
|
}
|
|
.OxThemeClassic .button:hover {
|
|
//background-color: rgba(255, 255, 255, 0.5);
|
|
box-shadow: 0 0 1px rgba(0, 0, 0, 1);
|
|
}
|
|
.OxThemeClassic .button.selected {
|
|
background-color: rgb(255, 255, 255);
|
|
box-shadow: 0 0 1px rgb(0, 0, 0);
|
|
}
|
|
.OxThemeModern .button:hover {
|
|
//background-color: rgba(0, 0, 0, 0.5);
|
|
box-shadow: 0 0 1px rgba(255, 255, 255, 1);
|
|
}
|
|
.OxThemeModern .button.selected {
|
|
background-color: rgb(0, 0, 0);
|
|
box-shadow: 0 0 1px rgb(255, 255, 255);
|
|
}
|
|
|
|
.doclink {
|
|
text-decoration: underline;
|
|
}
|
|
.OxComment .doclink {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.line {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.logo {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.page {
|
|
width: 512px;
|
|
padding: 32px;
|
|
margin: 16px auto 16px auto;
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
border-radius: 8px;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
}
|
|
.page blockquote {
|
|
margin-left: 28px;
|
|
}
|
|
.page code, .page pre {
|
|
font-size: 12px;
|
|
}
|
|
.page h1 {
|
|
font-size: 18px;
|
|
line-height: 24px;
|
|
}
|
|
.page h2 {
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
}
|
|
.OxThemeClassic .page {
|
|
border-color: rgb(208, 208, 208);
|
|
background: rgb(255, 255, 255);
|
|
}
|
|
.OxThemeModern .page {
|
|
border-color: rgb(48, 48, 48);
|
|
background: rgb(255, 255, 255);
|
|
}
|
|
|
|
.ui {
|
|
position: absolute;
|
|
font-size: 12px;
|
|
text-align: center;
|
|
} |