mirror of
https://github.com/socketio/socket.io.git
synced 2026-01-15 01:48:01 -05:00
45 lines
561 B
CSS
45 lines
561 B
CSS
|
|
/**
|
|
* Fix user-agent
|
|
*/
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html, body {
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
/**
|
|
* Canvas
|
|
*/
|
|
|
|
.whiteboard {
|
|
height: 100%;
|
|
width: 100%;
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
top: 0;
|
|
}
|
|
|
|
.colors {
|
|
position: fixed;
|
|
}
|
|
|
|
.color {
|
|
display: inline-block;
|
|
height: 48px;
|
|
width: 48px;
|
|
}
|
|
|
|
.color.black { background-color: black; }
|
|
.color.red { background-color: red; }
|
|
.color.green { background-color: green; }
|
|
.color.blue { background-color: blue; }
|
|
.color.yellow { background-color: yellow; }
|