From f191683fe045b5a922fac68481ecef4f89c764e8 Mon Sep 17 00:00:00 2001 From: Jaydeep Yadav <64890504+Jaydeep-Yadav@users.noreply.github.com> Date: Sat, 9 Oct 2021 15:22:12 +0530 Subject: [PATCH] Create style.css --- Note Taking Web App/style.css | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Note Taking Web App/style.css diff --git a/Note Taking Web App/style.css b/Note Taking Web App/style.css new file mode 100644 index 00000000..8016f05f --- /dev/null +++ b/Note Taking Web App/style.css @@ -0,0 +1,24 @@ +*{ + user-select: none; +} + +.note{ + user-select: auto; +} +body{ + background: url(bg.jpg) fixed; +} +.container{ + margin-top: 100px; +} + +.navbar{ + overflow: hidden; + position: fixed; + top:0; + width:100%; + z-index: 1; +} +.container h1 { + color: white; +}