url chnages

This commit is contained in:
govardhan
2025-07-04 15:03:04 +05:30
parent faadd4e38d
commit 1c47d19842
1414 changed files with 15450 additions and 108 deletions

26
site/css/custom.css Normal file
View File

@ -0,0 +1,26 @@
/* Reduce sidebar width and padding */
.wm-nav {
width: 200px; /* Adjust to your preferred sidebar width */
padding: 10px; /* Reduce padding */
margin-left: 10px; /* Reduce left margin */
}
/* Expand main content area */
.wm-content {
max-width: 90%; /* Use more screen width */
margin: 0 auto; /* Center content with minimal margins */
padding: 15px; /* Reduce padding */
}
/* Ensure the container uses full width */
.wm-container {
max-width: 100%; /* Remove restrictive container width */
margin: 0; /* Remove container margins */
}
/* Optional: Adjust for larger screens */
@media (min-width: 1200px) {
.wm-content {
max-width: 1200px; /* Cap content width on very wide screens */
}
}