Spaces:
Runtime error
Runtime error
css adj
Browse files- public/style.css +32 -13
public/style.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
body {
|
| 2 |
display: flex;
|
| 3 |
-
align-items:
|
| 4 |
justify-content: center;
|
| 5 |
height: 100vh;
|
| 6 |
margin: 0;
|
|
@@ -10,9 +10,9 @@ div#main-container {
|
|
| 10 |
display: flex;
|
| 11 |
flex-direction: column;
|
| 12 |
flex-wrap: nowrap;
|
| 13 |
-
|
| 14 |
-
justify-content: center;
|
| 15 |
align-items: center;
|
|
|
|
| 16 |
}
|
| 17 |
|
| 18 |
div#title {
|
|
@@ -20,13 +20,24 @@ div#title {
|
|
| 20 |
text-align: center;
|
| 21 |
}
|
| 22 |
|
| 23 |
-
div#
|
| 24 |
display: flex;
|
| 25 |
-
|
| 26 |
-
flex-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30 |
}
|
| 31 |
|
| 32 |
div#checkbox-rear {
|
|
@@ -43,18 +54,26 @@ div#checkbox-rear > div {
|
|
| 43 |
font-family: sans-serif;
|
| 44 |
}
|
| 45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 46 |
div#instructions-container {
|
| 47 |
display: flex;
|
| 48 |
flex-direction: row;
|
| 49 |
justify-content: flex-start;
|
| 50 |
width: 100%;
|
| 51 |
height: 40px;
|
| 52 |
-
margin: 4px 0;
|
| 53 |
gap: 4px;
|
| 54 |
}
|
| 55 |
|
| 56 |
div#canvas-container {
|
| 57 |
-
margin:
|
| 58 |
}
|
| 59 |
|
| 60 |
canvas#myCanvas {
|
|
@@ -87,9 +106,9 @@ div#vision-text-container {
|
|
| 87 |
font-family: sans-serif;
|
| 88 |
display: flex;
|
| 89 |
flex-direction: column;
|
|
|
|
| 90 |
height: 210px;
|
| 91 |
overflow: scroll;
|
| 92 |
-
margin: 20px 0;
|
| 93 |
}
|
| 94 |
|
| 95 |
.text-msg {
|
|
@@ -98,7 +117,7 @@ div#vision-text-container {
|
|
| 98 |
}
|
| 99 |
|
| 100 |
.text-msg:last-child{
|
| 101 |
-
font-size:
|
| 102 |
line-height: 1.3em;
|
| 103 |
font-weight: bold;
|
| 104 |
}
|
|
|
|
| 1 |
body {
|
| 2 |
display: flex;
|
| 3 |
+
align-items: center;
|
| 4 |
justify-content: center;
|
| 5 |
height: 100vh;
|
| 6 |
margin: 0;
|
|
|
|
| 10 |
display: flex;
|
| 11 |
flex-direction: column;
|
| 12 |
flex-wrap: nowrap;
|
| 13 |
+
height: 100vh;
|
|
|
|
| 14 |
align-items: center;
|
| 15 |
+
row-gap: 40px;
|
| 16 |
}
|
| 17 |
|
| 18 |
div#title {
|
|
|
|
| 20 |
text-align: center;
|
| 21 |
}
|
| 22 |
|
| 23 |
+
div#appcontent-ctn {
|
| 24 |
display: flex;
|
| 25 |
+
column-gap: 30px;
|
| 26 |
+
flex-wrap: wrap;
|
| 27 |
+
justify-content: center;
|
| 28 |
+
row-gap: 4px;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
div#left-ctn {
|
| 32 |
+
display: flex;
|
| 33 |
+
flex-direction: column;
|
| 34 |
+
row-gap: 4px;
|
| 35 |
+
}
|
| 36 |
+
|
| 37 |
+
div#right-ctn {
|
| 38 |
+
display: flex;
|
| 39 |
+
flex-direction: column;
|
| 40 |
+
row-gap: 4px;
|
| 41 |
}
|
| 42 |
|
| 43 |
div#checkbox-rear {
|
|
|
|
| 54 |
font-family: sans-serif;
|
| 55 |
}
|
| 56 |
|
| 57 |
+
div#buttons-container {
|
| 58 |
+
display: flex;
|
| 59 |
+
justify-content: flex-start;
|
| 60 |
+
flex-direction: row;
|
| 61 |
+
width: 100%;
|
| 62 |
+
height: 40px;
|
| 63 |
+
gap: 4px;
|
| 64 |
+
}
|
| 65 |
+
|
| 66 |
div#instructions-container {
|
| 67 |
display: flex;
|
| 68 |
flex-direction: row;
|
| 69 |
justify-content: flex-start;
|
| 70 |
width: 100%;
|
| 71 |
height: 40px;
|
|
|
|
| 72 |
gap: 4px;
|
| 73 |
}
|
| 74 |
|
| 75 |
div#canvas-container {
|
| 76 |
+
margin: 0;
|
| 77 |
}
|
| 78 |
|
| 79 |
canvas#myCanvas {
|
|
|
|
| 106 |
font-family: sans-serif;
|
| 107 |
display: flex;
|
| 108 |
flex-direction: column;
|
| 109 |
+
flex: 1;
|
| 110 |
height: 210px;
|
| 111 |
overflow: scroll;
|
|
|
|
| 112 |
}
|
| 113 |
|
| 114 |
.text-msg {
|
|
|
|
| 117 |
}
|
| 118 |
|
| 119 |
.text-msg:last-child{
|
| 120 |
+
font-size: 1em;
|
| 121 |
line-height: 1.3em;
|
| 122 |
font-weight: bold;
|
| 123 |
}
|