mirror of
https://github.com/google/blockly.git
synced 2026-01-15 04:47:10 +01:00
23 lines
297 B
CSS
23 lines
297 B
CSS
body {
|
|
overflow: hidden;
|
|
}
|
|
|
|
#graph {
|
|
position: absolute;
|
|
bottom: 25px;
|
|
height: 15px;
|
|
width: 100px;
|
|
border: 1px solid #ddd;
|
|
}
|
|
#graphValue {
|
|
height: 15px;
|
|
width: 0;
|
|
background-color: #0d0;
|
|
transition-property: width;
|
|
transition-duration: 1s;
|
|
}
|
|
|
|
#blockly {
|
|
position: fixed;
|
|
}
|