aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/PhysicsBox/PhysicsSimulationBox.scss
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2023-05-22 15:32:15 -0400
committerbobzel <zzzman@gmail.com>2023-05-22 15:32:15 -0400
commitc43b5f144eef86bd07fbb447b7c8a7087f4d0cac (patch)
treedddeacafbf2d419daca6f82864f0600a5aeb9211 /src/client/views/nodes/PhysicsBox/PhysicsSimulationBox.scss
parentbed3309e1fda6597b2a8fea10ad82cd3a0402051 (diff)
start of physics cleanup
Diffstat (limited to 'src/client/views/nodes/PhysicsBox/PhysicsSimulationBox.scss')
-rw-r--r--src/client/views/nodes/PhysicsBox/PhysicsSimulationBox.scss128
1 files changed, 65 insertions, 63 deletions
diff --git a/src/client/views/nodes/PhysicsBox/PhysicsSimulationBox.scss b/src/client/views/nodes/PhysicsBox/PhysicsSimulationBox.scss
index 7193e3157..c29e36a97 100644
--- a/src/client/views/nodes/PhysicsBox/PhysicsSimulationBox.scss
+++ b/src/client/views/nodes/PhysicsBox/PhysicsSimulationBox.scss
@@ -1,76 +1,78 @@
-* {
- box-sizing: border-box;
- font-size: 14px;
-}
+.physicsSimApp {
+ * {
+ box-sizing: border-box;
+ font-size: 14px;
+ }
-.mechanicsSimulationContainer {
- background-color: white;
- height: 100%;
- width: 100%;
- display: flex;
+ .mechanicsSimulationContainer {
+ background-color: white;
+ height: 100%;
+ width: 100%;
+ display: flex;
- .mechanicsSimulationEquationContainer {
- position: fixed;
- left: 60%;
- padding: 1em;
+ .mechanicsSimulationEquationContainer {
+ position: fixed;
+ left: 60%;
+ padding: 1em;
- .mechanicsSimulationControls {
- display: flex;
- justify-content: space-between;
- }
- }
-}
+ .mechanicsSimulationControls {
+ display: flex;
+ justify-content: space-between;
+ }
+ }
+ }
-.coordinateSystem {
- z-index: -100;
-}
+ .coordinateSystem {
+ z-index: -100;
+ }
-th,
-td {
- border-collapse: collapse;
- padding: 1em;
-}
+ th,
+ td {
+ border-collapse: collapse;
+ padding: 1em;
+ }
-table {
- min-width: 300px;
-}
+ table {
+ min-width: 300px;
+ }
-tr:nth-child(even) {
- background-color: #d6eeee;
-}
+ tr:nth-child(even) {
+ background-color: #d6eeee;
+ }
-button {
- z-index: 50;
-}
+ button {
+ z-index: 50;
+ }
-.angleLabel {
- font-weight: bold;
- font-size: 20px;
- user-select: none;
- pointer-events: none;
-}
+ .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;
-}
+ .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;
-}
+ .mechanicsSimulationSettingsMenuRow {
+ display: flex;
+ }
-.mechanicsSimulationSettingsMenuRowDescription {
- width: 50%;
-}
+ .mechanicsSimulationSettingsMenuRowDescription {
+ width: 50%;
+ }
-.dropdownMenu {
- z-index: 50;
-} \ No newline at end of file
+ .dropdownMenu {
+ z-index: 50;
+ }
+}