Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
No edit summary
No edit summary
Line 1: Line 1:
/* Background color for the body */
/* Set a modern background color for the body */
body {
body {
background-color: #f4f4f4;
background-color: #f4f4f4;
font-family: 'Roboto', sans-serif; /* Using modern font */
font-family: 'Roboto', sans-serif; /* Use a modern font */
}
}


/* Content styling with box shadow */
/* Improve the content box with a white background and shadow */
#content {
#content {
background-color: #ffffff;
background-color: #ffffff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 20px;
padding: 20px;
border-radius: 5px;
}
}


/* Update link styling to be modern */
/* Link colors */
a {
a {
color: #007acc;
color: #007acc;
text-decoration: none;
}

a:hover {
color: #005b99;
text-decoration: underline;
}
}


/* Styling for headers */
/* Header styling */
h1, h2, h3, h4, h5, h6 {
h1, h2, h3, h4, h5, h6 {
font-family: 'Roboto', sans-serif;
font-family: 'Roboto', sans-serif;
color: #333;
color: #333;
margin-bottom: 10px;
}
}


/* Customize sidebar appearance */
/* Sticky header styling (to be used with JS) */
#mw-panel {
background-color: #f8f9fa;
padding: 15px;
border-radius: 8px;
}

/* Sticky sidebar and header */
.sticky {
.sticky {
position: fixed;
position: fixed;
Line 33: Line 48:
}
}


/* Dropdown menu styling */
/* Sidebar menu item customization */
#mw-panel ul {
.dropdown {
position: relative;
list-style: none;
padding-left: 0;
}
}


#mw-panel li {
.dropdown:hover > ul {
display: block;
padding: 8px 0;
}
}


.dropdown ul {
#mw-panel a {
display: none;
color: #007acc;
text-decoration: none;
position: absolute;
background-color: #ffffff;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
}


#mw-panel a:hover {
.dropdown ul li {
list-style: none;
color: #005b99;
padding: 10px;
}

.dropdown ul li a {
text-decoration: none;
color: #007acc;
}
}

Revision as of 15:43, 21 October 2024

/* Set a modern background color for the body */
body {
  background-color: #f4f4f4;
  font-family: 'Roboto', sans-serif; /* Use a modern font */
}

/* Improve the content box with a white background and shadow */
#content {
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 5px;
}

/* Update link styling to be modern */
a {
  color: #007acc;
  text-decoration: none;
}

a:hover {
  color: #005b99;
  text-decoration: underline;
}

/* Header styling */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  color: #333;
  margin-bottom: 10px;
}

/* Customize sidebar appearance */
#mw-panel {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
}

/* Sticky sidebar and header */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Sidebar menu item customization */
#mw-panel ul {
  list-style: none;
  padding-left: 0;
}

#mw-panel li {
  padding: 8px 0;
}

#mw-panel a {
  color: #007acc;
  text-decoration: none;
}

#mw-panel a:hover {
  color: #005b99;
}