Spaces:
Running
Running
add grid
Browse files
style.css
CHANGED
|
@@ -4,6 +4,7 @@
|
|
| 4 |
margin: 0;
|
| 5 |
font-family: "Fira Code VF", monospace;
|
| 6 |
line-height: 1.5;
|
|
|
|
| 7 |
}
|
| 8 |
|
| 9 |
html,
|
|
@@ -138,4 +139,36 @@ button.submit:active {
|
|
| 138 |
|
| 139 |
.module {
|
| 140 |
background-color: #ede2fe;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 141 |
}
|
|
|
|
| 4 |
margin: 0;
|
| 5 |
font-family: "Fira Code VF", monospace;
|
| 6 |
line-height: 1.5;
|
| 7 |
+
font-size: 0.94rem;
|
| 8 |
}
|
| 9 |
|
| 10 |
html,
|
|
|
|
| 139 |
|
| 140 |
.module {
|
| 141 |
background-color: #ede2fe;
|
| 142 |
+
}
|
| 143 |
+
|
| 144 |
+
.module {
|
| 145 |
+
background-color: #ede2fe;
|
| 146 |
+
/* margin: rem; */
|
| 147 |
+
}
|
| 148 |
+
|
| 149 |
+
.grid-container {
|
| 150 |
+
min-height: 100vh;
|
| 151 |
+
display: grid;
|
| 152 |
+
grid-template-areas:
|
| 153 |
+
"top"
|
| 154 |
+
"left"
|
| 155 |
+
"right"
|
| 156 |
+
"footer";
|
| 157 |
+
gap: 1rem;
|
| 158 |
+
}
|
| 159 |
+
|
| 160 |
+
#introDiv {
|
| 161 |
+
grid-area: "top"
|
| 162 |
+
}
|
| 163 |
+
|
| 164 |
+
#instructDiv {
|
| 165 |
+
grid-area: "left";
|
| 166 |
+
}
|
| 167 |
+
|
| 168 |
+
#inputDiv {
|
| 169 |
+
grid-area: "right";
|
| 170 |
+
}
|
| 171 |
+
|
| 172 |
+
#outputDiv {
|
| 173 |
+
grid-area: "bottom";
|
| 174 |
}
|