diff options
| author | brynnchernosky <56202540+brynnchernosky@users.noreply.github.com> | 2023-04-24 13:34:23 -0400 |
|---|---|---|
| committer | brynnchernosky <56202540+brynnchernosky@users.noreply.github.com> | 2023-04-24 13:34:23 -0400 |
| commit | 2e6cba3995d82acc15bd34a7035e4a5786795211 (patch) | |
| tree | 10e71246f596015d737402062b13dab994bb4e86 /src/client/views/nodes/PhysicsSimulationBox.scss | |
| parent | 698383ad40f70d209238ba1ccaf4f171361781cb (diff) | |
| parent | dffb5bdfdcffc7e1f85888b7222468bfb95a05ac (diff) | |
Merge branch 'physics_simulation' into master
Diffstat (limited to 'src/client/views/nodes/PhysicsSimulationBox.scss')
| -rw-r--r-- | src/client/views/nodes/PhysicsSimulationBox.scss | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/src/client/views/nodes/PhysicsSimulationBox.scss b/src/client/views/nodes/PhysicsSimulationBox.scss new file mode 100644 index 000000000..0f05010b4 --- /dev/null +++ b/src/client/views/nodes/PhysicsSimulationBox.scss @@ -0,0 +1,72 @@ +* { + box-sizing: border-box; + font-size: 14px; +} + +.mechanicsSimulationContainer { + background-color: white; + height: 100%; + width: 100%; + display: flex; + + .mechanicsSimulationEquationContainer { + position: fixed; + left: 70%; + padding: 1em; + + .mechanicsSimulationControls { + display: flex; + justify-content: space-between; + } + } +} + +.coordinateSystem { + z-index: -100; +} + +th, +td { + border-collapse: collapse; + padding: 1em; +} + +table { + min-width: 300px; +} + +tr:nth-child(even) { + background-color: #d6eeee; +} + +button { + z-index: 50; +} + +.angleLabel { + font-weight: bold; + font-size: 20px; + user-select: none; + pointer-events: none; +} + +.mechanicsSimulationSettingsMenu { + width: 100%; + height: 100%; + font-size: 12px; + background-color: rgb(224, 224, 224); + border-radius: 2px; + border-color: black; + border-style: solid; + padding: 10px; + position: fixed; + z-index: 1000; +} + +.mechanicsSimulationSettingsMenuRow { + display: flex; +} + +.mechanicsSimulationSettingsMenuRowDescription { + width: 50%; +}
\ No newline at end of file |
