Add margin around column elements

Amolith created

Change summary

ws/static/styles.css | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)

Detailed changes

ws/static/styles.css 🔗

@@ -57,13 +57,17 @@ a:visited {
     gap: 30px;
     flex-direction: row;
     margin: auto auto;
-    max-width: 1000px;
+    max-width: 1040px;
     height: 92vh;
 }
 
+.two_column > * > * {
+    margin: 20px;
+}
+
 .projects, .release_notes {
     overflow: scroll;
-    flex: 0 0 500px;
+    flex: 0 0 540px;
 }
 
 .release_note.card:not(:target) { display: none;  }
@@ -77,7 +81,7 @@ a:visited {
     border: 2px solid #2f2f2f;
     background: #f8f8f8;
     border-radius: 5px;
-    margin-top: 20px;
+    margin: 20px;
     padding: 20px 20px 0 20px;
     box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
 }