diff options
| author | Matthew Kosarek <matthew.kosarek@vention.cc> | 2021-02-27 17:32:32 -0500 | 
|---|---|---|
| committer | Matthew Kosarek <matthew.kosarek@vention.cc> | 2021-02-27 17:32:32 -0500 | 
| commit | d1b528b01796601c2bfea7b1a9813e5907e1c728 (patch) | |
| tree | 77e2200e930fcad2166edf1e3d31d4cd1211db56 /frontend/index.css | |
| parent | 026abdb98ad30209df0e88795f25b1f74556585e (diff) | |
Close to being done on line-circle collisions, but it appears we're running into a rotation problem. Going to work on square-line collisions in the meantime
Diffstat (limited to 'frontend/index.css')
| -rw-r--r-- | frontend/index.css | 11 | 
1 files changed, 11 insertions, 0 deletions
| diff --git a/frontend/index.css b/frontend/index.css index 729768c..00ea6e9 100644 --- a/frontend/index.css +++ b/frontend/index.css @@ -77,6 +77,7 @@ nav {  }  .outer-tree > li > span > i { +    transform: rotate(0deg);      transition: 100ms ease-in-out transform;  } @@ -85,6 +86,10 @@ nav {      transform: rotate(180deg);  } +.outer-tree li > span > span { +    padding-left: 1rem;; +} +  .inner-tree {      padding-left: 1rem;      display: none; @@ -186,6 +191,7 @@ article .opengl_canvas_container {      display: flex;      flex-direction: row;      justify-content: center; +    border-radius: 3px;  }  article .opengl_canvas_container .play_button { @@ -206,6 +212,11 @@ article .opengl_canvas_container .play_button {      justify-content: center;  } +.opengl_canvas_container canvas { +    border-radius: 3px 0px 0px 3px; +    border: 1px solid black; +} +  article .opengl_canvas_container .play_button:hover {      cursor: pointer;  } | 
