mirror of
https://github.com/zyqunix/tools.git
synced 2025-07-06 06:20:30 +02:00
25 lines
No EOL
433 B
CSS
25 lines
No EOL
433 B
CSS
@import url(/global.css);
|
|
|
|
canvas {
|
|
width: 100%;
|
|
background-color: #fff;
|
|
border-radius: 10px;
|
|
pointer-events: none;
|
|
}
|
|
|
|
button {
|
|
cursor: pointer;
|
|
background-color: #2a2a2a;
|
|
padding: 7px;
|
|
color: #c0c0c0;
|
|
border: #2c2c2c solid 2px;
|
|
border-radius: 4px;
|
|
margin-top: 10px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #2c2c2c;
|
|
color: #d0d0d0;
|
|
border: #2e2e2e solid 2px;
|
|
} |