Last active
December 29, 2021 10:53
-
-
Save BorisAnthony/ded06c6ce8c48cbafb38fe36145c6d8b 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
/* ------------------------------- | |
This is a custom CSS to override the styling on | |
https://nftbiker.xyz/follow | |
Use an extension like Stylish on Chrome or Firefox, create a new "style" and paste this in. | |
For me it only works if you set the "Applies to" URL to the full one including the wallet you are following. | |
WARNING: This actually hides a few little bits of functionality I never found useful. | |
These include: | |
- textfile input for following multiple wallets | |
- the whole right column ("collection") | |
- the checkboxes for multiple project minting | |
- the shopping cart icon | |
If you want to unhide them, look for the "display:none;" directives below. | |
------------------------------- | |
If you enjoy this, please drop a tip to | |
tz1gis9mAxtP9JVYVL2RmgvC3q96qfJ6jRwu | |
Thank you. | |
--------------------------------- */ | |
*, body { | |
font-family: -apple-system !important; | |
} | |
#result>div>div:nth-child(2) { | |
display:none; | |
} | |
#result>div>div:nth-child(1) { | |
width:100% !important; | |
} | |
#input label, #input #load { | |
display:none !important; | |
} | |
#result>div>div:nth-child(1)>h2 { | |
margin: 0 0 2em; | |
font-size: 240%; | |
} | |
.subtitle { | |
font-weight: 300; | |
} | |
#input { | |
opacity: .5; | |
} | |
div.nft { | |
border: none; | |
margin-bottom: 4em; | |
padding-bottom: 8em; | |
border-bottom: 1px solid #666; | |
} | |
.infos { | |
font-weight: 100; | |
} | |
.infos b { | |
font-weight: 600; | |
font-size: 1.6em; | |
display:block; | |
margin-bottom: .1em; | |
} | |
.infos b a { | |
text-decoration:none; | |
} | |
.infos br { | |
display: none; | |
} | |
.infos .platform { | |
display:none; | |
} | |
.infos .trx { | |
text-align:right; | |
font-size: 80%; | |
} | |
.media_container .objkt_id { | |
display:block; | |
top:0; | |
} | |
.media { | |
border-top: none; | |
} | |
.cart_icon input, .cart_icon .label { | |
display:none; | |
} | |
.media_container .shopping { | |
opacity:1; | |
position:inherit; | |
border-top:none; | |
margin-top: 1em; | |
} | |
a.button.primary { | |
background-color: #333; | |
color: #fff; | |
font-weight:200; | |
} | |
.cart_icon, | |
.cart_icon .quantity2, | |
.cart_icon .quantity2.right, | |
#swap .transactions:hover { | |
all: revert; | |
} | |
.cart_icon { | |
display:block; | |
float:right; | |
margin:10px 5px 0 0; | |
font-weight:100; | |
} | |
.shopping .flagged { | |
display: block; | |
width: 100%; | |
height: 100%; | |
font-size: 1.5em; | |
padding: 5px 0 0 0; | |
background: #f00; | |
color: #fff; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment