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 */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');
body {
background-color: #f4f4f4;
font-family: 'Roboto', sans-serif; /* Using modern font */
}

/* Content styling with box shadow */
#content {
background-color: #ffffff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 20px;
}

/* Link colors */
a {
color: #007acc;
}


/* Sidebar container */
/* Styling for headers */
h1, h2, h3, h4, h5, h6 {
#mw-panel {
font-family: 'Roboto', sans-serif;
background-color: #f8f8f8;
padding: 15px;
color: #333;
border: 1px solid #ddd;
border-radius: 4px;
}
}


/* Sticky header styling (to be used with JS) */
/* Sidebar section headings */
.sticky {
#mw-panel .portal .mw-portlet-heading {
font-size: 18px;
position: fixed;
font-weight: bold;
top: 0;
color: #444;
width: 100%;
margin-bottom: 10px;
z-index: 1000;
padding-bottom: 5px;
background-color: #fff;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
border-bottom: 1px solid #ddd;
}
}


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


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


#mw-panel ul li a {
.dropdown ul {
font-size: 16px;
display: none;
color: #007bff;
position: absolute;
background-color: #ffffff;
text-decoration: none;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
display: inline-flex;
align-items: center;
}
}


#mw-panel ul li a i {
.dropdown ul li {
margin-right: 8px;
list-style: none;
padding: 10px;
}
}


.dropdown ul li a {
/* Hover effect for links */
text-decoration: none;
#mw-panel ul li a:hover {
color: #007acc;
text-decoration: underline;
}
}

Revision as of 15:39, 21 October 2024

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

/* Content styling with box shadow */
#content {
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

/* Link colors */
a {
  color: #007acc;
}

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

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

/* Dropdown menu styling */
.dropdown {
  position: relative;
}

.dropdown:hover > ul {
  display: block;
}

.dropdown ul {
  display: none;
  position: absolute;
  background-color: #ffffff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown ul li {
  list-style: none;
  padding: 10px;
}

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