From e774a80cb7ceabe65f75deedc8da5d300bee9bf2 Mon Sep 17 00:00:00 2001 From: Vishrut Bezbarua Date: Sun, 22 Dec 2024 15:34:32 +0100 Subject: [PATCH] Create styles.css --- assets/styles.css | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 assets/styles.css diff --git a/assets/styles.css b/assets/styles.css new file mode 100644 index 0000000..ec1dbef --- /dev/null +++ b/assets/styles.css @@ -0,0 +1,9 @@ +/* assets/css/styles.css */ + +/* A simple container class with margins and a max width */ +.main-container { + margin: 2rem auto; /* 2rem margin top/bottom, auto left/right */ + max-width: 900px; /* or any width you want */ + padding: 1rem; /* adds some space around content inside the container */ + background-color: #ffffff; /* optional background color if desired */ +}