Last active
September 24, 2023 20:45
-
-
Save RealCyGuy/f25ed9cbcd360250fed4db2143ae8f93 to your computer and use it in GitHub Desktop.
The custom CSS I use for my itch.io profile here: https://realcyguy.itch.io/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.user_page_wrap .text_header h1 { | |
font-size: 60px; | |
color: #eaaaff; | |
background: #eaaaff; | |
background: linear-gradient(90deg, #d862ff, #00a8ff); | |
-webkit-background-clip: text; | |
-webkit-text-fill-color: transparent; | |
} | |
.user_page_wrap .user_links { | |
display: none; | |
} | |
.user_page_wrap .user_links a, | |
.user_page_wrap .user_profile a { | |
text-decoration: none; | |
position: relative; | |
z-index: 1; | |
color: white; | |
font-size: 24px; | |
margin-right: 24px; | |
} | |
.user_page_wrap .user_links a:hover, | |
.user_page_wrap .user_profile a:hover { | |
color: #f8bcff; | |
} | |
.user_page_wrap .user_links a:after, | |
.user_page_wrap .user_profile a:after { | |
content: ""; | |
width: 80%; | |
height: 6px; | |
background: #38439e; | |
background: linear-gradient(90deg, #38439e, #962c97); | |
position: absolute; | |
right: 0; | |
bottom: 3px; | |
border-radius: 5px; | |
z-index: -1; | |
} | |
.user_page_wrap .game_thumb { | |
transition: all 0.2s; | |
} | |
.user_page_wrap .game_thumb:hover { | |
transform: scale(1.05); | |
} | |
.user_page_wrap .game_genre { | |
display: none; | |
} | |
.user_page_wrap { | |
animation: move-bg 120s linear infinite; | |
} | |
@keyframes move-bg { | |
from { | |
background-position: 0 0; | |
} | |
to { | |
background-position: 100% 0; | |
} | |
} | |
.footer { | |
font-family: Montserrat, Lato, LatoExtended, sans-serif; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment