Hides all fed kads so that you can focus on just the poor hungry babes
Focused view for Kads by jellyworlddoesntexist

Details
Authorjellyworlddoesntexist
LicenseNo License
Categoryneopets.com
Created
Updated
Code size1.3 kB
Code checksum749cc75d
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
// ==UserStyle==
// @name Focused view for Kads
// @namespace https://clraik.com/forum/member.php?29359-jellyworlddoesntexist
// @version 1.0.0
// @description Hides all fed kads so that you can focus on just the poor hungry babes
// @author jellyworlddoesntexist
// @match https://www.neopets.com/games/kadoatery/
// ==/UserStyle==
@-moz-document url-prefix("https://www.neopets.com/games/kadoatery/") {
.content {
font-size: 0;
}
.content table {
display: flex;
gap: 20px;
align-items: center;
justify-content: center;
margin: 50px 20px;
}
.content table,
.content table * {
box-sizing: border-box;
}
.content :is(tr, tbody) {
display: contents;
}
.content td {
display: block;
flex-basis: 180px;
border-radius: 4px;
padding: 10px;
border: 0 !important;
}
#header,
.content td {
box-shadow: 0 1px 1px rgba(0,0,0,0.11),
0 2px 2px rgba(0,0,0,0.11),
0 4px 4px rgba(0,0,0,0.05),
0 6px 8px rgba(0,0,0,0.05),
0 8px 16px rgba(0,0,0,0.05);
}
#header {
border-radius: 0 0 5px 5px;
}
.content td[style*="#EDEDED"],
#footer {
display: none;
}
#main {
background: none;
border: 0;
}
body {
background: #ccc;
}
}