oxjs/examples/mouse_events/css/example.css

52 lines
1,000 B
CSS
Raw Normal View History

2012-04-14 10:12:09 +00:00
#clear {
position: absolute;
left: 256px;
right: 0px;
2012-04-15 12:21:15 +00:00
height: 14px;
padding: 2px 0 0 2px;
2012-04-14 10:23:32 +00:00
cursor: pointer;
2012-04-14 10:12:09 +00:00
}
#log {
position: absolute;
left: 256px;
top: 16px;
right: 0;
bottom: 0;
2012-04-14 10:23:32 +00:00
border-width: 0;
2012-04-14 10:12:09 +00:00
overflow-y: auto;
}
#target {
position: absolute;
left: 0;
top: 0;
bottom: 0;
2012-04-14 10:23:32 +00:00
width: 253px;
2012-04-15 12:21:15 +00:00
padding: 2px 0 0 2px;
2012-04-14 10:23:32 +00:00
border-width: 0;
2012-04-15 12:21:15 +00:00
font-weight: bold;
2012-04-14 10:23:32 +00:00
cursor: crosshair;
2012-04-15 19:56:39 +00:00
}
.OxThemeClassic #clear {
background: rgb(240, 240, 240);
}
.OxThemeClassic #log {
border-top: 1px solid rgb(208, 208, 208);
background: rgb(255, 255, 255);
}
.OxThemeClassic #target {
border-right: 1px solid rgb(208, 208, 208);
background: rgb(224, 224, 224);
}
.OxThemeModern #clear {
background: rgb(16, 16, 16);
}
.OxThemeModern #log {
border-top: 1px solid rgb(48, 48, 48);
background: rgb(0, 0, 0)
}
.OxThemeModern #target {
border-right: 1px solid rgb(48, 48, 48);
background: rgb(32, 32, 32);
2012-04-14 10:12:09 +00:00
}