Jump to content

MediaWiki:Common.css

From knowlepedia

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* CSS placed here will be applied to all skins */
#mp-topbanner div[style*="text-align:center;"] {
  transition: transform 0.2s ease;
}
#mp-topbanner div[style*="text-align:center;"]:hover {
  transform: scale(1.02);
}

.MediaWiki:Common.css{
   margin-left:0;
   margin-right:0;
}

#scrollable-articles {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#scrollable-articles::-webkit-scrollbar {
  display: none;
}


<!--
<style>
@keyframes scrollAuto {
  0%   { scroll-behavior:smooth; scroll-left: 0; }
  14%  { scroll-left: 320px; }
  28%  { scroll-left: 640px; }
  42%  { scroll-left: 960px; }
  56%  { scroll-left: 1280px; }
  70%  { scroll-left: 1600px; }
  84%  { scroll-left: 1920px; }
  100% { scroll-left: 0; }
}

#scrollable-biographies {
  animation: scrollAuto 21s linear infinite;
}
</style>
-->


/* CreateNewBiographyBox styles */
#newArticleTitle {
  width: 90%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #96E072;
  border-radius: 5px;
  margin-bottom: 15px;
}

#createButton {
  background-color: #008080;
  color: #FFA542;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.create-box-container {
  background-color: #00FFFF;
  padding: 20px;
  border-radius: 10px;
  width: 400px;
  margin: auto;
  text-align: center;
}



.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  box-sizing: border-box;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marqueeScroll 40s linear infinite;
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-content > div {
  display: inline-block;
  vertical-align: top;
  margin-right: 30px;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}


.bioContent{
   display: -webkit-box;
  -webkit-line-clamp: 2;       /* Limit to 2 lines */
  -webkit-box-orient: vertical;
   overflow: hidden;
   text-overflow: ellipsis;
   border:2px solid black; 
   height:220px; 
   width:100%; 
   margin-bottom:10px
}


/* Hide 'View source' tab for all non-admins */
#ca-viewsource {
  display: none !important;
}