Jump to content

MediaWiki:Common.css: Difference between revisions

From Adaris
No edit summary
No edit summary
Line 28: Line 28:
   border-radius: 5px;
   border-radius: 5px;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
/* Styles for visual separation */
.explore-more, .more-links {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px;
  background-color: #f0f0f0;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
}
.explore-more {
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
}
.more-links {
  border: 1px solid #ddd;
}
}

Revision as of 20:07, 31 August 2024

/* General styles for the main page */
body.page-Main_Page {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

h2 {
  color: #333;
  margin-top: 20px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
}

ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
}

.gallery {
  margin-top: 20px;
  margin-bottom: 20px;
}

.gallery img {
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Styles for visual separation */
.explore-more, .more-links {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px;
  background-color: #f0f0f0;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
}

.explore-more {
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
}

.more-links {
  border: 1px solid #ddd;
}