MediaWiki:Common.css

From Symbol Copy
Revision as of 14:35, 9 April 2021 by Fk (talk | contribs) (Created page with "→‎CSS placed here will be applied to all skins: .symbol_div_to_copy{ display: block; border: 2px black solid; border-radius: 5px; padding: 5px; text-align: center;...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Note: After saving, 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)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* CSS placed here will be applied to all skins */
.symbol_div_to_copy{ 
	display: block; 
	border: 2px black solid; 
	border-radius: 5px; 
	padding: 5px;
	text-align: center;
	margin: 5px auto;
	background-color:white;
	width: 260px;
	font-size: 20px;
	font-weight: bold;
}
.symbol_div_to_copy:hover{
	border: 2px #158cba dashed; 
}
#copied_notif_msg{
    background-color:hsla(0,0%,100%,.8);
    
    font-weight:bolder;
    font-size:16pt;
    position:absolute;
    top:-5000px;
    padding:0px;
    margin:0px;
    color: #ff6550;
}

#copied_notif_msg.disappearing{
    -webkit-transition: visibility 2s, -webkit-transform 2s; /* Safari */
    transition:visibility 2s, transform 1s;
    transition-delay: 1.5s;
    transform: scale(0);
}