Difference between revisions of "MediaWiki:Common.css"

From Symbol Copy
Line 72: Line 72:
 
h1#firstHeading{
 
h1#firstHeading{
 
font-family: Arial,"Source Sans Pro",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
 
font-family: Arial,"Source Sans Pro",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
 +
}
 +
 +
.emojiblock{
 +
border-radius: .5rem;
 +
border-radius: .5rem;
 +
box-sizing: border-box;
 +
width: calc((100% - 10rem)/ 3);
 +
list-style-type: none;
 +
margin-right: 2rem;
 +
margin-bottom: 1rem;
 +
box-shadow: 0 2px 4px #9e9e9e;
 +
background-color: #fff;
 +
transition: all 150ms ease-out;
 +
display:inline-block;
 +
cursor: pointer;
 +
padding: 4px;
 +
}
 +
.emojiblock pre{
 +
padding: 0px;
 +
margin:0px;
 +
}
 +
.emoji_container{
 +
height: 100%;
 +
    border-radius: .5rem;
 +
    color: #000;
 +
    /*font-size: 2rem;*/
 +
    display: -webkit-flex;
 +
    display: -ms-flexbox;
 +
    display: flex;
 +
    -webkit-align-items: center;
 +
    -ms-flex-align: center;
 +
    align-items: center;
 +
    text-decoration: none;
 +
    overflow: hidden;
 +
}
 +
.emoji_value{
 +
font-size: 4rem;
 +
    line-height: 1.25;
 +
    margin-right: 1rem;
 +
    font-family: Arial,"Source Sans Pro",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
 +
}
 +
h1#firstHeading, #wpTextbox1{
 +
font-family: Arial,"Source Sans Pro",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
 +
}
 +
.emoji_value{
 +
float:left;
 +
}
 +
.emoji_desc{
 +
float:left;
 
}
 
}

Revision as of 14:11, 23 April 2021

/* 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);
}

.symbol-unicode .data {
    background: #b7657b;
    color: #fff;
    padding: 1px 3px;
}

.symbol-html .data {
    background: #78c4d4;
    color: #fff;
    padding: 1px 3px;
}

.symbol-css .data {
    background: #606c38;
    color: #fff;
    padding: 1px 3px;
}

#p-logo-text a{
	font-size: 1.6em;
}
.symbol_info td {
    border-bottom: solid 1px #d5d3d4;
    padding-right: 10px;
    height: 32px;
    vertical-align: middle;
    line-height: 19px;
}

.sidebar-ads{
	margin-top: 16px;
}
.adsbygoogle{
	text-align: center;
	margin: 2px auto;
}
h1#firstHeading{
	font-family: Arial,"Source Sans Pro",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}

.emojiblock{
	border-radius: .5rem;
	border-radius: .5rem;
	box-sizing: border-box;
	width: calc((100% - 10rem)/ 3);
	list-style-type: none;
	margin-right: 2rem;
	margin-bottom: 1rem;
	box-shadow: 0 2px 4px #9e9e9e;
	background-color: #fff;
	transition: all 150ms ease-out;
	display:inline-block;
	cursor: pointer;
	padding: 4px;
}
.emojiblock pre{
	padding: 0px;
	margin:0px;
}
.emoji_container{
	height: 100%;
    border-radius: .5rem;
    color: #000;
    /*font-size: 2rem;*/
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    overflow: hidden;
}
.emoji_value{
	font-size: 4rem;
    line-height: 1.25;
    margin-right: 1rem;
    font-family: Arial,"Source Sans Pro",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
h1#firstHeading, #wpTextbox1{
	font-family: Arial,"Source Sans Pro",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
.emoji_value{
	float:left;
}
.emoji_desc{
	float:left;
}