mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
46 lines
552 B
CSS
46 lines
552 B
CSS
body {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
font-family: monospace
|
|
}
|
|
|
|
p {
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
|
|
.green {
|
|
background-color: green;
|
|
color: white;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.gray {
|
|
background-color: #333;
|
|
color: #eee;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.red {
|
|
background-color: red;
|
|
color: white;
|
|
}
|
|
|
|
.row > div {
|
|
display: inline-block;
|
|
background-color: #f0f0f0;
|
|
width: 578px;
|
|
height: 200px;
|
|
}
|
|
|
|
#testCounter {
|
|
position: fixed;
|
|
right: 0px;
|
|
top: 0px;
|
|
background-color: green;
|
|
padding: 10px;
|
|
border-radius: 3px;
|
|
color: white;
|
|
font-size: 2em;
|
|
}
|