aboutsummaryrefslogtreecommitdiff
path: root/public/css
diff options
context:
space:
mode:
authorBobby <[email protected]>2022-06-02 21:29:41 +0530
committerBobby <[email protected]>2022-06-02 21:29:41 +0530
commitbbf289505ff886ecf0a691fb772c0f8174e01ce0 (patch)
tree6c3e7037d6ad84a1914a85e8658b4939a503c105 /public/css
parentd726492637ae42e508b3a354a32ac0140e2a95f3 (diff)
downloadthatcomputerscientist-bbf289505ff886ecf0a691fb772c0f8174e01ce0.tar.xz
thatcomputerscientist-bbf289505ff886ecf0a691fb772c0f8174e01ce0.zip
Basic Under Construction Page
Diffstat (limited to 'public/css')
-rw-r--r--public/css/main.css39
1 files changed, 39 insertions, 0 deletions
diff --git a/public/css/main.css b/public/css/main.css
new file mode 100644
index 00000000..874a996c
--- /dev/null
+++ b/public/css/main.css
@@ -0,0 +1,39 @@
+/* making a sidebar layout with 20% sidebar */
+body {
+ display: inline-flex;
+ flex-direction: row;
+ flex-wrap: wrap;
+ min-height: calc(100vh - 16px);
+ background-color: #fafafa;
+ padding: 0;
+}
+
+.sidebar {
+ background-color: rgb(162, 201, 255);
+ padding: 20px;
+ overflow-x: hidden;
+ overflow-y: auto;
+ border: 1px solid #191919;
+}
+
+.main {
+ flex: 1;
+ padding: 20px;
+ overflow-x: hidden;
+ overflow-y: auto;
+}
+
+.title:visited {
+ color: #000;
+}
+
+.title > h1 {
+ font-size: 1.2rem;
+ font-weight: bold;
+}
+
+.alert {
+ background-color: rgb(255, 202, 162);
+ padding: 20px;
+ border: 1px solid #191919;
+}