24 lines
336 B
CSS
24 lines
336 B
CSS
|
html
|
||
|
, body
|
||
|
{ height : 100%
|
||
|
; display : block
|
||
|
}
|
||
|
|
||
|
body
|
||
|
{ align-items : center
|
||
|
; background : black
|
||
|
; display : flex
|
||
|
; overflow : hidden
|
||
|
; justify-content : center
|
||
|
; padding : 1rem
|
||
|
}
|
||
|
|
||
|
canvas
|
||
|
{ background : black
|
||
|
; cursor : grab
|
||
|
; display : block
|
||
|
}
|
||
|
|
||
|
canvas:active
|
||
|
{ cursor : grabbing }
|