Skip to content

Instantly share code, notes, and snippets.

@0x00000FF
Created March 7, 2023 07:43
Show Gist options
  • Save 0x00000FF/c770dfc07e39757b719ab4057cdf5149 to your computer and use it in GitHub Desktop.
Save 0x00000FF/c770dfc07e39757b719ab4057cdf5149 to your computer and use it in GitHub Desktop.
#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");
}
@0x00000FF
Copy link
Author

Resources for Kurei Kei(Pronama-chan): https://kei.pronama.jp
Resources for Mikumo Conoha: https://conoha.mikumo.com/

@0x00000FF
Copy link
Author

0x00000FF commented Mar 7, 2023

Characters.razor:

<a href="https://kei.pronama.jp" id="pronamaChan" target="_blank">
    <i></i>    
</a>

<a href="https://conoha.mikumo.com/" id="mikumoChan" target="_blank">
    <i></i>
</a>

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!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment