Created
March 7, 2023 07:43
-
-
Save 0x00000FF/c770dfc07e39757b719ab4057cdf5149 to your computer and use it in GitHub Desktop.
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
#pronamaChan { | |
position: fixed; | |
bottom: 45px; | |
right: 120px; | |
opacity: .7; | |
z-index: 10; | |
} | |
#pronamaChan i { | |
display: block; | |
height: 200px; | |
width: 130px; | |
background: url("img/pronama-figure.png") no-repeat; | |
background-size: cover; | |
} | |
#pronamaChan i:hover { | |
background-image: url("img/pronama-figure-hover.png") | |
} | |
#mikumoChan { | |
position: fixed; | |
bottom: 45px; | |
right: 30px; | |
opacity: .8; | |
z-index: 10; | |
} | |
#mikumoChan i { | |
display: block; | |
height: 190px; | |
width: 130px; | |
background: url("img/conoha-figure.png") no-repeat; | |
background-size: cover; | |
} | |
#mikumoChan i:hover { | |
background-image: url("img/conoha-figure-hover.png"); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Characters.razor:
and you can use it as:
<Characters />
Don't forget to set the name of the css file above as
Characters.razor.css
when you use it on Razor!