Template:SFV Button FAT/styles.css: Difference between revisions

Template page
No edit summary
No edit summary
 
(9 intermediate revisions by the same user not shown)
Line 1: Line 1:
.fatbtn {
.fatbtn {
   border: none;
   border: none;
color: white;
color: #c1c1c1;
text-align: center;
text-align: center;
        vertical-align: middle;
text-decoration: none;
text-decoration: none;
display: inline-block;
display: inline-block;
padding: 4px 8px 4px;
padding: 2px;
border-radius: 4px;
border-radius: 4px;
margin: 5px;
        filter: grayscale(1);
}
}


.fatbtn:hover {
.fatbtn:hover {
background-color: #3598DB;
background-color: #3598DB;
        color: white;
        filter: grayscale(0);
}
.fatbtn:hover:after {
        content: " Open in FAT";
}
}

Latest revision as of 19:00, 4 May 2021

.fatbtn {
  	border: none;
	color: #c1c1c1;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	padding: 2px;
	border-radius: 4px;
        filter: grayscale(1);
}

.fatbtn:hover {
	background-color: #3598DB;
        color: white;
        filter: grayscale(0);
}
.fatbtn:hover:after {
        content: " Open in FAT";
}