diff --git a/css/contactus.css b/css/contactus.css index 5c042b26..608bac4d 100644 --- a/css/contactus.css +++ b/css/contactus.css @@ -1,6 +1,11 @@ body { font-family: 'Arial', sans-serif; background: linear-gradient(180deg, #FDD86C 8.1%, #FF7D1F 100%); + user-select: none; /* Disable text selection in all browsers */ + -webkit-user-select: none; /* Safari */ + -moz-user-select: none; /* Firefox */ + -ms-user-select: none; /* Internet Explorer/Edge */ + } @@ -217,4 +222,4 @@ margin-left: 190px; .container #comment{ margin-left:10px; -} \ No newline at end of file +} diff --git a/css/index.css b/css/index.css index 90b733de..537acff4 100644 --- a/css/index.css +++ b/css/index.css @@ -11,7 +11,12 @@ body { font-family: 'Poppins', sans-serif; background: #dcdcdc !important; overflow-x: hidden; + user-select: none; /* Disable text selection in all browsers */ + -webkit-user-select: none; /* Safari */ + -moz-user-select: none; /* Firefox */ + -ms-user-select: none; /* Internet Explorer/Edge */ } + /* Scrollbar */ ::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); diff --git a/css/login-signup.css b/css/login-signup.css index 9de25859..85eb420a 100644 --- a/css/login-signup.css +++ b/css/login-signup.css @@ -1,5 +1,11 @@ body { background: #f1f3f6; + user-select: none; /* Disable text selection in all browsers */ + -webkit-user-select: none; /* Safari */ + -moz-user-select: none; /* Firefox */ + -ms-user-select: none; /* Internet Explorer/Edge */ + + } #divB { @@ -154,4 +160,4 @@ body { .rightSignuppanal form{ width: 250px; } -} \ No newline at end of file +} diff --git a/css/styles.css b/css/styles.css index 26423e2f..483038ac 100644 --- a/css/styles.css +++ b/css/styles.css @@ -6,3 +6,10 @@ /* border: 1px solid red; */ } +body { + user-select: none; /* Disable text selection in all browsers */ + -webkit-user-select: none; /* Safari */ + -moz-user-select: none; /* Firefox */ + -ms-user-select: none; /* Internet Explorer/Edge */ +} +