741 lines
18 KiB
CSS
741 lines
18 KiB
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
outline-style: none;
|
|
user-select: none;
|
|
}
|
|
|
|
html, body {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
html {
|
|
scrollbar-color: #4a3650 #111;
|
|
}
|
|
|
|
/* an attempt to replicate scrollbar-color for chromosome */
|
|
::-webkit-scrollbar {
|
|
width: 6px;
|
|
background-color: #111;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: #4a3650;
|
|
}
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background-color: #5b4761;
|
|
}
|
|
::-webkit-scrollbar-thumb:active {
|
|
background-color: #6c5872;
|
|
}
|
|
|
|
body {
|
|
background-color: #111;
|
|
color: #fff;
|
|
font: 12px/20px Tahoma, Geneva, 'Dejavu Sans', Arial, Helvetica, sans-serif;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.header, .footer { flex: 0 0 auto; }
|
|
.container { flex: 1 1 auto; }
|
|
|
|
.header {
|
|
width: 100%;
|
|
height: 200px;
|
|
overflow: hidden;
|
|
}
|
|
@media (max-width: 700px) {
|
|
.header { height: auto; }
|
|
}
|
|
.index .header {
|
|
height: 50vh;
|
|
}
|
|
.fullscreen-header .header {
|
|
height: 100%;
|
|
}
|
|
.header-background {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
left: 0;
|
|
overflow: hidden;
|
|
}
|
|
.header-background img {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
filter: blur(20px) brightness(80%);
|
|
transform: scale(1.2);
|
|
opacity: 1;
|
|
transition: opacity .5s;
|
|
}
|
|
.header-foreground {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
justify-content: space-between;
|
|
align-items: flex-end;
|
|
padding: 10px;
|
|
}
|
|
@media (max-width: 700px) {
|
|
.header-foreground {
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
.index .header-foreground {
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
flex-direction: column;
|
|
}
|
|
.header-logo {
|
|
font-family: 'Electrolize', Verdana, 'Dejavu Sans', Arial, Helvetica, sans-serif;
|
|
font-size: 3em;
|
|
line-height: 1.2em;
|
|
filter: drop-shadow(0 1px 5px #000);
|
|
color: transparent;
|
|
text-decoration: none;
|
|
display: flex;
|
|
flex: 0 0 auto;
|
|
}
|
|
.index .header-logo {
|
|
font-size: 5em;
|
|
}
|
|
.header-flash {
|
|
background-image: linear-gradient(180deg, #eee 0%, #ddd 50%, #ccc 50%, #aaa 100%);
|
|
background-clip: text;
|
|
-webkit-background-clip: text;
|
|
}
|
|
.header-wave {
|
|
background-image: linear-gradient(0deg, #281430 0%, #392540 50%, #4a3650 50%, #6c5871 100%);
|
|
-webkit-background-clip: text;
|
|
}
|
|
.header-menu {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex: 0 0 auto;
|
|
}
|
|
.header-menu a {
|
|
display: block;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
font-size: 1.5em;
|
|
line-height: 1.2em;
|
|
margin: 0 2px;
|
|
padding: 5px 10px;
|
|
border-radius: 5px;
|
|
text-shadow: 0 1px 5px #000;
|
|
transition: background-color .1s;
|
|
}
|
|
.header-menu a:hover,
|
|
.header-menu a:focus {
|
|
background-color: rgba(255, 255, 255, .1);
|
|
}
|
|
.header-menu a:active {
|
|
background-color: rgba(127, 127, 127, .1);
|
|
}
|
|
@media (max-width: 800px) {
|
|
.header-menu {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
}
|
|
.header-menu a {
|
|
text-align: center;
|
|
min-width: 150px;
|
|
margin: 2px;
|
|
padding: 10px 0;
|
|
}
|
|
.header-menu :first-child {
|
|
display: none;
|
|
}
|
|
}
|
|
@media (max-width: 480px) {
|
|
.header-menu { grid-template-columns: 1fr 1fr; }
|
|
}
|
|
@media (max-width: 320px) {
|
|
.header-menu { grid-template-columns: 1fr; }
|
|
}
|
|
|
|
.footer {}
|
|
.footer-text {
|
|
opacity: .2;
|
|
font-size: .9em;
|
|
text-align: center;
|
|
max-width: 1200px;
|
|
margin: 5px auto;
|
|
}
|
|
|
|
.index {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
max-height: 100vh;
|
|
overflow: hidden;
|
|
}
|
|
@media(max-width: 900px) { .index {
|
|
max-height: initial;
|
|
overflow: auto;
|
|
} }
|
|
|
|
.index-menu {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
background-image: linear-gradient(0deg, #111 0%, #222 50%, #333 50%, #555 100%);
|
|
flex: 0 0 auto;
|
|
box-shadow: 0 0 1em rgba(0, 0, 0, .8);
|
|
}
|
|
.index-menu a {
|
|
display: block;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
font-size: 1.5em;
|
|
line-height: 1.2em;
|
|
padding: 5px 10px;
|
|
transition: background-color .1s;
|
|
}
|
|
.index-menu a:hover,
|
|
.index-menu a:focus {
|
|
background-color: rgba(255, 255, 255, .1);
|
|
}
|
|
.index-menu a:active {
|
|
background-color: rgba(127, 127, 127, .1);
|
|
}
|
|
@media (max-width: 600px) {
|
|
.index-menu {
|
|
flex-wrap: wrap;
|
|
}
|
|
.index-menu a {
|
|
min-width: 200px;
|
|
margin: 2px;
|
|
padding: 10px;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
.socials {
|
|
max-width: 1100px;
|
|
width: 100%;
|
|
margin: 10px auto;
|
|
padding: 0 15px;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
justify-content: space-evenly;
|
|
column-gap: 10px;
|
|
}
|
|
@media(max-width: 980px) { .socials { grid-template-columns: 1fr 1fr; } }
|
|
@media(max-width: 640px) { .socials { grid-template-columns: 1fr; } }
|
|
.social {
|
|
width: 100%;
|
|
margin: 5px 0;
|
|
filter: drop-shadow(0 1px 5px #000);
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 5px;
|
|
}
|
|
.index-contact .social {
|
|
margin: 10px 0;
|
|
}
|
|
.social-background {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-image: linear-gradient(0deg, #1118 0%, #2228 50%, #3338 50%, #5558 100%);
|
|
transform: skew(-15deg);
|
|
}
|
|
.social:active .social-background {
|
|
background-image: linear-gradient(0deg, #1118 0%, #2228 50%, #3338 50%, #3338 100%);
|
|
}
|
|
.social-icon {
|
|
width: 25px;
|
|
height: 25px;
|
|
margin: 3px 4px 2px 8px;
|
|
pointer-events: none;
|
|
}
|
|
.social-content {
|
|
margin: 2px 5px;
|
|
pointer-events: none;
|
|
}
|
|
.social-name {
|
|
font-size: .9em;
|
|
line-height: 1.5em;
|
|
}
|
|
.social-handle {
|
|
font-size: 1.5em;
|
|
line-height: 1.3em;
|
|
font-family: 'Electrolize', Verdana, 'Dejavu Sans', Arial, Helvetica, sans-serif;
|
|
user-select: text;
|
|
}
|
|
.social-twitter .social-background { background-color: #1da1f2; }
|
|
.social-youtube .social-background { background-color: #ff0000; }
|
|
.social-flashii .social-background { background-color: #8559a5; }
|
|
.social-github .social-background { background-color: #222222; }
|
|
.social-twitch .social-background { background-color: #6441a4; }
|
|
.social-steam .social-background { background-color: #2c2e35; }
|
|
.social-osu .social-background { background-color: #ff66aa; }
|
|
.social-email .social-background { background-color: #4a3650; }
|
|
.social-lastfm .social-background { background-color: #ba0000; }
|
|
.social-nin-sw .social-background { background-color: #e60012; }
|
|
.social-nin-3ds .social-background { background-color: #ce171f; }
|
|
.social-nin-wiiu .social-background { background-color: #00acca; }
|
|
.social-paypal .social-background { background-color: #009cde; }
|
|
.social-patreon .social-background { background-color: #f86754; }
|
|
|
|
.index-featured {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
flex: 1 1 auto;
|
|
overflow: hidden;
|
|
margin: 5px auto;
|
|
padding: 0 10px;
|
|
margin-bottom: 0;
|
|
column-gap: 10px;
|
|
row-gap: 10px;
|
|
width: 100%;
|
|
max-width: 1500px;
|
|
}
|
|
@media(max-width: 900px) { .index-featured { grid-template-columns: 1fr; overflow: visible; } }
|
|
.index-feature {
|
|
overflow: auto;
|
|
scrollbar-width: thin;
|
|
}
|
|
.index-feature-header {
|
|
border-bottom: 1px solid #333;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.index-feature-header-link {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.index-feature-header-title {
|
|
font-family: 'Electrolize', Verdana, 'Dejavu Sans', Arial, Helvetica, sans-serif;
|
|
font-size: 2em;
|
|
line-height: 1.5em;
|
|
pointer-events: none;
|
|
flex: 1 1 auto;
|
|
}
|
|
.index-feature-header-more {
|
|
pointer-events: none;
|
|
flex: 0 0 auto;
|
|
margin: 0 5px;
|
|
padding: 2px 8px;
|
|
border-radius: 2em;
|
|
font-size: .9em;
|
|
line-height: 1.5em;
|
|
background-color: #1a1a1a;
|
|
transition: background-color .2s;
|
|
}
|
|
.index-feature-header-more::after {
|
|
content: " »";
|
|
}
|
|
.index-feature-header:focus-within .index-feature-header-more,
|
|
.index-feature-header:hover .index-feature-header-more,
|
|
.index-feature-header-more:focus {
|
|
background-color: #2a2a2a;
|
|
}
|
|
.index-feature-header:active .index-feature-header-more,
|
|
.index-feature-header-more:active {
|
|
background-color: #222;
|
|
}
|
|
|
|
.index-contact {
|
|
padding: 5px 15px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.index-blog {}
|
|
.index-blog-post {
|
|
margin: 5px;
|
|
padding: 2px 5px;
|
|
background: #222;
|
|
box-shadow: 0 2px 5px #000;
|
|
}
|
|
.index-blog-post-link {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.index-blog-post-header {
|
|
display: flex;
|
|
align-items: center;
|
|
pointer-events: none;
|
|
border-bottom: 1px solid #333;
|
|
}
|
|
.index-blog-post-title {
|
|
font-family: 'Electrolize', Verdana, 'Dejavu Sans', Arial, Helvetica, sans-serif;
|
|
flex: 1 1 auto;
|
|
font-size: 1.5em;
|
|
line-height: 1.5em;
|
|
}
|
|
.index-blog-post-published {
|
|
flex: 0 1 auto;
|
|
font-size: .9em;
|
|
line-height: 1.5em;
|
|
opacity: .5;
|
|
padding-bottom: 2px;
|
|
}
|
|
.index-blog-post-content {
|
|
pointer-events: none;
|
|
max-height: 70px;
|
|
overflow: hidden;
|
|
}
|
|
.index-blog-post-content a {
|
|
pointer-events: initial;
|
|
color: inherit;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.header-now-playing {
|
|
max-height: 60px;
|
|
min-width: 300px;
|
|
max-width: 500px;
|
|
height: 100%;
|
|
background-image: linear-gradient(0deg, #111c 0%, #222c 50%, #333c 50%, #555c 100%);
|
|
box-shadow: 0 2px 1em #000;
|
|
border-radius: 5px;
|
|
overflow: hidden;
|
|
align-items: center;
|
|
bottom: 0;
|
|
padding: 5px;
|
|
display: grid;
|
|
grid-template-columns: 25px 50px 1fr;
|
|
column-gap: 5px;
|
|
transition: bottom .5s, width .2s, max-height .5s, padding .2s;
|
|
}
|
|
.header-now-playing-hidden {
|
|
bottom: -80px;
|
|
max-height: 0;
|
|
padding: 0;
|
|
}
|
|
.header-now-playing-icon img {
|
|
vertical-align: middle;
|
|
}
|
|
.header-now-playing-cover {
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
.header-now-playing-cover img {
|
|
width: 100%;
|
|
height: 100%;
|
|
vertical-align: middle;
|
|
object-fit: cover;
|
|
}
|
|
.header-now-playing-details {
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
}
|
|
.header-now-playing-details a {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
transition: width .2s;
|
|
}
|
|
.header-now-playing-details a:hover,
|
|
.header-now-playing-details a:focus {
|
|
text-decoration: underline;
|
|
}
|
|
.header-now-playing-title {
|
|
font-size: 1.2em;
|
|
}
|
|
.header-now-playing-title,
|
|
.header-now-playing-artist {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.index-project {
|
|
margin: 5px;
|
|
background-image: linear-gradient(180deg, #555c 0, #333c 32px, #222c 32px, #111c 100%);
|
|
box-shadow: 0 2px 5px #000;
|
|
border-radius: 5px;
|
|
overflow: hidden;
|
|
}
|
|
.index-project-anchor {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.index-project-content {
|
|
margin: 5px 8px;
|
|
margin-bottom: 0;
|
|
pointer-events: none;
|
|
}
|
|
.index-project-name {
|
|
font-family: 'Electrolize', Verdana, 'Dejavu Sans', Arial, Helvetica, sans-serif;
|
|
flex: 1 1 auto;
|
|
font-size: 1.5em;
|
|
line-height: 1.5em;
|
|
}
|
|
.index-project-summary {
|
|
margin-top: 2px;
|
|
}
|
|
.index-project-links {
|
|
display: flex;
|
|
pointer-events: none;
|
|
margin: 0 3px;
|
|
}
|
|
.index-project-link {
|
|
pointer-events: initial;
|
|
margin: 4px 1px;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
min-width: 100px;
|
|
padding: 2px 8px;
|
|
border-radius: 4px;
|
|
transition: background-color .2s;
|
|
}
|
|
.index-project-link:hover,
|
|
.index-project-link:focus {
|
|
background-color: #fff2;
|
|
}
|
|
.index-project-link:active {
|
|
background-color: #fff1;
|
|
}
|
|
|
|
|
|
.section {
|
|
padding: 0 15px;
|
|
}
|
|
.section:not(:first-child) {
|
|
margin-top: 30px;
|
|
}
|
|
.section-content {
|
|
max-width: 1100px;
|
|
margin: 10px auto;
|
|
padding: 10px 20px;
|
|
filter: drop-shadow(0 1px 5px #000);
|
|
}
|
|
.section-background {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-image: linear-gradient(0deg, #111 0%, #222 50%, #333 50%, #555 100%);
|
|
transform: skew(-15deg);
|
|
}
|
|
.section-content h1 {
|
|
font-family: 'Electrolize', Verdana, 'Dejavu Sans', Arial, Helvetica, sans-serif;
|
|
font-size: 2em;
|
|
line-height: 1em;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.project {
|
|
padding: 0 10px;
|
|
/*background-color: var(--project-colour);
|
|
background-image: linear-gradient(#111e, #111e);
|
|
overflow: hidden;*/
|
|
}
|
|
.project-content {
|
|
max-width: 1100px;
|
|
width: 100%;
|
|
margin: 1em auto;
|
|
overflow: hidden;
|
|
background-color: var(--project-colour);
|
|
background-image: linear-gradient(180deg, #555c 0, #333c 38px, #222c 38px, #111c 100%);
|
|
box-shadow: 0 2px 1em #000;
|
|
border-radius: 5px;
|
|
}
|
|
.project-languages {
|
|
font-size: 0;
|
|
line-height: 0;
|
|
display: inline-block;
|
|
font-family: Tahoma, Geneva, 'Dejavu Sans', Arial, Helvetica, sans-serif;
|
|
margin-left: 4px;
|
|
}
|
|
.project-language {
|
|
font-size: 11px;
|
|
line-height: 18px;
|
|
display: inline-block;
|
|
border-left: 4px solid var(--language-colour);
|
|
background-color: var(--language-colour);
|
|
background-image: linear-gradient(90deg, #1118, #111a);
|
|
border-radius: 4px;
|
|
overflow: hidden;
|
|
padding: 0 4px;
|
|
margin: 0 4px;
|
|
box-shadow: 0 0 1px var(--language-colour);
|
|
}
|
|
.project-details {
|
|
margin: 10px;
|
|
margin-bottom: 0;
|
|
}
|
|
.project-details h2 {
|
|
font-family: 'Electrolize', Verdana, 'Dejavu Sans', Arial, Helvetica, sans-serif;
|
|
font-size: 2em;
|
|
line-height: 1em;
|
|
font-weight: 400;
|
|
margin-bottom: 5px;
|
|
}
|
|
.project-details p {
|
|
font-size: .9em;
|
|
line-height: 1.8em;
|
|
}
|
|
.project-details .project-details-summary {
|
|
font-size: 1.2em;
|
|
line-height: 1.5em;
|
|
}
|
|
.project-links {
|
|
display: flex;
|
|
margin: 0 3px;
|
|
}
|
|
.project-link {
|
|
margin: 4px 1px;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
min-width: 100px;
|
|
padding: 2px 8px;
|
|
border-radius: 4px;
|
|
transition: background-color .2s;
|
|
}
|
|
.project-link:hover,
|
|
.project-link:active {
|
|
background-color: #fff2;
|
|
}
|
|
.project-link:focus {
|
|
background-color: #fff1;
|
|
}
|
|
|
|
.etcetera-item {
|
|
max-width: 1100px;
|
|
margin: 10px auto;
|
|
padding: 0 15px;
|
|
filter: drop-shadow(0 1px 5px #000);
|
|
}
|
|
.etcetera-item-link {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #393939;
|
|
background-image: linear-gradient(0deg, #1118 0%, #2228 50%, #3338 50%, #5558 100%);
|
|
border-radius: 5px;
|
|
overflow: hidden;
|
|
transition: background-color .2s;
|
|
}
|
|
.etcetera-item-link:hover,
|
|
.etcetera-item-link:focus {
|
|
background-color: #555;
|
|
}
|
|
.etcetera-item-link:active {
|
|
background-color: #222;
|
|
}
|
|
.etcetera-item-content {
|
|
max-width: 1100px;
|
|
margin: 0 auto;
|
|
padding: 10px 12px;
|
|
}
|
|
.etcetera-item-content h2 {
|
|
font-family: 'Electrolize', Verdana, 'Dejavu Sans', Arial, Helvetica, sans-serif;
|
|
font-size: 1.5em;
|
|
line-height: 1.2em;
|
|
font-weight: 400;
|
|
pointer-events: none;
|
|
}
|
|
.etcetera-item-content p {
|
|
font-size: .9em;
|
|
line-height: 1.4em;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.http-error {
|
|
text-align: center;
|
|
}
|
|
.http-error-head {
|
|
font-family: 'Electrolize', Verdana, 'Dejavu Sans', Arial, Helvetica, sans-serif;
|
|
font-size: 2.5em;
|
|
line-height: 2em;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.related-site {
|
|
max-width: 1100px;
|
|
margin: 10px auto;
|
|
padding: 0 15px;
|
|
filter: drop-shadow(0 1px 5px #000);
|
|
}
|
|
.related-site-link {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #393939;
|
|
background-image: linear-gradient(0deg, #1118 0%, #2228 50%, #3338 50%, #5558 100%);
|
|
border-radius: 5px;
|
|
overflow: hidden;
|
|
transition: background-color .2s;
|
|
}
|
|
.related-site-link:hover,
|
|
.related-site-link:focus {
|
|
background-color: #555;
|
|
}
|
|
.related-site-link:active {
|
|
background-color: #222;
|
|
}
|
|
.related-site-content {
|
|
max-width: 1100px;
|
|
margin: 0 auto;
|
|
padding: 10px 12px;
|
|
}
|
|
.related-site-content h2 {
|
|
font-family: 'Electrolize', Verdana, 'Dejavu Sans', Arial, Helvetica, sans-serif;
|
|
font-size: 1.5em;
|
|
line-height: 1.2em;
|
|
font-weight: 400;
|
|
pointer-events: none;
|
|
}
|
|
.related-site-content p {
|
|
font-size: .9em;
|
|
line-height: 1.4em;
|
|
pointer-events: none;
|
|
}
|
|
|
|
/** SPRITE SHIT START **/
|
|
.fmi {
|
|
background-image: url('sprite.png');
|
|
width: 25px;
|
|
height: 25px;
|
|
background-size: 375px 25px;
|
|
}
|
|
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
|
|
.fmi { background-image: url('sprite@2x.png'); background-size: 375px 25px; }
|
|
}
|
|
.fmi.fmi-email { background-position: 375px 0px; }
|
|
.fmi.fmi-flashii { background-position: 350px 0px; }
|
|
.fmi.fmi-github { background-position: 325px 0px; }
|
|
.fmi.fmi-lastfm { background-position: 300px 0px; }
|
|
.fmi.fmi-music { background-position: 275px 0px; }
|
|
.fmi.fmi-n3ds { background-position: 250px 0px; }
|
|
.fmi.fmi-osu { background-position: 225px 0px; }
|
|
.fmi.fmi-patreon { background-position: 200px 0px; }
|
|
.fmi.fmi-paypal { background-position: 175px 0px; }
|
|
.fmi.fmi-steam { background-position: 150px 0px; }
|
|
.fmi.fmi-switch { background-position: 125px 0px; }
|
|
.fmi.fmi-twitch { background-position: 100px 0px; }
|
|
.fmi.fmi-twitter { background-position: 75px 0px; }
|
|
.fmi.fmi-wiiu { background-position: 50px 0px; }
|
|
.fmi.fmi-youtube { background-position: 25px 0px; }
|
|
/** SPRITE SHIT END **/
|