oxjs/index.css

127 lines
2.1 KiB
CSS
Raw Normal View History

2012-04-05 15:28:40 +00:00
body {
margin: 0;
}
.animate, .loading, .warning {
2012-04-06 23:42:54 +00:00
position: absolute;
z-index: 1001;
}
2012-04-06 23:42:54 +00:00
.OxCode .doclink {
2012-04-05 15:28:40 +00:00
text-decoration: underline;
}
.OxComment .doclink {
font-size: 12px;
2012-04-06 23:42:54 +00:00
text-decoration: none;
}
.OxComment .doclink:hover {
text-decoration: underline;
}
2012-04-06 23:42:54 +00:00
.loading {
left: 0;
right: 0;
width: 32px;
height: 32px;
margin: auto;
2012-04-05 15:28:40 +00:00
}
.page {
2012-04-07 14:42:57 +00:00
width: 576px;
padding: 32px;
2012-04-07 14:42:57 +00:00
margin: 32px auto 32px auto;
border-radius: 8px;
font-size: 14px;
line-height: 20px;
2012-04-05 15:28:40 +00:00
}
.page code, .page pre {
font-size: 12px;
}
.page h1 {
font-size: 18px;
line-height: 24px;
}
.page h2 {
font-size: 16px;
line-height: 22px;
}
2012-04-07 14:42:57 +00:00
.readme .item {
padding: 4px 8px 4px 8px;
border-radius: 8px;
margin: 8px;
cursor: pointer;
}
2012-04-07 14:42:57 +00:00
.readme .item.selected {
cursor: normal;
}
.readme .item .title {
font-size: 14px;
}
.readme .item .date {
margin-top: 2px;
font-size: 12px;
2012-04-05 15:28:40 +00:00
}
2012-04-07 14:42:57 +00:00
.readme .text {
padding: 8px;
font-size: 14px;
line-height: 20px;
}
.readme .text code, .readme .text pre {
font-size: 12px;
}
.readme .text h1 {
font-size: 18px;
line-height: 24px;
}
.readme .text h2 {
font-size: 16px;
line-height: 22px;
}
2012-04-06 23:42:54 +00:00
.screen {
width: 100%;
height: 100%;
z-index: 1000;
}
2012-04-07 14:42:57 +00:00
.warning {
width: 256px;
text-align: justify;
}
2012-04-07 14:42:57 +00:00
body.OxThemeClassic,
2012-04-06 23:42:54 +00:00
.OxThemeClassic .screen {
2012-04-07 14:42:57 +00:00
background-color: rgb(240, 240, 240);
2012-04-06 23:42:54 +00:00
}
2012-04-07 14:42:57 +00:00
body.OxThemeModern,
2012-04-06 23:42:54 +00:00
.OxThemeModern .screen {
2012-04-07 14:42:57 +00:00
background-color: rgb(16, 16, 16);
}
.OxThemeClassic .page {
2012-04-08 12:48:07 +00:00
background-color: rgb(255, 255, 255);
2012-04-07 14:42:57 +00:00
}
.OxThemeModern .page {
2012-04-08 12:48:07 +00:00
background-color: rgb(0, 0, 0);
}
.OxThemeClassic .readme .item.selected {
background: rgb(224, 224, 224);
}
.OxThemeModern .readme .item.selected {
background: rgb(32, 32, 32);
2012-04-07 14:42:57 +00:00
}
.OxThemeClassic .logo,
2012-04-08 12:48:07 +00:00
.OxThemeClassic .page,
.OxThemeClassic .readme .OxSyntaxHighlighter {
2012-04-07 14:42:57 +00:00
box-shadow: 0 0 1px rgb(0, 0, 0)
}
.OxThemeModern .logo,
2012-04-08 12:48:07 +00:00
.OxThemeModern .page,
.OxThemeModern .readme .OxSyntaxHighlighter {
2012-04-07 14:42:57 +00:00
box-shadow: 0 0 1px rgb(255, 255, 255)
}