gambas-source-code/app/examples/Web/SmallWiki/.public/style.css
Benoît Minisini c6a9cd69c2 [EXAMPLES]
* NEW: Add examples again. I hope correctly this time.


git-svn-id: svn://localhost/gambas/trunk@6726 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2014-12-12 19:58:52 +00:00

233 lines
3.2 KiB
CSS

HTML, BODY {
height: 100%;
}
BODY{
padding: 0px;
margin: 0px;
}
P {
margin-bottom: 0;
margin-top: 0.5em;
}
P:first-child,UL:first-child,OL:first-child {
margin-bottom: 0;
margin-top: 0;
}
DIV:first-child > PRE {
margin-top: 0;
}
H1,H2,H3,H4,H5,H6 {
margin-bottom: 0;
}
H1:first-child {
margin-top: 0;
}
INPUT[type=submit] {
border: solid black 1px;
background: white;
color: black;
cursor: pointer;
}
INPUT[type=submit]:hover {
background: #E0E0E0;
}
CODE {
background: #F0F0F0;
padding: 0px 1px;
display: inline;
}
PRE {
background: #F0F0F0;
display: inline-table;
padding: 4px 8px;
margin: 0px;
margin-top: 0.5em;
border: solid #C0C0C0 1px;
border-collapse: separate;
}
TABLE {
border: solid #A0A0A0 1px;
padding: 0px;
border-collapse: collapse;
margin-top: 0.5em;
}
TABLE TD {
border: solid #A0A0A0 1px;
padding: 3px 6px;
vertical-align: top;
}
TABLE TH {
border: solid #A0A0A0 1px;
padding: 3px 6px;
text-align: left;
}
TABLE.example {
border: none;
border-left: solid #A0A0A0 8px;
}
TABLE.example TR {
border: none;
}
TABLE.example TD {
border: none;
padding-left: 8px;
}
TABLE.example TH {
border: none;
padding-left: 8px;
}
.header {
position: fixed;
left: 0;
right: 0;
top: 0;
background: #C0C0C0;
color: white;
border-bottom: black solid 1px;
padding: 4px 8px;
box-shadow: 0 0 8px black;
height: 24px;
}
.title {
display: inline-table;
}
.login {
float: right;
}
.label-login {
display: inline-table;
font-weight: bold;
}
.page {
padding: 4px 8px;
padding-top: 48px;
}
.unknown {
color: red;
font-style: italic;
margin-top: 8px;
font-size: 150%;
}
.command {
display: inline-table;
margin-left: 8px;
}
.up {
display: inline-table;
vertical-align: middle;
padding: 2px;
}
.edit-frame {
position: absolute;
left: 0px;
right: 0px;
top: 36px;
bottom: 0px;
padding: 8px;
}
.edit {
border: none;
background: none;
width: 100%;
height: 100%;
}
DIV.box {
display: inline-table;
border: solid #A0A0A0 1px;
border-radius: 8px;
padding: 8px;
}
DIV.info {
display: inline-table;
border: solid #A0A0A0 1px;
border-radius: 8px;
padding: 8px;
padding-left: 48px;
background: url('/wiki/info.png') 8px 8px no-repeat;
height: 32px;
}
DIV.warning {
display: inline-table;
border: solid #A0A0A0 1px;
border-radius: 8px;
padding: 8px;
padding-left: 48px;
background: url('/wiki/warning.png') 8px 8px no-repeat;
height: 32px;
}
DIV.tip {
display: inline-table;
border: solid #A0A0A0 1px;
border-radius: 8px;
padding: 8px;
padding-left: 48px;
background: url('/wiki/tip.png') 8px 8px no-repeat;
height: 32px;
}
DIV.critical {
display: inline-table;
border: solid #A0A0A0 1px;
border-radius: 8px;
padding: 8px;
padding-left: 48px;
background: url('/wiki/critical.png') 8px 8px no-repeat;
height: 32px;
}
DIV.table {
margin-top: 0.5em;
}
DIV.table:first-child {
margin-top: 0;
}
DIV.index {
display: inline-table;
border: solid 1px #C0C0C0;
font-size: 85%;
padding: 8px 32px 8px 0;
margin-top: 0.5em;
}
HR {
margin-top: 0.5em;
margin-left: -8px;
margin-right: -8px;
padding: 0px;
height: 1px;
border: none;
border-top: solid #C0C0C0 1px;
}