New
Nov 27, 2019 9:10 PM
#401
Mirfak said: Apologies, that's my fault, the provided code is incorrect. I must have missed it when I last updated the forum post. This code (lines 63-64 of your CSS):I've been following the modifications and everything has been going well, but I'm just encountering a problem with the transparent item list part. … When I add this code, it makes the entire list items transparent. However, when I try to change the rgba it still doesn't make any changes to it at all. I have no idea if I missed a step or did something wrong, but would definitely appreciate some help with this. /* Background Image */ body { background-image: url(URLHERE) !important; } Should actually be this: /* Background Image */ body { --background: url(URLHERE); } You'll just need to remove the offending code and replace it with the new one. Hopefully that fixes it. :) I like your picture choices! |
Nov 27, 2019 9:32 PM
#402
Valerio_Lyndon said: Mirfak said: Apologies, that's my fault, the provided code is incorrect. I must have missed it when I last updated the forum post. This code (lines 63-64 of your CSS):I've been following the modifications and everything has been going well, but I'm just encountering a problem with the transparent item list part. … When I add this code, it makes the entire list items transparent. However, when I try to change the rgba it still doesn't make any changes to it at all. I have no idea if I missed a step or did something wrong, but would definitely appreciate some help with this. /* Background Image */ body { background-image: url(URLHERE) !important; } Should actually be this: /* Background Image */ body { --background: url(URLHERE); } You'll just need to remove the offending code and replace it with the new one. Hopefully that fixes it. :) I like your picture choices! Thank you so much for your help and kind words. ^_^ |
Dec 2, 2019 2:48 AM
#403
@Valerio_Lyndon : Thank you for your theme. I use it for my lists. ^_^ AnimeList : https://myanimelist.net/animelist/PergoPugnare?status=2 MangaList : https://myanimelist.net/mangalist/PergoPugnare?status=2 |
Jan 19, 2020 4:32 AM
#404
@valerio_lyndon Thanks so much for the theme and the explanation of how to do it. I had been struggling with doing customisation before but this was really clear and easy to follow :) |
🔥 🔥 🔥 . 阿良々木 暦, 傷 物 語 . 🔥 🔥 🔥 Build a man a fire and you'll warm him for a night but set a man on fire and you'll warm him for the rest of his life... - H E N D Y - |
Jan 19, 2020 4:47 AM
#405
I'm glad to hear it, I try my best! :) |
Jan 21, 2020 8:30 PM
#406
I've done a decent amount of customization with your theme and this is what it looks like right now: https://i.imgur.com/J7dDype.png The only other thing I really wanted to do was instead of having the glowing dot to represent the anime's status, but instead to make the image itself have a border with the appropriate color. I can think of two ways of doing this: making the dot have the same dimensions / location as the image and just make it transparent with a border, or by just giving the image a border itself. Unfortunately I don't know a lot of css so I'm having a little trouble moving forward. Here is my custom css I've added after the import so far: :root { /* Generic Colours */ --pbg: #ffa1d6; --bg: #fff; --bg-dark: #ddd; --text: #000; --text-h: #787878; --text-dim: #000; --text-dim-h: #787878; --text-dark: #000; --icon: #000; --accent: #4065ba; /* Button Colours */ --btn-bg: #ffa1d6; --btn-bg-h: #323232; --btn-head-bg-h: #1d439b; --btn-text-h: #fff; /* Header Colours */ --text-head: #9b9b9b; --text-head-h: #787878; /* Status Colours */ --watching: #2db039; --completed: #26448f; --onhold: #f1c83e; --dropped: #a12f31; --plantowatch: #c3c3c3; /* Single-Use Colours */ --cover-bg: #323232; --edit-btn: #d9d9d9; --checkmark: #ffa1d6; } .list-item { background: #ffc7e7 !important; /*border: solid 1px #000 !important;*/ border-radius: 10px !important; box-shadow: 0px 0px 3px 0px #333 !important; } .status.watching, .status.reading { box-shadow: 0px 0px 3px 0px var(--watching), 0px 0px 3px 0px var(--watching) !important; } .status.completed { box-shadow: 0px 0px 3px 0px var(--completed), 0px 0px 3px 0px var(--completed) !important; } .status.onhold { box-shadow: 0px 0px 3px 0px var(--onhold), 0px 0px 3px 0px var(--onhold) !important; } .status.dropped { box-shadow: 0px 0px 3px 0px var(--dropped), 0px 0px 3px 0px var(--dropped) !important; } .status.plantowatch, .status.plantoread { box-shadow: 0px 0px 3px 0px var(--plantowatch), 0px 0px 3px 0px var(--plantowatch) !important; } .data.status { width: 0.6% !important; padding-bottom: 0.6% !important; border-radius: 50% !important; left: 0.9% !important; position: relative !important; } #footer-block { background: var(--pbg) !important; } #footer-block:before { height: 0px !important; } #copyright { color: #fff !important; } .cover-block:before { height: 0px !important; } .status-menu:after { box-shadow: 0px 0px 5px 0px #333 !important; } .status-menu-container:after { height: 0px !important; } .data.image { padding-left: 1% !important; } |
Jan 21, 2020 10:17 PM
#407
qrmp00 said: You were on the right track, that's how I would do it as well. Here's an example of some functioning code. I added the border directly to the image since doing so generally reduces rendering issues as compared to overlaying the second element. https://i.imgur.com/J7dDype.png The only other thing I really wanted to do was instead of having the glowing dot to represent the anime's status, but instead to make the image itself have a border with the appropriate color. I can think of two ways of doing this: making the dot have the same dimensions / location as the image and just make it transparent with a border, or by just giving the image a border itself. Unfortunately I don't know a lot of css so I'm having a little trouble moving forward. .data.image { width: auto; height: auto; } .data.image a { border: 2px solid var(--bg); } .status.watching + .image a, .status.reading + .image a { border-color: var(--watching); } .status.completed + .image a { border-color: var(--completed); } .status.onhold + .image a { border-color: var(--onhold); } .status.dropped + .image a { border-color: var(--dropped); } .status.plantowatch + .image a, .status.plantoread + .image a { border-color: var(--plantowatch); } .data.status { display: none !important; } If the code doesn't work when you add it, removing the curly bracket you have on line 95 should fix it. Thanks for asking such a clear question. :) |
Valerio_LyndonJan 21, 2020 10:31 PM
Jan 22, 2020 7:17 AM
#408
Thanks, it seems to be working. I was reading about the + selector and how it works. It made me wonder if I could instead highlight the entire .data-item section instead, but it seems you can't really access parent elements through css. Any ideas? I'm happy with the current result so don't really worry about it, I was just asking if you knew something that was pretty simple. |
qrmp00Jan 22, 2020 7:30 AM
Jan 22, 2020 7:26 PM
#409
qrmp00 said: Nah, you can't really access anything "upward" or "backwards", unfortunately. CSS is processed sequentially, from top to bottom. I believe this is for optimized speed, but it means that we can't effect any changes on items the processor has already passed over. It's kind of a shame, but comes with the territory. It makes some sense when you consider that most use-cases of CSS are also cases where you have access to the HTML, so CSS-only is a niche use-case.Thanks, it seems to be working. I was reading about the + selector and how it works. It made me wonder if I could instead highlight the entire .data-item section instead, but it seems you can't really access parent elements through css. Any ideas? |
Feb 6, 2020 8:40 AM
#410
Hey, can you please tell me how were you able to put a banner at the top and make the fixed navbar work with it? Since in the default list the fixed nav is activated after a few pixels from the top. I tried looking at your code but couldn't put my finger on it. |
Feb 6, 2020 2:19 PM
#411
YairPeretz said: If the navbar is affixing at an incorrect height, it's usually only an issue while modifying the theme. Once you save the changes on the style and reload the page, it should affix at the correct position. This is because the position at which it becomes affixed is calculated on page load and does not change until the page is loaded again.Hey, can you please tell me how were you able to put a banner at the top and make the fixed navbar work with it? Since in the default list the fixed nav is activated after a few pixels from the top. I tried looking at your code but couldn't put my finger on it. |
Feb 6, 2020 5:06 PM
#412
Valerio_Lyndon said: YairPeretz said: If the navbar is affixing at an incorrect height, it's usually only an issue while modifying the theme. Once you save the changes on the style and reload the page, it should affix at the correct position. This is because the position at which it becomes affixed is calculated on page load and does not change until the page is loaded again.Hey, can you please tell me how were you able to put a banner at the top and make the fixed navbar work with it? Since in the default list the fixed nav is activated after a few pixels from the top. I tried looking at your code but couldn't put my finger on it. Oh, that explains it. I only tried changing it while on Inspect Element. Thanks a lot for the help. ^^ |
Feb 6, 2020 5:30 PM
#413
[quote=YairPeretz message=59092150] Valerio_Lyndon said: Glad to help. I was wondering the same thing when I started modifying the list, I remember asking about in the help thread way back. :)Oh, that explains it. I only tried changing it while on Inspect Element. Thanks a lot for the help. ^^ |
Feb 8, 2020 4:11 AM
#414
Hey is there any way to remove the black shadow on the banner image? |
Feb 8, 2020 2:44 PM
#415
bunnyg1rl said: Add this to the bottom of your CSS.Hey is there any way to remove the black shadow on the banner image? /* Remove banner shadow */ .cover-block::before { content: none; } |
Feb 9, 2020 5:06 AM
#416
Valerio_Lyndon said: bunnyg1rl said: Add this to the bottom of your CSS.Hey is there any way to remove the black shadow on the banner image? /* Remove banner shadow */ .cover-block::before { content: none; } thanks a lot! |
Feb 13, 2020 11:52 PM
#417
Hey, I followed the directions you've provided to adjust my anime list to my liking and everything looks great and how I want it to be. The only thing I have trouble with is the edit box itself. I can't figure out which section in the code is responsible for its color and the text in the box. Every background line I tried to tweak didn't work for the box. I would like to adjust the dark grey parts and the text color to match with the rest outside of the box. Could you please let me know which part of the code affects the edit box? |
Feb 14, 2020 2:09 AM
#418
Slothicans said: The edit box is actually a separate page, it's just embedded within the list. The way that webpages are embedded makes it impossible for the CSS on the list to directly affect the embedded one.Hey, I followed the directions you've provided to adjust my anime list to my liking and everything looks great and how I want it to be. The only thing I have trouble with is the edit box itself. I can't figure out which section in the code is responsible for its color and the text in the box. Every background line I tried to tweak didn't work for the box. I would like to adjust the dark grey parts and the text color to match with the rest outside of the box. Could you please let me know which part of the code affects the edit box? If you know how to create CSS, it's possible to modify it using a browser extension such as Stylus [C] [F], with a userstyle that targets the edit webpage and some new CSS. Here's a Regex that targets the edit page (and the add page). https://myanimelist.net/ownlist/anime/.*(add|edit).*hideLayout |
Feb 14, 2020 9:34 AM
#419
Valerio_Lyndon said: If you know how to create CSS, it's possible to modify it using a browser extension such as Stylus Ah. I'm an absolute noob when it comes to CSS and coding in general. I think I'll just leave the box as it is then. Thank you for the theme and the continued support you give! :) |
Feb 16, 2020 1:55 PM
#420
Hey, I'm trying to add round category headers but it's not working. /*==============================*\ | "Clarity" by Valerio Lyndon | | R23.3 | \*==============================*/ @\import "https://malcat-gen.appspot.com/headers?template=[data-query*='\"status\":7']:not([data-query*='order']):not([data-query*='tag\"']):not([data-query*='\"s\"']) .list-item:nth-child($index){margin-top:162px;}[data-query*='\"status\":7']:not([data-query*='order']):not([data-query*='tag\"']):not([data-query*='\"s\"']) .list-item:nth-child($index) .status:before{content:'$content'}"; @\import "https://fonts.googleapis.com/css?family=Oswald"; :root{--name:none;--avatar:none;--banner:url(https://i.imgur.com/VoPJz2S.jpg);--character:url(https://i.imgur.com/6IPyngH.png);--background:none;--pbg:#efefef;--bg:#fff;--bg-dark:#ddd;--text:#323232;--text-h:#787878;--text-dim:#bababa;--text-dim-h:#646464;--text-dark:#111;--shadow:rgba(0,0,0,0.2);--icon:#323232;--accent:#4065ba;--btn-bg:#ebebeb;--btn-bg-h:#323232;--btn-head-bg-h:#1d439b;--btn-text-h:#fff;--text-head:#9b9b9b;--text-head-h:#787878;--watching:#2db039;--completed:#26448f;--onhold:#f1c83e;--dropped:#a12f31;--plantowatch:#c3c3c3;--cover-bg:#323232;--edit-btn:#d9d9d9;--checkmark:#9696eb}#advanced-options .advanced-options-button a,#fancybox-close,#search-box,#search-box input,#search-box:after,.data.chapter,.data.image .link:after,.data.licensor a,.data.priority,.data.progress,.data.score a,.data.studio a,.data.tags a,.data.tags a.edit:after,.data.volume,.fixed .status-menu:after,.header .header-title:after,.icon-menu svg,.icon-menu.setting,.icon-menu.setting .text,.icon-menu.setting .text a,.icon-menu:after,.icon-menu:before,.list-table .list-table-header .header-title .link.sort,.list-table-header .header-title,.status-button:after,.status-menu-container.fixed .status-menu,.status-menu-container:not(.fixed) .status-menu,.status-menu:after{transition:all .3s ease!important}#advanced-options .advanced-options-header .description,#advanced-options .advanced-options-header .description:before,#advanced-options [class*="-widget"] input,#advanced-options [class*="-widget"] label,#advanced-options [class*="-widget"] select,#search-button i,.header-info a,.list-table-data a,.more-info .td1>div>a{transition:all .15s ease!important}.header .header-title,.header-info,.icon-menu,.icon-menu.quick-add:before,.list-menu-float .icon-menu,.list-table>tbody:first-of-type:after,.stats a{display:inline-block;height:26px!important;width:26px!important;background:var(--bg)!important;border-radius:13px;box-shadow:0 1px 2px var(--shadow);overflow:hidden;color:var(--text)!important;font:normal 0/26px Arial,Verdana,sans-serif;text-indent:0;text-align:left;white-space:nowrap;vertical-align:top;transition:all .3s ease!important}.header .header-title:hover,.icon-menu:hover,.list-menu-float .icon-menu:hover,.stats a:hover{width:100px!important;background:var(--btn-head-bg-h)!important;color:var(--btn-text-h)!important}html{position:relative;min-height:100%}body{padding-bottom:64px;background:var(--pbg) var(--background) no-repeat center/cover fixed!important}.list-container{position:static;width:100%;background:0 0!important;border:none}.list-block{width:1060px;min-height:initial;margin:64px auto 0}.status-menu-container.fixed+.list-block{margin-top:128px!important}.list-unit{width:100%!important;margin:0}.list-table{border:none!important}a,a:hover{color:var(--accent)}.initialize-tutorial{display:none!important}.cover-block{position:absolute;top:0;left:0;z-index:25;width:100%;min-width:1060px;height:318px;background:var(--cover-bg) var(--banner) no-repeat center center/cover scroll}.cover-block:before{content:"";position:absolute;bottom:0;left:0;display:block;width:100%;height:50px;background:linear-gradient(to top,rgba(0,0,0,.5),transparent)}#cover-image,.btn-list-setting{display:none!important}#list-container #cover-image-container{display:block!important;width:1060px;height:100%;padding:0;background:var(--character) no-repeat right center/contain;margin:0 auto}#cover-image-container:after{content:var(--name);position:absolute;top:55px;left:50%;margin-left:-475px;color:#fff;font:bold 60px/60px Oswald;text-align:left;letter-spacing:15px;text-shadow:1px 4px 7px rgba(0,0,0,.45);text-transform:uppercase;white-space:pre;transform:scale(.9) perspective(350px) rotateY(8deg) rotateZ(-3deg);animation:name-slide 3s 1 .5s backwards}@keyframes name-slide{0%{top:12px;margin-left:-535px;opacity:0;letter-spacing:0;animation-timing-function:ease-out}90%{top:55px;margin-left:-475px}100%{letter-spacing:15px;opacity:1;animation-timing-function:cubic-bezier(0,0,.75,1)}}.header{z-index:36;display:flex;height:36px;margin-top:282px}.header .header-menu{position:static;display:flex;width:auto;height:26px;margin-left:6px;order:2}.btn-menu{height:0;font-size:0!important}.btn-menu #header-menu-button{display:none}.header .header-title{position:static;margin-left:155px;order:1;z-index:1}.header .header-title:before{content:"\f015";display:inline-block;width:26px;background:0 0!important;font-size:14px;font-family:FontAwesome;text-align:center!important}.header .header-title:hover:before{color:var(--btn-text-h)!important}.header .header-title:after{content:"Home";display:inline-block;height:26px!important;width:26px!important;font:14px/26px Arial,Verdana,sans-serif;color:var(--text)}.header .header-title:hover:after{color:var(--btn-text-h)}.header .header-menu .list-menu{position:static;order:1;display:inline-block;height:26px;border:none;background:0 0;box-shadow:none}.header .icon-menu.anime-list,.header .icon-menu.manga-list{position:static;padding:0;margin-right:6px;font-size:0!important;font-weight:400!important}.header .icon-menu.anime-list .text,.header .icon-menu.manga-list .text{position:static!important;font:14px/26px Arial,Verdana,sans-serif;vertical-align:top}.header .header-menu .list-menu .icon-menu svg.icon{position:static;max-width:14px;max-height:14px;padding:6px;fill:var(--text)}.header .header-menu .list-menu .icon-menu:hover svg.icon{fill:var(--btn-text-h)}.header-info{position:static;width:auto!important;padding:0 8px;margin:0!important;font-size:12px;order:2}.header-info a{color:var(--text)!important;text-decoration:none!important}.header-info a:hover{color:var(--text-h)!important}.btn-menu a.username{position:absolute;left:0;top:-7px;display:block;width:150px;height:150px;background:0 0;border-radius:50%;font-size:0}.btn-menu span.username{display:none!important}.status-menu-container{position:relative;z-index:35!important;width:100%;min-width:1060px;height:64px;background:0 0;border:none!important}.status-menu-container.fixed{z-index:45!important}.status-menu-container:after,.status-menu-container:before{content:"";position:absolute;left:0;z-index:-1;display:block;width:100%}.status-menu-container:before{top:0;height:64px;background:var(--bg)}.status-menu-container:after{top:64px;height:2px;background:linear-gradient(to bottom,var(--shadow),transparent)}.status-menu{position:relative;display:block!important;width:1060px;padding:0 0 0 173px;margin:0 auto;box-sizing:border-box}.fixed .status-menu{padding:0 0 0 71px}.status-menu:after{content:"";position:absolute;top:-51px;left:-8px;width:150px;height:150px;background:var(--bg-dark) var(--avatar) no-repeat center top/cover;border:8px solid var(--bg);border-radius:50%;opacity:1;box-shadow:0 1px 2px var(--shadow)}.fixed .status-menu:after{top:0;width:48px;height:48px;box-shadow:none}.status-menu .status-button{display:inline-block!important;height:32px;padding:16px 0!important;margin:0 15px!important;color:var(--text-head)!important;font-size:17.6px!important;line-height:30px;white-space:nowrap;font-family:Oswald!important;text-transform:uppercase;letter-spacing:1px}.status-menu .status-button.on{color:var(--text-head-h)!important}.status-button.all_anime:after{background:var(--accent)!important}.status-button.reading:after,.status-button.watching:after{background:var(--watching)!important}.status-button.completed:after{background:var(--completed)!important}.status-button.onhold:after{background:var(--onhold)!important}.status-button.dropped:after{background:var(--dropped)!important}.status-button.plantoread:after,.status-button.plantowatch:after{background:var(--plantowatch)!important}.status-menu-container .search-container{top:19px;right:0}#search-box{padding-right:22px;border:2px solid transparent;border-radius:13px;margin-top:0!important}#search-box.open{width:150px!important;background:var(--btn-bg);border:2px solid var(--bg-dark)}#search-box input{background:0 0;border:none;border-radius:13px;outline:0;color:var(--text)}#search-box.open input{text-indent:7.5px;line-height:20px}.status-menu-container .search-container #search-button{position:absolute;right:0;top:0;width:26px;height:26px;border-radius:13px;margin-top:0;text-align:center}.open~#search-button{pointer-events:none}#search-button i{color:var(--text-head)!important;font-size:18px;line-height:26px}.open~#search-button i{font-size:14px;line-height:24px}#search-box:after{content:"";position:absolute;right:0;top:0;width:0;height:22px;padding-right:22px;background:linear-gradient(to right,var(--btn-bg) 2px,transparent 9.5px,transparent 142.5px,var(--btn-bg) 150px) content-box;border:2px solid transparent;border-radius:13px;pointer-events:none;opacity:0}#search-box.open:after{width:150px;opacity:1}.list-menu-float{position:relative;top:auto;display:block;width:904px;height:0;padding-left:155px;margin:0 auto;border:none;background:0 0;text-align:left;font-size:0;z-index:38}.icon-menu,.list-menu-float form{display:inline-block!important}.list-menu-float .icon-menu{top:74px;margin:0 6px 0 0}.list-menu-float .icon-menu .text{top:0!important;left:26px!important;display:inline-block;width:auto!important;height:26px;color:var(--text)!important;font-size:14px!important;opacity:1!important}.list-menu-float .icon-menu:hover .text{color:var(--btn-text-h)!important}.list-menu-float .icon-menu svg.icon{top:6px!important;left:6px!important;max-width:14px;max-height:14px;fill:var(--text)}.list-menu-float .icon-menu:hover svg.icon{fill:var(--btn-text-h)}[data-owner="1"] .list-menu-float .icon-menu.profile{position:absolute;left:0;top:-43px;display:block!important;width:150px!important;height:150px!important;background:0 0!important;border-radius:50%;font-size:0;box-shadow:none}[data-owner=""] .icon-menu.profile{background-image:none!important}[data-owner=""] .icon-menu.profile:before{content:"\f007";position:absolute;top:0;left:0;display:block;width:26px;height:26px;font-size:14px;line-height:26px;text-align:center;color:var(--text);font-family:FontAwesome}[data-owner=""] .icon-menu.profile:hover:before{color:var(--btn-text-h)}[data-owner=""] .icon-menu.profile:after{content:"Profile";position:absolute;top:0;left:26px;display:inline-block;height:26px;font-size:14px;color:var(--text)}[data-owner=""] .icon-menu.profile:hover:after{color:var(--btn-text-h)}.icon-menu.quick-add svg{display:none}.icon-menu.quick-add:before{content:"\f067";background:0 0!important;font-size:14px;text-align:center;font-family:FontAwesome;box-shadow:none}.icon-menu.quick-add:hover:before{color:var(--btn-text-h)!important}.icon-menu.setting{overflow:visible}.icon-menu.setting:hover{width:26px!important}.icon-menu.setting .text{top:-2px!important;left:0!important;width:240px!important;height:26px!important;padding:2px 0;overflow:visible;font-size:0!important;opacity:1!important;pointer-events:none;z-index:-1}.icon-menu.setting:hover .text{pointer-events:auto}.icon-menu.setting .text a{position:absolute!important;top:2px!important;left:13px!important;width:0!important;height:26px!important;background:var(--btn-bg-h)!important;border:none!important;border-radius:0 13px 13px 0;overflow:hidden;color:var(--btn-text-h)!important;font:14px/26px Arial,Verdana,sans-serif!important;text-indent:9px;text-align:center;white-space:nowrap;opacity:0!important}.icon-menu.setting:hover .text a{width:120px!important;border-radius:0 13px 13px 0;opacity:1!important}.icon-menu.setting:hover .text .link-list-setting{left:120px!important}.icon-menu.setting .text a:hover{background:var(--btn-head-bg-h)!important}.list-status-title{width:1060px!important;height:64px!important;margin-top:-64px;background:0 0!important}.list-status-title .text{display:none!important}.list-status-title .stats{position:absolute;top:10px;right:32px!important;display:block;width:auto;height:26px!important;border-radius:0 0 26px 0;font-size:0;line-height:13px!important}.stats a{margin:0 0 0 6px!important;font:14px/26px Arial,Verdana,sans-serif}.stats a i{width:26px;text-align:center}.list-stats{position:absolute;top:416px;width:1060px!important;background:0 0!important;color:var(--text)!important;font-weight:700}.list-table>tbody:first-of-type{position:relative;top:-26px;margin-top:-30px;left:1032px;display:block;width:30px;height:30px;background:0 0!important;z-index:39}.list-table>tbody:first-of-type:after{content:"\f0dc";position:absolute;top:0;right:0;margin:2px;font-size:14px;font-family:FontAwesome;text-align:center}.list-table>tbody:first-of-type:hover:after{background:var(--btn-head-bg-h)!important;color:var(--btn-text-h)!important}.list-table-header{position:absolute;top:0;right:15px;display:block;width:auto;height:26px;padding:2px 0;font-size:0;white-space:nowrap;pointer-events:none;z-index:-1}.list-table>tbody:first-of-type:hover .list-table-header{pointer-events:auto}.list-table .list-table-header .header-title{position:relative;display:inline-block;width:auto!important;height:auto;padding:0!important;border:none;background:0 0;font-weight:400}.list-table>tbody:first-of-type:hover .header-title{opacity:1}.list-table .list-table-header .header-title .link.sort{display:block;width:13px;height:26px;background:var(--btn-bg-h);border-radius:13px 0 0 13px;margin-left:-13px;overflow:hidden;box-sizing:border-box;color:var(--btn-text-h)!important;font:11px/26px Verdana,Arial,sans-serif;text-align:center;text-indent:-9px;white-space:normal;opacity:0}.list-table tbody:first-of-type:hover .list-table-header .header-title .link.sort{width:80px;opacity:1}.list-table-header .header-title a.hover_info{display:none!important}.list-table .list-table-header .header-title .link.sort:hover{background:var(--btn-head-bg-h)}.list-table-header .header-title a .sort-icon{position:absolute;left:50%;width:10px;height:10px;margin-left:-5px;color:inherit!important;font-size:10px;line-height:10px}.sort-icon.fa-sort-asc{top:2px}.sort-icon.fa-sort-desc{bottom:2px}.anime tbody:first-of-type:hover .header-title.finished a,.anime tbody:first-of-type:hover .header-title.started a{padding:0 13px}.manga tbody:first-of-type:hover .header-title.finished a,.manga tbody:first-of-type:hover .header-title.started a{width:100px!important}.header-title.title a{font-size:0!important}.header-title.title a:after{content:"Title";font-size:11px}.list-table-header .header-title.tags{display:none!important}.list-item{position:relative;display:block;width:100%;background:var(--bg)!important;border:none;margin-bottom:8px}.list-table-data{position:relative;display:flex;max-width:1060px;min-height:64px;align-items:center;font-size:0}.data{display:block!important;padding:0!important;border:none!important;flex:0 0 auto;color:var(--text);font-size:11px}.list-table .list-table-data .data a{color:var(--text)!important;text-decoration:none!important}.list-table .list-table-data a:not(.edit-disabled):hover{color:var(--text-h)!important}.list-unit .loading-space{margin:14px 0 22px}.list-unit .loading-space #loading-spinner{width:20px;height:20px;margin:0 auto;color:var(--text)}.list-table[data-items="[]"]:after{content:"No entries found. Try another category?";display:block;width:900px;background:var(--bg);border-radius:16px;margin:32px auto;color:var(--text);font:16px/32px Arial,Verdana,sans-serif;text-align:center}[data-owner="1"] .list-table[data-items="[]"]:after{content:"No entries found. Why not add some?"}[data-query*='"s":'] .list-table[data-items="[]"]:after{content:"No entries found. Perhaps your search terms are too restrictive?"}.data.status{position:absolute;top:0;left:0;width:1px!important;height:100%;padding:0!important}.status.reading,.status.watching{background:var(--watching)!important}.status.completed{background:var(--completed)!important}.status.onhold{background:var(--onhold)!important}.status.dropped{background:var(--dropped)!important}.status.plantoread,.status.plantowatch{background:var(--plantowatch)!important}.data.image{width:64px;height:64px;margin:4px 0 4px 8px;order:1}.data.image a{position:relative;display:block!important;border-radius:50%;overflow:hidden}.data.image img{width:64px!important;height:64px!important;border:none!important;object-fit:cover}.data.image a:after{content:"\f14c";position:absolute;top:0;left:0;display:block;width:100%;height:100%;background:rgba(0,0,0,.5);color:#fff;font:30px/64px FontAwesome;opacity:0}.data.image a:hover:after{opacity:1}.data.number{position:relative;top:-22px;width:20px;height:20px;background:var(--bg);border-radius:10px;margin:0 -28px 0 8px;order:1;line-height:20px;font-weight:700;z-index:1}.list-item:nth-child(n+101) .data.number{text-indent:-7px}.list-item:nth-child(n+1001) .data.number{width:27px;margin-right:-35px}.list-item:nth-child(n+10001) .data.number{width:34px;margin-right:-42px}.data.title{position:relative;width:142px;height:16px;padding:32px 0 0 8px!important;order:12;flex:1 0 auto;line-height:16px}.data.title .link.sort{position:absolute;top:16px;left:8px;display:inline-block;max-width:100%;padding-right:16px;overflow:hidden;box-sizing:border-box;line-height:16px;white-space:nowrap;text-overflow:ellipsis}.list-table .list-table-data .title .link:hover{color:var(--accent)!important}.content-status,.rereading,.rewatching{color:var(--text-dim)!important;font-size:10px!important}.content-status:before,.rereading:before,.rewatching:before{content:"["}.content-status:after,.rereading:after,.rewatching:after{content:"] - "}.add-edit-more{display:inline;float:none!important;color:var(--text-dim)}.list-table .list-table-data .title .add-edit-more a{color:var(--text-dim)!important}.list-table .list-table-data .title .add-edit-more a:hover{color:var(--text-dim-h)!important}.icon-watch{display:none!important}.data.type{position:relative;top:-16px;z-index:1;width:92px;height:16px;padding-left:8px!important;margin-right:-100px;order:11;text-align:left!important;color:var(--text-dim);line-height:16px;font-size:10px}.data.score{position:relative;width:26px;height:26px;order:13}.data.score a{display:block;width:26px;height:26px;background:var(--btn-bg);border-radius:13px;margin:0 0 0 auto;line-height:26px}.list-table .list-table-data .score a:not(.edit-disabled):hover{background:var(--btn-bg-h);color:var(--btn-text-h)!important}.data.score select{position:absolute;top:0;right:0;display:block;width:40px;height:26px;padding:0 9px;background:var(--btn-bg-h) url(https://i.imgur.com/KF8oOyC.png) no-repeat 20px center/16px auto;border:none;border-radius:13px;box-shadow:none!important;color:var(--btn-text-h);font:bold 1.1em/26px Verdana,Arial,sans-serif;-webkit-appearance:none;-moz-appearance:none;appearance:none}@-moz-document url-prefix(){.data.score select{padding:0 16px 0 0;text-align:center}}.data.score select:focus{outline:0!important;box-shadow:0 2px 2px rgba(0,0,0,.3)}.data.chapter,.data.progress,.data.volume{width:92px;order:15}.data.chapter{margin-top:-34px}.data.volume{margin:34px 0 0 -92px}.data.chapter span,.data.progress span,.data.volume span{color:var(--text)}.data.progress:before{content:"Progress:";color:var(--text-dim)}.data.chapter:before{content:"Chapters:";color:var(--text-dim)}.data.volume:before{content:"Volumes:";color:var(--text-dim)}.data.chapter span:only-of-type:after,.data.progress span:only-of-type:after,.data.volume span:only-of-type:after{content:" \f058";position:relative;top:1px;color:var(--checkmark);font-family:FontAwesome;font-size:13px}.data.chapter input,.data.progress input,.data.volume input{height:15px;padding:0 1px;background:var(--btn-bg);border:1px solid var(--bg-dark);outline-color:var(--accent)!important;box-sizing:border-box;color:var(--text-dark);font:11px Verdana,Arial,sans-serif}.data.priority{position:relative;width:92px;height:74px;background:var(--bg);margin-right:-92px;order:14;color:var(--text);line-height:74px;opacity:1;pointer-events:none;z-index:1}.status:not(.plantowatch):not(.plantoread)~.data.priority{display:none!important}.list-item:hover .data.priority{opacity:0}.data.priority:before{content:"\f0a2";font-family:FontAwesome}.data.magazine,.data.rated,.data.retail,.data.season,.data.storage{margin-right:4px;order:19;flex-shrink:1}.data.rated{width:40px}.data.magazine{width:90px}.data.retail,.data.storage{width:72px}.data.season{width:92px;order:20}.data.magazine:before,.data.rated:before,.data.retail:before,.data.season:before,.data.storage:before{display:block;color:var(--text-dim)}.data.rated:before{content:"Rated:"}.data.magazine:before{content:"Magazine:"}.data.retail:before,.data.storage:before{content:"Storage:"}.data.season:before{content:"Premiered:"}.data.season:empty:after{content:"Unknown";display:block;color:var(--text-dim)}.data.licensor,.data.studio,.data.tags{width:120px;padding:3px 0!important;margin-right:8px;order:21;flex-shrink:1}.data.licensor span,.data.studio span,.data.tags span{display:block;padding:1px 0;font-size:0!important;line-height:0}.data.licensor a,.data.studio a,.data.tags a:not(.edit){display:block;padding:1px;background:var(--btn-bg);border-radius:8.5px;color:var(--text)!important;font-size:11px!important;line-height:15px}.list-table .list-table-data .licensor span a:hover,.list-table .list-table-data .studio span a:hover,.list-table .list-table-data .tags span a:hover{background:var(--btn-bg-h);color:var(--btn-text-h)!important}.data.licensor:empty:before,.data.magazine:empty:before,.data.studio:empty:before{display:block;padding:1px;color:var(--text-dim);font-size:10px;line-height:15px;white-space:pre}.data.studio:empty:before{content:"Unknown\aStudio"}.data.licensor:empty:before{content:"Unknown\aLicensor"}.data.magazine:empty:before{content:"Unknown\aMagazine"}.data.tags textarea{position:absolute;top:3px;right:4px;z-index:5;width:530px!important;height:calc(100% - 6px)!important;background:var(--btn-bg);border:1px solid var(--bg-dark);outline-color:var(--accent)!important;resize:none;color:var(--text)}@-moz-document url-prefix(){.data.tags textarea{width:524px!important;height:calc(100% - 14px)!important;padding:2px;box-sizing:initial!important}}.data.tags a.edit{position:absolute;top:0;right:0;width:5px!important;height:100%!important;background:var(--edit-btn);text-align:left!important;font-size:0!important;opacity:0;z-index:1}.list-item:hover .data.tags a.edit{opacity:.7}.list-item:hover .data.tags a.edit:hover{width:25px!important;opacity:1}.data.tags a.edit:after{content:"\f040";position:absolute;top:50%;right:0;width:100%;height:20px;margin-top:-10px;color:var(--text);font:0/20px FontAwesome;text-align:center;opacity:0}.data.tags a.edit:hover:after{font-size:14px;opacity:1}.data.airing-finished,.data.airing-started,.data.days,.data.finished,.data.started{position:relative;width:100px;height:14px;overflow:hidden;order:25;color:var(--text);font-size:9px;line-height:14px;text-align:left!important;text-overflow:ellipsis}.data.started{top:-20px}.data.finished{top:0;margin-left:-100px}.data.days{top:20px;margin-left:-100px}.data.airing-started{top:-10px}.data.airing-finished{top:10px;margin-left:-100px}.data.airing-finished:before,.data.airing-started:before,.data.days:before,.data.finished:before,.data.started:before{display:inline-block;width:29px;padding-right:4px;border-right:1px solid var(--text-dim);text-align:right;color:var(--text-dim)}.data.started:before{content:"Start"}.data.finished:before{content:"End"}.data.days:before{content:"Days"}.data.airing-started:before{content:"Aired"}.manga .data.airing-started:before{content:"Issued"}.data.airing-finished:before{content:"to"}.manga .data.airing-finished,.manga .data.airing-started{width:107px}.manga .data.airing-finished{margin-left:-107px}.manga .data.airing-finished:before,.manga .data.airing-started:before{width:36px}.more-info{border:none!important}.more-info .td1{position:relative;padding-top:23px;color:var(--text-dark)}.more-info .td1>div{margin:0}.more-info .td1>div>a{position:absolute;top:0;left:0;border-bottom:2px solid var(--accent)}.list-table .more-info .more-content a{color:var(--text-dark)!important}.list-table .more-info .more-content a:hover{color:var(--accent)!important}footer{position:absolute;bottom:0;left:0;width:100%}#footer-block{min-width:1060px;height:32px;padding:16px 0;background:var(--bg)}#footer-block:before{content:"";position:absolute;left:0;top:-2px;width:100%;min-width:1060px;height:2px;background:linear-gradient(to top,rgba(0,0,0,.1),transparent)}#copyright{padding:0;color:var(--text-head);line-height:16px}#copyright:after{content:"\aList design by Valerio Lyndon.";white-space:pre}#fancybox-overlay{background:#000!important;opacity:.2!important}#fancybox-outer [class^=fancy-]{display:none}#fancybox-outer{background:var(--bg)!important;box-shadow:0 0 32px rgba(0,0,0,.5)}#fancybox-outer #fancybox-close{top:-13px;right:-13px;width:16px;height:16px;padding:2px;background:var(--btn-bg);border:3px solid var(--btn-text-h);border-radius:13px;color:var(--text);text-align:center;box-shadow:0 1px 2px var(--shadow)}#fancybox-outer #fancybox-close:after{content:"\f00d";display:block;margin-top:-1px;font:16px/1 FontAwesome}#fancybox-outer #fancybox-close:hover{background:var(--text);color:var(--btn-text-h)}#advanced-options{top:64px;width:910px;padding:32px 0;background:var(--bg);border:none;box-shadow:0 0 32px rgba(0,0,0,.5);color:var(--text-dark)}#advanced-options .advanced-options-button,#advanced-options .advanced-options-header,#advanced-options [class*="-widget"]{width:100%;padding:0;border:none}#advanced-options .filter-widget:last-of-type,#advanced-options .sort-widget:last-of-type{padding-bottom:0}#advanced-options .filter,#advanced-options .sort{padding-bottom:32px}#advanced-options .advanced-options-header{font-size:0;line-height:26px;box-sizing:border-box}#advanced-options .advanced-options-header:before{display:inline-block;width:249px;height:100%;padding-bottom:7.5px;font-size:16px;line-height:26px;text-align:right}#advanced-options .filter .advanced-options-header:before{content:"Filter"}#advanced-options .sort .advanced-options-header:before{content:"Sort"}#advanced-options .advanced-options-header .description{display:inline-block;width:20px;margin:0;color:transparent;white-space:nowrap;vertical-align:top;transition:all .15s ease;pointer-events:none}#advanced-options .advanced-options-header .description:hover{color:inherit;pointer-events:auto}#advanced-options .advanced-options-header .description:before{content:"\f059";display:inline-block;width:20.5px;color:var(--icon);font:14px/26px FontAwesome;text-align:center;pointer-events:auto}#advanced-options .advanced-options-header .description:hover:before{color:var(--text-dim)}#advanced-options [class*="-widget"]{font-size:0;line-height:1;white-space:nowrap}#advanced-options [class*="-widget"]>*{font-size:12px;vertical-align:top}#advanced-options [class*="-widget"] .widget-header{width:250.5px;height:26px;padding:11px 7.5px 11px 0;border-right:2px solid var(--text-dim);margin-right:7.5px;line-height:26px;text-align:right}#advanced-options [class*="-widget"] span{line-height:26px}#advanced-options [class*="-widget"] input,#advanced-options [class*="-widget"] label,#advanced-options [class*="-widget"] select,#advanced-options [class*="-widget"] span:not(.widget-header){height:26px;margin:11px 0;border-color:var(--text-dim)!important;border-radius:13px;box-sizing:border-box;color:var(--text-dark);font-size:12px}#advanced-options [class*="-widget"] input,#advanced-options [class*="-widget"] select{padding:0 7.5px;background:0 0;outline:0}#advanced-options [class*="-widget"] select{padding-right:16px;background:transparent url(https://i.imgur.com/hFijppc.png) no-repeat right center/16px auto}#advanced-options [class*="-widget"] input:focus,#advanced-options [class*="-widget"] option,#advanced-options [class*="-widget"] select:focus{background-color:var(--btn-bg)!important}#advanced-options :disabled,#advanced-options input:disabled+label{opacity:.5;color:var(--text)!important}#advanced-options .title input{width:387.5px!important}#advanced-options .filter-widget[class*="-status"] select{width:197.5px!important}#advanced-options .magazine select,#advanced-options .producer select{width:387.5px!important}#advanced-options .filter-widget[class*="-date"] span:nth-of-type(n+2){display:inline-block;width:40px;padding:0 3px 0 7.5px;border:1px solid var(--text-dim);border-right:none;border-radius:13px 0 0 13px;margin-right:0!important;line-height:24px;font-style:italic}#advanced-options .filter-widget[class*="-date"] span:nth-of-type(3){margin-left:7.5px!important}#advanced-options .filter-widget[class*="-date"] .day,#advanced-options .filter-widget[class*="-date"] .month,#advanced-options .filter-widget[class*="-date"] .year{border-radius:0;padding:0 16px 0 7.5px;border-left-width:0}#advanced-options .filter-widget[class*="-date"] .month,#advanced-options .filter-widget[class*="-date"] .year{border-right:none}#advanced-options .filter-widget[class*="-date"] .day{border-radius:0 13px 13px 0}#advanced-options .filter-widget[class*="-date"] .year{width:60px!important}#advanced-options .filter-widget[class*="-date"] .day,#advanced-options .filter-widget[class*="-date"] .month{width:45px!important}#advanced-options .aired-season .year{width:60px!important}#advanced-options .aired-season .season{width:130px!important;margin-left:7.5px}#advanced-options .first select,#advanced-options .second select{width:190px!important}#advanced-options .sort-widget input[type=radio]+label{width:92.25px!important;border-radius:13px;margin-left:7.5px;background:0 0!important;color:var(--text-dark);line-height:14px;transition:all .15s ease}#advanced-options .sort-widget input[type=radio]:not(:disabled)+label:hover{background:var(--btn-bg)!important}#advanced-options .sort-widget input[type=radio]:not(:disabled):checked+label{background:var(--text-dim)!important;border:1px solid var(--text-dim);color:var(--bg)!important}#advanced-options .sort-widget input[type=radio]:not(:checked)+label i{color:var(--icon)}#advanced-options #fancybox-close,#advanced-options .advanced-options-button a{width:90px;height:26px;padding:0;background:var(--btn-bg);border-radius:13px;box-shadow:0 1px 2px var(--shadow);color:var(--text-dark);line-height:26px;text-align:center}#advanced-options #fancybox-close:hover,#advanced-options .advanced-options-button a:hover{background:var(--btn-bg-h);color:var(--btn-text-h)}#advanced-options .advanced-options-button .btn-apply{margin:0 0 0 -106px}#advanced-options .advanced-options-button .btn-clear{margin:0 0 0 8px}#advanced-options #fancybox-close{left:50%;top:auto;bottom:32px;border:none;margin-left:53px}#advanced-options .btn-apply:before{content:"\f00c ";font-family:FontAwesome}#advanced-options .btn-clear:before{content:"\f12d ";font-family:FontAwesome}#advanced-options #fancybox-close:after{content:"\f00d Close";font:12px/26px Arial,FontAwesome,sans-serif}#fancybox-wrap[style*="width: 320px;"]{height:120px!important}[style*="width: 320px;"] #fancybox-inner{height:calc(100% - 20px)!important}div[style^="width: 300px;"]{display:flex;height:100%!important;flex-flow:column nowrap;justify-content:center;color:var(--text);font-size:13px!important}div[style^="width: 300px;"] div{font-size:0}div[style^="width: 300px;"] input{display:block;width:240px;height:26px;background:var(--btn-bg);border:none;border-radius:13px;box-shadow:0 1px 2px var(--shadow);margin:0 auto 5px;color:var(--text);font:normal 12px/26px Arial,Verdana,sans-serif;transition:all .3s ease;cursor:pointer}div[style^="width: 300px;"] input:hover{background:var(--btn-bg-h);color:var(--btn-text-h)} body { --avatar: url(https://imgur.com/mmiig7Y.png); } @\import "https://malcat-gen.appspot.com/headers?template=[data-query*='\"status\":7']:not([data-query*='order']):not([data-query*='tag\"']):not([data-query*='\"s\"']) .list-item:nth-child($index){margin-top:162px;}[data-query*='\"status\":7']:not([data-query*='order']):not([data-query*='tag\"']):not([data-query*='\"s\"']) .list-item:nth-child($index) .status:before{content:'$content'}"; /*-S-T-A-R-T--------------------*\ | Dark Mode R3.3 | \*------------------------------*/ :root{--banner:url(https://images.alphacoders.com/901/901545.png);--character:url(https://imgur.com/PhVWhSF.png);--pbg:#161616;--bg:#212121;--bg-dark:#444;--text:#ababab;--text-h:#416abe;--text-dim:#777;--text-dim-h:#999;--text-dark:#ababab;--shadow:rgba(0,0,0,0.8);--icon:#959595;--accent:#416abe;--btn-bg:#191919;--btn-bg-h:#ababab;--btn-head-bg-h:#416abe;--btn-text-h:#212121;--text-head:#9b9b9b;--text-head-h:#ababab;--cover-bg:#090909;--edit-btn:#323232;--checkmark:#416abe}.cover-block:before{background:linear-gradient(to top,rgba(0,0,0,.8),rgba(0,0,0,0))}#cover-image-container:after{color:#f6f5ff;text-shadow:2px 2px 8px #e4bef4}.status-menu-container:after{background:linear-gradient(to bottom,rgba(0,0,0,.6),rgba(0,0,0,0))}#footer-block:before{background:linear-gradient(to top,rgba(0,0,0,.3),rgba(0,0,0,0))}.data.score select{background-image:url(https://i.imgur.com/hFijppc.png)}#fancybox-overlay{opacity:.35!important}#advanced-options,#fancybox-outer{box-shadow:0 0 32px rgba(0,0,0,.75)}#fancybox-frame{-webkit-filter:invert(87.8%) hue-rotate(197deg);filter:invert(87.8%) hue-rotate(197deg)}#advanced-options [class*="-widget"] select{background-image:url(https://i.imgur.com/KF8oOyC.png)} /*------------------------E-N-D-*/ body { --name: "Dank\a Memzyt"; } /*-S-T-A-R-T--------------------*\ | Favourite Hearts (Left) R0.4 | \*------------------------------*/ .data.tags span{padding:0}.data.tags span a{margin:1px 0}.data.tags span a[href*="=Favorite"],.data.tags span a[href*="=Favourite"]{position:absolute;left:-34px;top:calc(50% - 13px);width:26px;height:26px;padding:0;background:var(--bg);border-radius:50%;color:#ff65ad!important;font-size:0!important;line-height:23px;overflow:hidden;box-shadow:0 1px 2px rgba(0,0,0,.2)}.data.tags span a[href*="=Favorite"]:before,.data.tags span a[href*="=Favourite"]:before{content:"♥";font-size:26px} /*------------------------E-N-D-*/ /*-S-T-A-R-T--------------------*\ | Header Outline R0.0 | \*------------------------------*/ /* Change colour of border here. */ :root { --header-border: #d8332c; } .status-menu-container:before{height:56px;border-width:4px 0;border-style:solid;border-color:var(--header-border)}.status-menu:after{left:-4px;top:-47px;border-width:4px;box-shadow:0 0 0 4px var(--header-border)}.fixed .status-menu:after{top:4px} /*-S-T-A-R-T--------------------*\ | CatCol Header Text R0.0 | \*------------------------------*/ .status-menu .status-button{transition:color .3s ease}.status-menu .status-button.on:nth-of-type(1),.status-menu .status-button:nth-of-type(1):hover{color:var(--accent)!important}.status-menu .status-button.on:nth-of-type(2),.status-menu .status-button:nth-of-type(2):hover{color:var(--watching)!important}.status-menu .status-button.on:nth-of-type(3),.status-menu .status-button:nth-of-type(3):hover{color:var(--completed)!important}.status-menu .status-button.on:nth-of-type(4),.status-menu .status-button:nth-of-type(4):hover{color:var(--onhold)!important}.status-menu .status-button.on:nth-of-type(5),.status-menu .status-button:nth-of-type(5):hover{color:var(--dropped)!important}.status-menu .status-button.on:nth-of-type(6),.status-menu .status-button:nth-of-type(6):hover{color:var(--plantowatch)!important} /*------------------------E-N-D-*/ /*-S-T-A-R-T--------------------*\ | Character Renders R0.3 | \*------------------------------*/ footer:before, footer:after { content: ""; position: fixed; top: 0; z-index: -1; width: calc(50% - 538px); min-width: 262px; height: 100%; background: transparent no-repeat center bottom / contain scroll; } /* Right Render */ footer:after { left: calc(100% - (50% - 538px)); background-image: url(https://i.imgur.com/AajQ3Mm.png); background-position: right bottom; } /*------------------------E-N-D-*/ /*-S-T-A-R-T--------------------*\ | Horizontal Tags R0.2 | \*------------------------------*/ .list-table-data{padding-bottom:11px}.data.tags{position:absolute;left:0;top:0;display:flex!important;width:0;height:100%;padding:0!important;align-items:flex-end}.data.tags div{max-width:980px;margin:0 0 4px 80px;font-size:0;white-space:nowrap}.data.tags span{display:inline-block;padding:0}.data.tags span a{padding:1px 8px!important;margin:0 4px 0 0;white-space:nowrap}.data.tags span a[href*="=Favo"]{padding:0!important}.data.tags a.edit{right:-1060px}.data.tags textarea{right:-1060px} /*------------------------E-N-D-*/ /*-S-T-A-R-T--------------------*\ | Tag Desc Basis Horizontal R1.2 | \*------------------------------*/ .data.tags span a{position:relative}.data.tags span a:not([href*="=Favo"])::after,.data.tags span a:not([href*="=Favo"])::before{position:absolute;z-index:5;display:block;opacity:0;transition:all .15s efase;pointer-events:none}.data.tags span a:not([href*="=Favo"])::after{top:27px;left:calc(50% - 345px);width:auto;max-width:340px;height:auto;padding:4px 8px;background:var(--btn-bg);border:1px solid var(--text-dim);border-radius:4px;box-sizing:border-box;color:var(--text);font:11px/15px Arial,Verdana;text-align:left;white-space:pre-wrap;transform:translateX(-50%) translateX(340px)}.data.tags span a:not([href*="=Favo"])::before{content:"";top:17px;left:50%;border-width:5px;border-style:solid;border-color:transparent transparent var(--text-dim) transparent;margin-left:-10px}.data.tags span a:hover::after{left:calc(50% - 340px);opacity:1}.data.tags span a:not([href*="=Favo"]):hover::before{margin-left:-5px;opacity:1}.data.tags span:not([href*="=Favo"]) a::after{transform:translateX(-17%) translateX(340px)}.data.tags span:not([href*="=Favo"]):nth-child(n+3) a::after{transform:translateX(-33%) translateX(340px)}.data.tags span:not([href*="=Favo"]):nth-child(n+5) a::after{transform:translateX(-50%) translateX(340px)}.data.tags span:not([href*="=Favo"]):nth-child(n+7) a::after{transform:translateX(-67%) translateX(340px)}.data.tags span:not([href*="=Favo"]):nth-child(n+9) a::after{transform:translateX(-83%) translateX(340px)} /*------------------------E-N-D-*/ .data.tags a[href*="=Guilty%20Pleasure"]:after { content: "You know you shouldn't be watching it, \a but you just cant get enough." } .data.tags a[href*="=Isekai"]:after { content: "Because this world is too boring." } .data.tags a[href*="=Romance"]:after { content: "I wonder what falling in love is like." } /*-S-T-A-R-T--------------------*\ | Category Headers (Round) R0.3 | \*------------------------------*/ [data-query*='"status":7']:not([data-query*='order']):not([data-query*='tag"']):not([data-query*='"s"']) .list-item:nth-child(2) { margin-top: 58px; } .list-item .status:before, .list-item .status:after { position: absolute; top: -40px; left: 0; display: block; width: 1059px; height: 31px; background: var(--bg); border-width: 1px 0 0 1px; border-style: solid; border-color: var(--text-head); border-radius: 16px 16px 0 0; color: var(--text-head); font: 20px/31px Oswald; letter-spacing: 3px; text-indent: -0.5px; text-transform: uppercase; pointer-events: none; } [data-query*='"status":7']:not([data-query*='order']):not([data-query*='tag"']):not([data-query*='"s"']) .list-item .status:after { content: ""; top: auto; bottom: -40px; height: 32px; border-width: 0 0 0 1px; border-radius: 0 0 16px 16px; } .list-item .watching:before, .list-item .reading:before, .list-item .watching:after, .list-item .reading:after { border-color: var(--watching); } .list-item .completed:before, .list-item .completed:after { border-color: var(--completed); } .list-item .onhold:before, .list-item .onhold:after { border-color: var(--onhold); } .list-item .dropped:before, .list-item .dropped:after { border-color: var(--dropped); } .list-item .plantowatch:before, .list-item .plantoread:before, .list-item .plantowatch:after, .list-item .plantoread:after { border-color: var(--plantowatch); } /*------------------------E-N-D-*/ |
Feb 16, 2020 3:21 PM
#421
DankMemzYT said: Works fine when I visit your list. Are you viewing your unordered All Anime list while testing the code?Hey, I'm trying to add round category headers but it's not working. /*==============================*\ | "Clarity" by Valerio Lyndon | | R23.3 | \*==============================*/ @\import "https://malcat-gen.appspot.com/headers?template=[data-query*='\"status\":7']:not([data-query*='order']):not([data-query*='tag\"']):not([data-query*='\"s\"']) .list-item:nth-child($index){margin-top:162px;}[data-query*='\"status\":7']:not([data-query*='order']):not([data-query*='tag\"']):not([data-query*='\"s\"']) .list-item:nth-child($index) .status:before{content:'$content'}"; @\import "https://fonts.googleapis.com/css?family=Oswald"; :root{--name:none;--avatar:none;--banner:url(https://i.imgur.com/VoPJz2S.jpg);--character:url(https://i.imgur.com/6IPyngH.png);--background:none;--pbg:#efefef;--bg:#fff;--bg-dark:#ddd;--text:#323232;--text-h:#787878;--text-dim:#bababa;--text-dim-h:#646464;--text-dark:#111;--shadow:rgba(0,0,0,0.2);--icon:#323232;--accent:#4065ba;--btn-bg:#ebebeb;--btn-bg-h:#323232;--btn-head-bg-h:#1d439b;--btn-text-h:#fff;--text-head:#9b9b9b;--text-head-h:#787878;--watching:#2db039;--completed:#26448f;--onhold:#f1c83e;--dropped:#a12f31;--plantowatch:#c3c3c3;--cover-bg:#323232;--edit-btn:#d9d9d9;--checkmark:#9696eb}#advanced-options .advanced-options-button a,#fancybox-close,#search-box,#search-box input,#search-box:after,.data.chapter,.data.image .link:after,.data.licensor a,.data.priority,.data.progress,.data.score a,.data.studio a,.data.tags a,.data.tags a.edit:after,.data.volume,.fixed .status-menu:after,.header .header-title:after,.icon-menu svg,.icon-menu.setting,.icon-menu.setting .text,.icon-menu.setting .text a,.icon-menu:after,.icon-menu:before,.list-table .list-table-header .header-title .link.sort,.list-table-header .header-title,.status-button:after,.status-menu-container.fixed .status-menu,.status-menu-container:not(.fixed) .status-menu,.status-menu:after{transition:all .3s ease!important}#advanced-options .advanced-options-header .description,#advanced-options .advanced-options-header .description:before,#advanced-options [class*="-widget"] input,#advanced-options [class*="-widget"] label,#advanced-options [class*="-widget"] select,#search-button i,.header-info a,.list-table-data a,.more-info .td1>div>a{transition:all .15s ease!important}.header .header-title,.header-info,.icon-menu,.icon-menu.quick-add:before,.list-menu-float .icon-menu,.list-table>tbody:first-of-type:after,.stats a{display:inline-block;height:26px!important;width:26px!important;background:var(--bg)!important;border-radius:13px;box-shadow:0 1px 2px var(--shadow);overflow:hidden;color:var(--text)!important;font:normal 0/26px Arial,Verdana,sans-serif;text-indent:0;text-align:left;white-space:nowrap;vertical-align:top;transition:all .3s ease!important}.header .header-title:hover,.icon-menu:hover,.list-menu-float .icon-menu:hover,.stats a:hover{width:100px!important;background:var(--btn-head-bg-h)!important;color:var(--btn-text-h)!important}html{position:relative;min-height:100%}body{padding-bottom:64px;background:var(--pbg) var(--background) no-repeat center/cover fixed!important}.list-container{position:static;width:100%;background:0 0!important;border:none}.list-block{width:1060px;min-height:initial;margin:64px auto 0}.status-menu-container.fixed+.list-block{margin-top:128px!important}.list-unit{width:100%!important;margin:0}.list-table{border:none!important}a,a:hover{color:var(--accent)}.initialize-tutorial{display:none!important}.cover-block{position:absolute;top:0;left:0;z-index:25;width:100%;min-width:1060px;height:318px;background:var(--cover-bg) var(--banner) no-repeat center center/cover scroll}.cover-block:before{content:"";position:absolute;bottom:0;left:0;display:block;width:100%;height:50px;background:linear-gradient(to top,rgba(0,0,0,.5),transparent)}#cover-image,.btn-list-setting{display:none!important}#list-container #cover-image-container{display:block!important;width:1060px;height:100%;padding:0;background:var(--character) no-repeat right center/contain;margin:0 auto}#cover-image-container:after{content:var(--name);position:absolute;top:55px;left:50%;margin-left:-475px;color:#fff;font:bold 60px/60px Oswald;text-align:left;letter-spacing:15px;text-shadow:1px 4px 7px rgba(0,0,0,.45);text-transform:uppercase;white-space:pre;transform:scale(.9) perspective(350px) rotateY(8deg) rotateZ(-3deg);animation:name-slide 3s 1 .5s backwards}@keyframes name-slide{0%{top:12px;margin-left:-535px;opacity:0;letter-spacing:0;animation-timing-function:ease-out}90%{top:55px;margin-left:-475px}100%{letter-spacing:15px;opacity:1;animation-timing-function:cubic-bezier(0,0,.75,1)}}.header{z-index:36;display:flex;height:36px;margin-top:282px}.header .header-menu{position:static;display:flex;width:auto;height:26px;margin-left:6px;order:2}.btn-menu{height:0;font-size:0!important}.btn-menu #header-menu-button{display:none}.header .header-title{position:static;margin-left:155px;order:1;z-index:1}.header .header-title:before{content:"\f015";display:inline-block;width:26px;background:0 0!important;font-size:14px;font-family:FontAwesome;text-align:center!important}.header .header-title:hover:before{color:var(--btn-text-h)!important}.header .header-title:after{content:"Home";display:inline-block;height:26px!important;width:26px!important;font:14px/26px Arial,Verdana,sans-serif;color:var(--text)}.header .header-title:hover:after{color:var(--btn-text-h)}.header .header-menu .list-menu{position:static;order:1;display:inline-block;height:26px;border:none;background:0 0;box-shadow:none}.header .icon-menu.anime-list,.header .icon-menu.manga-list{position:static;padding:0;margin-right:6px;font-size:0!important;font-weight:400!important}.header .icon-menu.anime-list .text,.header .icon-menu.manga-list .text{position:static!important;font:14px/26px Arial,Verdana,sans-serif;vertical-align:top}.header .header-menu .list-menu .icon-menu svg.icon{position:static;max-width:14px;max-height:14px;padding:6px;fill:var(--text)}.header .header-menu .list-menu .icon-menu:hover svg.icon{fill:var(--btn-text-h)}.header-info{position:static;width:auto!important;padding:0 8px;margin:0!important;font-size:12px;order:2}.header-info a{color:var(--text)!important;text-decoration:none!important}.header-info a:hover{color:var(--text-h)!important}.btn-menu a.username{position:absolute;left:0;top:-7px;display:block;width:150px;height:150px;background:0 0;border-radius:50%;font-size:0}.btn-menu span.username{display:none!important}.status-menu-container{position:relative;z-index:35!important;width:100%;min-width:1060px;height:64px;background:0 0;border:none!important}.status-menu-container.fixed{z-index:45!important}.status-menu-container:after,.status-menu-container:before{content:"";position:absolute;left:0;z-index:-1;display:block;width:100%}.status-menu-container:before{top:0;height:64px;background:var(--bg)}.status-menu-container:after{top:64px;height:2px;background:linear-gradient(to bottom,var(--shadow),transparent)}.status-menu{position:relative;display:block!important;width:1060px;padding:0 0 0 173px;margin:0 auto;box-sizing:border-box}.fixed .status-menu{padding:0 0 0 71px}.status-menu:after{content:"";position:absolute;top:-51px;left:-8px;width:150px;height:150px;background:var(--bg-dark) var(--avatar) no-repeat center top/cover;border:8px solid var(--bg);border-radius:50%;opacity:1;box-shadow:0 1px 2px var(--shadow)}.fixed .status-menu:after{top:0;width:48px;height:48px;box-shadow:none}.status-menu .status-button{display:inline-block!important;height:32px;padding:16px 0!important;margin:0 15px!important;color:var(--text-head)!important;font-size:17.6px!important;line-height:30px;white-space:nowrap;font-family:Oswald!important;text-transform:uppercase;letter-spacing:1px}.status-menu .status-button.on{color:var(--text-head-h)!important}.status-button.all_anime:after{background:var(--accent)!important}.status-button.reading:after,.status-button.watching:after{background:var(--watching)!important}.status-button.completed:after{background:var(--completed)!important}.status-button.onhold:after{background:var(--onhold)!important}.status-button.dropped:after{background:var(--dropped)!important}.status-button.plantoread:after,.status-button.plantowatch:after{background:var(--plantowatch)!important}.status-menu-container .search-container{top:19px;right:0}#search-box{padding-right:22px;border:2px solid transparent;border-radius:13px;margin-top:0!important}#search-box.open{width:150px!important;background:var(--btn-bg);border:2px solid var(--bg-dark)}#search-box input{background:0 0;border:none;border-radius:13px;outline:0;color:var(--text)}#search-box.open input{text-indent:7.5px;line-height:20px}.status-menu-container .search-container #search-button{position:absolute;right:0;top:0;width:26px;height:26px;border-radius:13px;margin-top:0;text-align:center}.open~#search-button{pointer-events:none}#search-button i{color:var(--text-head)!important;font-size:18px;line-height:26px}.open~#search-button i{font-size:14px;line-height:24px}#search-box:after{content:"";position:absolute;right:0;top:0;width:0;height:22px;padding-right:22px;background:linear-gradient(to right,var(--btn-bg) 2px,transparent 9.5px,transparent 142.5px,var(--btn-bg) 150px) content-box;border:2px solid transparent;border-radius:13px;pointer-events:none;opacity:0}#search-box.open:after{width:150px;opacity:1}.list-menu-float{position:relative;top:auto;display:block;width:904px;height:0;padding-left:155px;margin:0 auto;border:none;background:0 0;text-align:left;font-size:0;z-index:38}.icon-menu,.list-menu-float form{display:inline-block!important}.list-menu-float .icon-menu{top:74px;margin:0 6px 0 0}.list-menu-float .icon-menu .text{top:0!important;left:26px!important;display:inline-block;width:auto!important;height:26px;color:var(--text)!important;font-size:14px!important;opacity:1!important}.list-menu-float .icon-menu:hover .text{color:var(--btn-text-h)!important}.list-menu-float .icon-menu svg.icon{top:6px!important;left:6px!important;max-width:14px;max-height:14px;fill:var(--text)}.list-menu-float .icon-menu:hover svg.icon{fill:var(--btn-text-h)}[data-owner="1"] .list-menu-float .icon-menu.profile{position:absolute;left:0;top:-43px;display:block!important;width:150px!important;height:150px!important;background:0 0!important;border-radius:50%;font-size:0;box-shadow:none}[data-owner=""] .icon-menu.profile{background-image:none!important}[data-owner=""] .icon-menu.profile:before{content:"\f007";position:absolute;top:0;left:0;display:block;width:26px;height:26px;font-size:14px;line-height:26px;text-align:center;color:var(--text);font-family:FontAwesome}[data-owner=""] .icon-menu.profile:hover:before{color:var(--btn-text-h)}[data-owner=""] .icon-menu.profile:after{content:"Profile";position:absolute;top:0;left:26px;display:inline-block;height:26px;font-size:14px;color:var(--text)}[data-owner=""] .icon-menu.profile:hover:after{color:var(--btn-text-h)}.icon-menu.quick-add svg{display:none}.icon-menu.quick-add:before{content:"\f067";background:0 0!important;font-size:14px;text-align:center;font-family:FontAwesome;box-shadow:none}.icon-menu.quick-add:hover:before{color:var(--btn-text-h)!important}.icon-menu.setting{overflow:visible}.icon-menu.setting:hover{width:26px!important}.icon-menu.setting .text{top:-2px!important;left:0!important;width:240px!important;height:26px!important;padding:2px 0;overflow:visible;font-size:0!important;opacity:1!important;pointer-events:none;z-index:-1}.icon-menu.setting:hover .text{pointer-events:auto}.icon-menu.setting .text a{position:absolute!important;top:2px!important;left:13px!important;width:0!important;height:26px!important;background:var(--btn-bg-h)!important;border:none!important;border-radius:0 13px 13px 0;overflow:hidden;color:var(--btn-text-h)!important;font:14px/26px Arial,Verdana,sans-serif!important;text-indent:9px;text-align:center;white-space:nowrap;opacity:0!important}.icon-menu.setting:hover .text a{width:120px!important;border-radius:0 13px 13px 0;opacity:1!important}.icon-menu.setting:hover .text .link-list-setting{left:120px!important}.icon-menu.setting .text a:hover{background:var(--btn-head-bg-h)!important}.list-status-title{width:1060px!important;height:64px!important;margin-top:-64px;background:0 0!important}.list-status-title .text{display:none!important}.list-status-title .stats{position:absolute;top:10px;right:32px!important;display:block;width:auto;height:26px!important;border-radius:0 0 26px 0;font-size:0;line-height:13px!important}.stats a{margin:0 0 0 6px!important;font:14px/26px Arial,Verdana,sans-serif}.stats a i{width:26px;text-align:center}.list-stats{position:absolute;top:416px;width:1060px!important;background:0 0!important;color:var(--text)!important;font-weight:700}.list-table>tbody:first-of-type{position:relative;top:-26px;margin-top:-30px;left:1032px;display:block;width:30px;height:30px;background:0 0!important;z-index:39}.list-table>tbody:first-of-type:after{content:"\f0dc";position:absolute;top:0;right:0;margin:2px;font-size:14px;font-family:FontAwesome;text-align:center}.list-table>tbody:first-of-type:hover:after{background:var(--btn-head-bg-h)!important;color:var(--btn-text-h)!important}.list-table-header{position:absolute;top:0;right:15px;display:block;width:auto;height:26px;padding:2px 0;font-size:0;white-space:nowrap;pointer-events:none;z-index:-1}.list-table>tbody:first-of-type:hover .list-table-header{pointer-events:auto}.list-table .list-table-header .header-title{position:relative;display:inline-block;width:auto!important;height:auto;padding:0!important;border:none;background:0 0;font-weight:400}.list-table>tbody:first-of-type:hover .header-title{opacity:1}.list-table .list-table-header .header-title .link.sort{display:block;width:13px;height:26px;background:var(--btn-bg-h);border-radius:13px 0 0 13px;margin-left:-13px;overflow:hidden;box-sizing:border-box;color:var(--btn-text-h)!important;font:11px/26px Verdana,Arial,sans-serif;text-align:center;text-indent:-9px;white-space:normal;opacity:0}.list-table tbody:first-of-type:hover .list-table-header .header-title .link.sort{width:80px;opacity:1}.list-table-header .header-title a.hover_info{display:none!important}.list-table .list-table-header .header-title .link.sort:hover{background:var(--btn-head-bg-h)}.list-table-header .header-title a .sort-icon{position:absolute;left:50%;width:10px;height:10px;margin-left:-5px;color:inherit!important;font-size:10px;line-height:10px}.sort-icon.fa-sort-asc{top:2px}.sort-icon.fa-sort-desc{bottom:2px}.anime tbody:first-of-type:hover .header-title.finished a,.anime tbody:first-of-type:hover .header-title.started a{padding:0 13px}.manga tbody:first-of-type:hover .header-title.finished a,.manga tbody:first-of-type:hover .header-title.started a{width:100px!important}.header-title.title a{font-size:0!important}.header-title.title a:after{content:"Title";font-size:11px}.list-table-header .header-title.tags{display:none!important}.list-item{position:relative;display:block;width:100%;background:var(--bg)!important;border:none;margin-bottom:8px}.list-table-data{position:relative;display:flex;max-width:1060px;min-height:64px;align-items:center;font-size:0}.data{display:block!important;padding:0!important;border:none!important;flex:0 0 auto;color:var(--text);font-size:11px}.list-table .list-table-data .data a{color:var(--text)!important;text-decoration:none!important}.list-table .list-table-data a:not(.edit-disabled):hover{color:var(--text-h)!important}.list-unit .loading-space{margin:14px 0 22px}.list-unit .loading-space #loading-spinner{width:20px;height:20px;margin:0 auto;color:var(--text)}.list-table[data-items="[]"]:after{content:"No entries found. Try another category?";display:block;width:900px;background:var(--bg);border-radius:16px;margin:32px auto;color:var(--text);font:16px/32px Arial,Verdana,sans-serif;text-align:center}[data-owner="1"] .list-table[data-items="[]"]:after{content:"No entries found. Why not add some?"}[data-query*='"s":'] .list-table[data-items="[]"]:after{content:"No entries found. Perhaps your search terms are too restrictive?"}.data.status{position:absolute;top:0;left:0;width:1px!important;height:100%;padding:0!important}.status.reading,.status.watching{background:var(--watching)!important}.status.completed{background:var(--completed)!important}.status.onhold{background:var(--onhold)!important}.status.dropped{background:var(--dropped)!important}.status.plantoread,.status.plantowatch{background:var(--plantowatch)!important}.data.image{width:64px;height:64px;margin:4px 0 4px 8px;order:1}.data.image a{position:relative;display:block!important;border-radius:50%;overflow:hidden}.data.image img{width:64px!important;height:64px!important;border:none!important;object-fit:cover}.data.image a:after{content:"\f14c";position:absolute;top:0;left:0;display:block;width:100%;height:100%;background:rgba(0,0,0,.5);color:#fff;font:30px/64px FontAwesome;opacity:0}.data.image a:hover:after{opacity:1}.data.number{position:relative;top:-22px;width:20px;height:20px;background:var(--bg);border-radius:10px;margin:0 -28px 0 8px;order:1;line-height:20px;font-weight:700;z-index:1}.list-item:nth-child(n+101) .data.number{text-indent:-7px}.list-item:nth-child(n+1001) .data.number{width:27px;margin-right:-35px}.list-item:nth-child(n+10001) .data.number{width:34px;margin-right:-42px}.data.title{position:relative;width:142px;height:16px;padding:32px 0 0 8px!important;order:12;flex:1 0 auto;line-height:16px}.data.title .link.sort{position:absolute;top:16px;left:8px;display:inline-block;max-width:100%;padding-right:16px;overflow:hidden;box-sizing:border-box;line-height:16px;white-space:nowrap;text-overflow:ellipsis}.list-table .list-table-data .title .link:hover{color:var(--accent)!important}.content-status,.rereading,.rewatching{color:var(--text-dim)!important;font-size:10px!important}.content-status:before,.rereading:before,.rewatching:before{content:"["}.content-status:after,.rereading:after,.rewatching:after{content:"] - "}.add-edit-more{display:inline;float:none!important;color:var(--text-dim)}.list-table .list-table-data .title .add-edit-more a{color:var(--text-dim)!important}.list-table .list-table-data .title .add-edit-more a:hover{color:var(--text-dim-h)!important}.icon-watch{display:none!important}.data.type{position:relative;top:-16px;z-index:1;width:92px;height:16px;padding-left:8px!important;margin-right:-100px;order:11;text-align:left!important;color:var(--text-dim);line-height:16px;font-size:10px}.data.score{position:relative;width:26px;height:26px;order:13}.data.score a{display:block;width:26px;height:26px;background:var(--btn-bg);border-radius:13px;margin:0 0 0 auto;line-height:26px}.list-table .list-table-data .score a:not(.edit-disabled):hover{background:var(--btn-bg-h);color:var(--btn-text-h)!important}.data.score select{position:absolute;top:0;right:0;display:block;width:40px;height:26px;padding:0 9px;background:var(--btn-bg-h) url(https://i.imgur.com/KF8oOyC.png) no-repeat 20px center/16px auto;border:none;border-radius:13px;box-shadow:none!important;color:var(--btn-text-h);font:bold 1.1em/26px Verdana,Arial,sans-serif;-webkit-appearance:none;-moz-appearance:none;appearance:none}@-moz-document url-prefix(){.data.score select{padding:0 16px 0 0;text-align:center}}.data.score select:focus{outline:0!important;box-shadow:0 2px 2px rgba(0,0,0,.3)}.data.chapter,.data.progress,.data.volume{width:92px;order:15}.data.chapter{margin-top:-34px}.data.volume{margin:34px 0 0 -92px}.data.chapter span,.data.progress span,.data.volume span{color:var(--text)}.data.progress:before{content:"Progress:";color:var(--text-dim)}.data.chapter:before{content:"Chapters:";color:var(--text-dim)}.data.volume:before{content:"Volumes:";color:var(--text-dim)}.data.chapter span:only-of-type:after,.data.progress span:only-of-type:after,.data.volume span:only-of-type:after{content:" \f058";position:relative;top:1px;color:var(--checkmark);font-family:FontAwesome;font-size:13px}.data.chapter input,.data.progress input,.data.volume input{height:15px;padding:0 1px;background:var(--btn-bg);border:1px solid var(--bg-dark);outline-color:var(--accent)!important;box-sizing:border-box;color:var(--text-dark);font:11px Verdana,Arial,sans-serif}.data.priority{position:relative;width:92px;height:74px;background:var(--bg);margin-right:-92px;order:14;color:var(--text);line-height:74px;opacity:1;pointer-events:none;z-index:1}.status:not(.plantowatch):not(.plantoread)~.data.priority{display:none!important}.list-item:hover .data.priority{opacity:0}.data.priority:before{content:"\f0a2";font-family:FontAwesome}.data.magazine,.data.rated,.data.retail,.data.season,.data.storage{margin-right:4px;order:19;flex-shrink:1}.data.rated{width:40px}.data.magazine{width:90px}.data.retail,.data.storage{width:72px}.data.season{width:92px;order:20}.data.magazine:before,.data.rated:before,.data.retail:before,.data.season:before,.data.storage:before{display:block;color:var(--text-dim)}.data.rated:before{content:"Rated:"}.data.magazine:before{content:"Magazine:"}.data.retail:before,.data.storage:before{content:"Storage:"}.data.season:before{content:"Premiered:"}.data.season:empty:after{content:"Unknown";display:block;color:var(--text-dim)}.data.licensor,.data.studio,.data.tags{width:120px;padding:3px 0!important;margin-right:8px;order:21;flex-shrink:1}.data.licensor span,.data.studio span,.data.tags span{display:block;padding:1px 0;font-size:0!important;line-height:0}.data.licensor a,.data.studio a,.data.tags a:not(.edit){display:block;padding:1px;background:var(--btn-bg);border-radius:8.5px;color:var(--text)!important;font-size:11px!important;line-height:15px}.list-table .list-table-data .licensor span a:hover,.list-table .list-table-data .studio span a:hover,.list-table .list-table-data .tags span a:hover{background:var(--btn-bg-h);color:var(--btn-text-h)!important}.data.licensor:empty:before,.data.magazine:empty:before,.data.studio:empty:before{display:block;padding:1px;color:var(--text-dim);font-size:10px;line-height:15px;white-space:pre}.data.studio:empty:before{content:"Unknown\aStudio"}.data.licensor:empty:before{content:"Unknown\aLicensor"}.data.magazine:empty:before{content:"Unknown\aMagazine"}.data.tags textarea{position:absolute;top:3px;right:4px;z-index:5;width:530px!important;height:calc(100% - 6px)!important;background:var(--btn-bg);border:1px solid var(--bg-dark);outline-color:var(--accent)!important;resize:none;color:var(--text)}@-moz-document url-prefix(){.data.tags textarea{width:524px!important;height:calc(100% - 14px)!important;padding:2px;box-sizing:initial!important}}.data.tags a.edit{position:absolute;top:0;right:0;width:5px!important;height:100%!important;background:var(--edit-btn);text-align:left!important;font-size:0!important;opacity:0;z-index:1}.list-item:hover .data.tags a.edit{opacity:.7}.list-item:hover .data.tags a.edit:hover{width:25px!important;opacity:1}.data.tags a.edit:after{content:"\f040";position:absolute;top:50%;right:0;width:100%;height:20px;margin-top:-10px;color:var(--text);font:0/20px FontAwesome;text-align:center;opacity:0}.data.tags a.edit:hover:after{font-size:14px;opacity:1}.data.airing-finished,.data.airing-started,.data.days,.data.finished,.data.started{position:relative;width:100px;height:14px;overflow:hidden;order:25;color:var(--text);font-size:9px;line-height:14px;text-align:left!important;text-overflow:ellipsis}.data.started{top:-20px}.data.finished{top:0;margin-left:-100px}.data.days{top:20px;margin-left:-100px}.data.airing-started{top:-10px}.data.airing-finished{top:10px;margin-left:-100px}.data.airing-finished:before,.data.airing-started:before,.data.days:before,.data.finished:before,.data.started:before{display:inline-block;width:29px;padding-right:4px;border-right:1px solid var(--text-dim);text-align:right;color:var(--text-dim)}.data.started:before{content:"Start"}.data.finished:before{content:"End"}.data.days:before{content:"Days"}.data.airing-started:before{content:"Aired"}.manga .data.airing-started:before{content:"Issued"}.data.airing-finished:before{content:"to"}.manga .data.airing-finished,.manga .data.airing-started{width:107px}.manga .data.airing-finished{margin-left:-107px}.manga .data.airing-finished:before,.manga .data.airing-started:before{width:36px}.more-info{border:none!important}.more-info .td1{position:relative;padding-top:23px;color:var(--text-dark)}.more-info .td1>div{margin:0}.more-info .td1>div>a{position:absolute;top:0;left:0;border-bottom:2px solid var(--accent)}.list-table .more-info .more-content a{color:var(--text-dark)!important}.list-table .more-info .more-content a:hover{color:var(--accent)!important}footer{position:absolute;bottom:0;left:0;width:100%}#footer-block{min-width:1060px;height:32px;padding:16px 0;background:var(--bg)}#footer-block:before{content:"";position:absolute;left:0;top:-2px;width:100%;min-width:1060px;height:2px;background:linear-gradient(to top,rgba(0,0,0,.1),transparent)}#copyright{padding:0;color:var(--text-head);line-height:16px}#copyright:after{content:"\aList design by Valerio Lyndon.";white-space:pre}#fancybox-overlay{background:#000!important;opacity:.2!important}#fancybox-outer [class^=fancy-]{display:none}#fancybox-outer{background:var(--bg)!important;box-shadow:0 0 32px rgba(0,0,0,.5)}#fancybox-outer #fancybox-close{top:-13px;right:-13px;width:16px;height:16px;padding:2px;background:var(--btn-bg);border:3px solid var(--btn-text-h);border-radius:13px;color:var(--text);text-align:center;box-shadow:0 1px 2px var(--shadow)}#fancybox-outer #fancybox-close:after{content:"\f00d";display:block;margin-top:-1px;font:16px/1 FontAwesome}#fancybox-outer #fancybox-close:hover{background:var(--text);color:var(--btn-text-h)}#advanced-options{top:64px;width:910px;padding:32px 0;background:var(--bg);border:none;box-shadow:0 0 32px rgba(0,0,0,.5);color:var(--text-dark)}#advanced-options .advanced-options-button,#advanced-options .advanced-options-header,#advanced-options [class*="-widget"]{width:100%;padding:0;border:none}#advanced-options .filter-widget:last-of-type,#advanced-options .sort-widget:last-of-type{padding-bottom:0}#advanced-options .filter,#advanced-options .sort{padding-bottom:32px}#advanced-options .advanced-options-header{font-size:0;line-height:26px;box-sizing:border-box}#advanced-options .advanced-options-header:before{display:inline-block;width:249px;height:100%;padding-bottom:7.5px;font-size:16px;line-height:26px;text-align:right}#advanced-options .filter .advanced-options-header:before{content:"Filter"}#advanced-options .sort .advanced-options-header:before{content:"Sort"}#advanced-options .advanced-options-header .description{display:inline-block;width:20px;margin:0;color:transparent;white-space:nowrap;vertical-align:top;transition:all .15s ease;pointer-events:none}#advanced-options .advanced-options-header .description:hover{color:inherit;pointer-events:auto}#advanced-options .advanced-options-header .description:before{content:"\f059";display:inline-block;width:20.5px;color:var(--icon);font:14px/26px FontAwesome;text-align:center;pointer-events:auto}#advanced-options .advanced-options-header .description:hover:before{color:var(--text-dim)}#advanced-options [class*="-widget"]{font-size:0;line-height:1;white-space:nowrap}#advanced-options [class*="-widget"]>*{font-size:12px;vertical-align:top}#advanced-options [class*="-widget"] .widget-header{width:250.5px;height:26px;padding:11px 7.5px 11px 0;border-right:2px solid var(--text-dim);margin-right:7.5px;line-height:26px;text-align:right}#advanced-options [class*="-widget"] span{line-height:26px}#advanced-options [class*="-widget"] input,#advanced-options [class*="-widget"] label,#advanced-options [class*="-widget"] select,#advanced-options [class*="-widget"] span:not(.widget-header){height:26px;margin:11px 0;border-color:var(--text-dim)!important;border-radius:13px;box-sizing:border-box;color:var(--text-dark);font-size:12px}#advanced-options [class*="-widget"] input,#advanced-options [class*="-widget"] select{padding:0 7.5px;background:0 0;outline:0}#advanced-options [class*="-widget"] select{padding-right:16px;background:transparent url(https://i.imgur.com/hFijppc.png) no-repeat right center/16px auto}#advanced-options [class*="-widget"] input:focus,#advanced-options [class*="-widget"] option,#advanced-options [class*="-widget"] select:focus{background-color:var(--btn-bg)!important}#advanced-options :disabled,#advanced-options input:disabled+label{opacity:.5;color:var(--text)!important}#advanced-options .title input{width:387.5px!important}#advanced-options .filter-widget[class*="-status"] select{width:197.5px!important}#advanced-options .magazine select,#advanced-options .producer select{width:387.5px!important}#advanced-options .filter-widget[class*="-date"] span:nth-of-type(n+2){display:inline-block;width:40px;padding:0 3px 0 7.5px;border:1px solid var(--text-dim);border-right:none;border-radius:13px 0 0 13px;margin-right:0!important;line-height:24px;font-style:italic}#advanced-options .filter-widget[class*="-date"] span:nth-of-type(3){margin-left:7.5px!important}#advanced-options .filter-widget[class*="-date"] .day,#advanced-options .filter-widget[class*="-date"] .month,#advanced-options .filter-widget[class*="-date"] .year{border-radius:0;padding:0 16px 0 7.5px;border-left-width:0}#advanced-options .filter-widget[class*="-date"] .month,#advanced-options .filter-widget[class*="-date"] .year{border-right:none}#advanced-options .filter-widget[class*="-date"] .day{border-radius:0 13px 13px 0}#advanced-options .filter-widget[class*="-date"] .year{width:60px!important}#advanced-options .filter-widget[class*="-date"] .day,#advanced-options .filter-widget[class*="-date"] .month{width:45px!important}#advanced-options .aired-season .year{width:60px!important}#advanced-options .aired-season .season{width:130px!important;margin-left:7.5px}#advanced-options .first select,#advanced-options .second select{width:190px!important}#advanced-options .sort-widget input[type=radio]+label{width:92.25px!important;border-radius:13px;margin-left:7.5px;background:0 0!important;color:var(--text-dark);line-height:14px;transition:all .15s ease}#advanced-options .sort-widget input[type=radio]:not(:disabled)+label:hover{background:var(--btn-bg)!important}#advanced-options .sort-widget input[type=radio]:not(:disabled):checked+label{background:var(--text-dim)!important;border:1px solid var(--text-dim);color:var(--bg)!important}#advanced-options .sort-widget input[type=radio]:not(:checked)+label i{color:var(--icon)}#advanced-options #fancybox-close,#advanced-options .advanced-options-button a{width:90px;height:26px;padding:0;background:var(--btn-bg);border-radius:13px;box-shadow:0 1px 2px var(--shadow);color:var(--text-dark);line-height:26px;text-align:center}#advanced-options #fancybox-close:hover,#advanced-options .advanced-options-button a:hover{background:var(--btn-bg-h);color:var(--btn-text-h)}#advanced-options .advanced-options-button .btn-apply{margin:0 0 0 -106px}#advanced-options .advanced-options-button .btn-clear{margin:0 0 0 8px}#advanced-options #fancybox-close{left:50%;top:auto;bottom:32px;border:none;margin-left:53px}#advanced-options .btn-apply:before{content:"\f00c ";font-family:FontAwesome}#advanced-options .btn-clear:before{content:"\f12d ";font-family:FontAwesome}#advanced-options #fancybox-close:after{content:"\f00d Close";font:12px/26px Arial,FontAwesome,sans-serif}#fancybox-wrap[style*="width: 320px;"]{height:120px!important}[style*="width: 320px;"] #fancybox-inner{height:calc(100% - 20px)!important}div[style^="width: 300px;"]{display:flex;height:100%!important;flex-flow:column nowrap;justify-content:center;color:var(--text);font-size:13px!important}div[style^="width: 300px;"] div{font-size:0}div[style^="width: 300px;"] input{display:block;width:240px;height:26px;background:var(--btn-bg);border:none;border-radius:13px;box-shadow:0 1px 2px var(--shadow);margin:0 auto 5px;color:var(--text);font:normal 12px/26px Arial,Verdana,sans-serif;transition:all .3s ease;cursor:pointer}div[style^="width: 300px;"] input:hover{background:var(--btn-bg-h);color:var(--btn-text-h)} body { --avatar: url(https://imgur.com/mmiig7Y.png); } @\import "https://malcat-gen.appspot.com/headers?template=[data-query*='\"status\":7']:not([data-query*='order']):not([data-query*='tag\"']):not([data-query*='\"s\"']) .list-item:nth-child($index){margin-top:162px;}[data-query*='\"status\":7']:not([data-query*='order']):not([data-query*='tag\"']):not([data-query*='\"s\"']) .list-item:nth-child($index) .status:before{content:'$content'}"; /*-S-T-A-R-T--------------------*\ | Dark Mode R3.3 | \*------------------------------*/ :root{--banner:url(https://images.alphacoders.com/901/901545.png);--character:url(https://imgur.com/PhVWhSF.png);--pbg:#161616;--bg:#212121;--bg-dark:#444;--text:#ababab;--text-h:#416abe;--text-dim:#777;--text-dim-h:#999;--text-dark:#ababab;--shadow:rgba(0,0,0,0.8);--icon:#959595;--accent:#416abe;--btn-bg:#191919;--btn-bg-h:#ababab;--btn-head-bg-h:#416abe;--btn-text-h:#212121;--text-head:#9b9b9b;--text-head-h:#ababab;--cover-bg:#090909;--edit-btn:#323232;--checkmark:#416abe}.cover-block:before{background:linear-gradient(to top,rgba(0,0,0,.8),rgba(0,0,0,0))}#cover-image-container:after{color:#f6f5ff;text-shadow:2px 2px 8px #e4bef4}.status-menu-container:after{background:linear-gradient(to bottom,rgba(0,0,0,.6),rgba(0,0,0,0))}#footer-block:before{background:linear-gradient(to top,rgba(0,0,0,.3),rgba(0,0,0,0))}.data.score select{background-image:url(https://i.imgur.com/hFijppc.png)}#fancybox-overlay{opacity:.35!important}#advanced-options,#fancybox-outer{box-shadow:0 0 32px rgba(0,0,0,.75)}#fancybox-frame{-webkit-filter:invert(87.8%) hue-rotate(197deg);filter:invert(87.8%) hue-rotate(197deg)}#advanced-options [class*="-widget"] select{background-image:url(https://i.imgur.com/KF8oOyC.png)} /*------------------------E-N-D-*/ body { --name: "Dank\a Memzyt"; } /*-S-T-A-R-T--------------------*\ | Favourite Hearts (Left) R0.4 | \*------------------------------*/ .data.tags span{padding:0}.data.tags span a{margin:1px 0}.data.tags span a[href*="=Favorite"],.data.tags span a[href*="=Favourite"]{position:absolute;left:-34px;top:calc(50% - 13px);width:26px;height:26px;padding:0;background:var(--bg);border-radius:50%;color:#ff65ad!important;font-size:0!important;line-height:23px;overflow:hidden;box-shadow:0 1px 2px rgba(0,0,0,.2)}.data.tags span a[href*="=Favorite"]:before,.data.tags span a[href*="=Favourite"]:before{content:"♥";font-size:26px} /*------------------------E-N-D-*/ /*-S-T-A-R-T--------------------*\ | Header Outline R0.0 | \*------------------------------*/ /* Change colour of border here. */ :root { --header-border: #d8332c; } .status-menu-container:before{height:56px;border-width:4px 0;border-style:solid;border-color:var(--header-border)}.status-menu:after{left:-4px;top:-47px;border-width:4px;box-shadow:0 0 0 4px var(--header-border)}.fixed .status-menu:after{top:4px} /*-S-T-A-R-T--------------------*\ | CatCol Header Text R0.0 | \*------------------------------*/ .status-menu .status-button{transition:color .3s ease}.status-menu .status-button.on:nth-of-type(1),.status-menu .status-button:nth-of-type(1):hover{color:var(--accent)!important}.status-menu .status-button.on:nth-of-type(2),.status-menu .status-button:nth-of-type(2):hover{color:var(--watching)!important}.status-menu .status-button.on:nth-of-type(3),.status-menu .status-button:nth-of-type(3):hover{color:var(--completed)!important}.status-menu .status-button.on:nth-of-type(4),.status-menu .status-button:nth-of-type(4):hover{color:var(--onhold)!important}.status-menu .status-button.on:nth-of-type(5),.status-menu .status-button:nth-of-type(5):hover{color:var(--dropped)!important}.status-menu .status-button.on:nth-of-type(6),.status-menu .status-button:nth-of-type(6):hover{color:var(--plantowatch)!important} /*------------------------E-N-D-*/ /*-S-T-A-R-T--------------------*\ | Character Renders R0.3 | \*------------------------------*/ footer:before, footer:after { content: ""; position: fixed; top: 0; z-index: -1; width: calc(50% - 538px); min-width: 262px; height: 100%; background: transparent no-repeat center bottom / contain scroll; } /* Right Render */ footer:after { left: calc(100% - (50% - 538px)); background-image: url(https://i.imgur.com/AajQ3Mm.png); background-position: right bottom; } /*------------------------E-N-D-*/ /*-S-T-A-R-T--------------------*\ | Horizontal Tags R0.2 | \*------------------------------*/ .list-table-data{padding-bottom:11px}.data.tags{position:absolute;left:0;top:0;display:flex!important;width:0;height:100%;padding:0!important;align-items:flex-end}.data.tags div{max-width:980px;margin:0 0 4px 80px;font-size:0;white-space:nowrap}.data.tags span{display:inline-block;padding:0}.data.tags span a{padding:1px 8px!important;margin:0 4px 0 0;white-space:nowrap}.data.tags span a[href*="=Favo"]{padding:0!important}.data.tags a.edit{right:-1060px}.data.tags textarea{right:-1060px} /*------------------------E-N-D-*/ /*-S-T-A-R-T--------------------*\ | Tag Desc Basis Horizontal R1.2 | \*------------------------------*/ .data.tags span a{position:relative}.data.tags span a:not([href*="=Favo"])::after,.data.tags span a:not([href*="=Favo"])::before{position:absolute;z-index:5;display:block;opacity:0;transition:all .15s efase;pointer-events:none}.data.tags span a:not([href*="=Favo"])::after{top:27px;left:calc(50% - 345px);width:auto;max-width:340px;height:auto;padding:4px 8px;background:var(--btn-bg);border:1px solid var(--text-dim);border-radius:4px;box-sizing:border-box;color:var(--text);font:11px/15px Arial,Verdana;text-align:left;white-space:pre-wrap;transform:translateX(-50%) translateX(340px)}.data.tags span a:not([href*="=Favo"])::before{content:"";top:17px;left:50%;border-width:5px;border-style:solid;border-color:transparent transparent var(--text-dim) transparent;margin-left:-10px}.data.tags span a:hover::after{left:calc(50% - 340px);opacity:1}.data.tags span a:not([href*="=Favo"]):hover::before{margin-left:-5px;opacity:1}.data.tags span:not([href*="=Favo"]) a::after{transform:translateX(-17%) translateX(340px)}.data.tags span:not([href*="=Favo"]):nth-child(n+3) a::after{transform:translateX(-33%) translateX(340px)}.data.tags span:not([href*="=Favo"]):nth-child(n+5) a::after{transform:translateX(-50%) translateX(340px)}.data.tags span:not([href*="=Favo"]):nth-child(n+7) a::after{transform:translateX(-67%) translateX(340px)}.data.tags span:not([href*="=Favo"]):nth-child(n+9) a::after{transform:translateX(-83%) translateX(340px)} /*------------------------E-N-D-*/ .data.tags a[href*="=Guilty%20Pleasure"]:after { content: "You know you shouldn't be watching it, \a but you just cant get enough." } .data.tags a[href*="=Isekai"]:after { content: "Because this world is too boring." } .data.tags a[href*="=Romance"]:after { content: "I wonder what falling in love is like." } /*-S-T-A-R-T--------------------*\ | Category Headers (Round) R0.3 | \*------------------------------*/ [data-query*='"status":7']:not([data-query*='order']):not([data-query*='tag"']):not([data-query*='"s"']) .list-item:nth-child(2) { margin-top: 58px; } .list-item .status:before, .list-item .status:after { position: absolute; top: -40px; left: 0; display: block; width: 1059px; height: 31px; background: var(--bg); border-width: 1px 0 0 1px; border-style: solid; border-color: var(--text-head); border-radius: 16px 16px 0 0; color: var(--text-head); font: 20px/31px Oswald; letter-spacing: 3px; text-indent: -0.5px; text-transform: uppercase; pointer-events: none; } [data-query*='"status":7']:not([data-query*='order']):not([data-query*='tag"']):not([data-query*='"s"']) .list-item .status:after { content: ""; top: auto; bottom: -40px; height: 32px; border-width: 0 0 0 1px; border-radius: 0 0 16px 16px; } .list-item .watching:before, .list-item .reading:before, .list-item .watching:after, .list-item .reading:after { border-color: var(--watching); } .list-item .completed:before, .list-item .completed:after { border-color: var(--completed); } .list-item .onhold:before, .list-item .onhold:after { border-color: var(--onhold); } .list-item .dropped:before, .list-item .dropped:after { border-color: var(--dropped); } .list-item .plantowatch:before, .list-item .plantoread:before, .list-item .plantowatch:after, .list-item .plantoread:after { border-color: var(--plantowatch); } /*------------------------E-N-D-*/ If they don't appear even after visiting that page, could you perhaps tell me the browser you're using? If you're using Brave, try setting "All cookies allowed" or lowering your "Shield" for MAL: Thanks for including your code! |
Feb 16, 2020 7:29 PM
#422
Valerio_Lyndon said: DankMemzYT said: Works fine when I visit your list. Are you viewing your unordered All Anime list while testing the code?Hey, I'm trying to add round category headers but it's not working. /*==============================*\ | "Clarity" by Valerio Lyndon | | R23.3 | \*==============================*/ @\import "https://malcat-gen.appspot.com/headers?template=[data-query*='\"status\":7']:not([data-query*='order']):not([data-query*='tag\"']):not([data-query*='\"s\"']) .list-item:nth-child($index){margin-top:162px;}[data-query*='\"status\":7']:not([data-query*='order']):not([data-query*='tag\"']):not([data-query*='\"s\"']) .list-item:nth-child($index) .status:before{content:'$content'}"; @\import "https://fonts.googleapis.com/css?family=Oswald"; :root{--name:none;--avatar:none;--banner:url(https://i.imgur.com/VoPJz2S.jpg);--character:url(https://i.imgur.com/6IPyngH.png);--background:none;--pbg:#efefef;--bg:#fff;--bg-dark:#ddd;--text:#323232;--text-h:#787878;--text-dim:#bababa;--text-dim-h:#646464;--text-dark:#111;--shadow:rgba(0,0,0,0.2);--icon:#323232;--accent:#4065ba;--btn-bg:#ebebeb;--btn-bg-h:#323232;--btn-head-bg-h:#1d439b;--btn-text-h:#fff;--text-head:#9b9b9b;--text-head-h:#787878;--watching:#2db039;--completed:#26448f;--onhold:#f1c83e;--dropped:#a12f31;--plantowatch:#c3c3c3;--cover-bg:#323232;--edit-btn:#d9d9d9;--checkmark:#9696eb}#advanced-options .advanced-options-button a,#fancybox-close,#search-box,#search-box input,#search-box:after,.data.chapter,.data.image .link:after,.data.licensor a,.data.priority,.data.progress,.data.score a,.data.studio a,.data.tags a,.data.tags a.edit:after,.data.volume,.fixed .status-menu:after,.header .header-title:after,.icon-menu svg,.icon-menu.setting,.icon-menu.setting .text,.icon-menu.setting .text a,.icon-menu:after,.icon-menu:before,.list-table .list-table-header .header-title .link.sort,.list-table-header .header-title,.status-button:after,.status-menu-container.fixed .status-menu,.status-menu-container:not(.fixed) .status-menu,.status-menu:after{transition:all .3s ease!important}#advanced-options .advanced-options-header .description,#advanced-options .advanced-options-header .description:before,#advanced-options [class*="-widget"] input,#advanced-options [class*="-widget"] label,#advanced-options [class*="-widget"] select,#search-button i,.header-info a,.list-table-data a,.more-info .td1>div>a{transition:all .15s ease!important}.header .header-title,.header-info,.icon-menu,.icon-menu.quick-add:before,.list-menu-float .icon-menu,.list-table>tbody:first-of-type:after,.stats a{display:inline-block;height:26px!important;width:26px!important;background:var(--bg)!important;border-radius:13px;box-shadow:0 1px 2px var(--shadow);overflow:hidden;color:var(--text)!important;font:normal 0/26px Arial,Verdana,sans-serif;text-indent:0;text-align:left;white-space:nowrap;vertical-align:top;transition:all .3s ease!important}.header .header-title:hover,.icon-menu:hover,.list-menu-float .icon-menu:hover,.stats a:hover{width:100px!important;background:var(--btn-head-bg-h)!important;color:var(--btn-text-h)!important}html{position:relative;min-height:100%}body{padding-bottom:64px;background:var(--pbg) var(--background) no-repeat center/cover fixed!important}.list-container{position:static;width:100%;background:0 0!important;border:none}.list-block{width:1060px;min-height:initial;margin:64px auto 0}.status-menu-container.fixed+.list-block{margin-top:128px!important}.list-unit{width:100%!important;margin:0}.list-table{border:none!important}a,a:hover{color:var(--accent)}.initialize-tutorial{display:none!important}.cover-block{position:absolute;top:0;left:0;z-index:25;width:100%;min-width:1060px;height:318px;background:var(--cover-bg) var(--banner) no-repeat center center/cover scroll}.cover-block:before{content:"";position:absolute;bottom:0;left:0;display:block;width:100%;height:50px;background:linear-gradient(to top,rgba(0,0,0,.5),transparent)}#cover-image,.btn-list-setting{display:none!important}#list-container #cover-image-container{display:block!important;width:1060px;height:100%;padding:0;background:var(--character) no-repeat right center/contain;margin:0 auto}#cover-image-container:after{content:var(--name);position:absolute;top:55px;left:50%;margin-left:-475px;color:#fff;font:bold 60px/60px Oswald;text-align:left;letter-spacing:15px;text-shadow:1px 4px 7px rgba(0,0,0,.45);text-transform:uppercase;white-space:pre;transform:scale(.9) perspective(350px) rotateY(8deg) rotateZ(-3deg);animation:name-slide 3s 1 .5s backwards}@keyframes name-slide{0%{top:12px;margin-left:-535px;opacity:0;letter-spacing:0;animation-timing-function:ease-out}90%{top:55px;margin-left:-475px}100%{letter-spacing:15px;opacity:1;animation-timing-function:cubic-bezier(0,0,.75,1)}}.header{z-index:36;display:flex;height:36px;margin-top:282px}.header .header-menu{position:static;display:flex;width:auto;height:26px;margin-left:6px;order:2}.btn-menu{height:0;font-size:0!important}.btn-menu #header-menu-button{display:none}.header .header-title{position:static;margin-left:155px;order:1;z-index:1}.header .header-title:before{content:"\f015";display:inline-block;width:26px;background:0 0!important;font-size:14px;font-family:FontAwesome;text-align:center!important}.header .header-title:hover:before{color:var(--btn-text-h)!important}.header .header-title:after{content:"Home";display:inline-block;height:26px!important;width:26px!important;font:14px/26px Arial,Verdana,sans-serif;color:var(--text)}.header .header-title:hover:after{color:var(--btn-text-h)}.header .header-menu .list-menu{position:static;order:1;display:inline-block;height:26px;border:none;background:0 0;box-shadow:none}.header .icon-menu.anime-list,.header .icon-menu.manga-list{position:static;padding:0;margin-right:6px;font-size:0!important;font-weight:400!important}.header .icon-menu.anime-list .text,.header .icon-menu.manga-list .text{position:static!important;font:14px/26px Arial,Verdana,sans-serif;vertical-align:top}.header .header-menu .list-menu .icon-menu svg.icon{position:static;max-width:14px;max-height:14px;padding:6px;fill:var(--text)}.header .header-menu .list-menu .icon-menu:hover svg.icon{fill:var(--btn-text-h)}.header-info{position:static;width:auto!important;padding:0 8px;margin:0!important;font-size:12px;order:2}.header-info a{color:var(--text)!important;text-decoration:none!important}.header-info a:hover{color:var(--text-h)!important}.btn-menu a.username{position:absolute;left:0;top:-7px;display:block;width:150px;height:150px;background:0 0;border-radius:50%;font-size:0}.btn-menu span.username{display:none!important}.status-menu-container{position:relative;z-index:35!important;width:100%;min-width:1060px;height:64px;background:0 0;border:none!important}.status-menu-container.fixed{z-index:45!important}.status-menu-container:after,.status-menu-container:before{content:"";position:absolute;left:0;z-index:-1;display:block;width:100%}.status-menu-container:before{top:0;height:64px;background:var(--bg)}.status-menu-container:after{top:64px;height:2px;background:linear-gradient(to bottom,var(--shadow),transparent)}.status-menu{position:relative;display:block!important;width:1060px;padding:0 0 0 173px;margin:0 auto;box-sizing:border-box}.fixed .status-menu{padding:0 0 0 71px}.status-menu:after{content:"";position:absolute;top:-51px;left:-8px;width:150px;height:150px;background:var(--bg-dark) var(--avatar) no-repeat center top/cover;border:8px solid var(--bg);border-radius:50%;opacity:1;box-shadow:0 1px 2px var(--shadow)}.fixed .status-menu:after{top:0;width:48px;height:48px;box-shadow:none}.status-menu .status-button{display:inline-block!important;height:32px;padding:16px 0!important;margin:0 15px!important;color:var(--text-head)!important;font-size:17.6px!important;line-height:30px;white-space:nowrap;font-family:Oswald!important;text-transform:uppercase;letter-spacing:1px}.status-menu .status-button.on{color:var(--text-head-h)!important}.status-button.all_anime:after{background:var(--accent)!important}.status-button.reading:after,.status-button.watching:after{background:var(--watching)!important}.status-button.completed:after{background:var(--completed)!important}.status-button.onhold:after{background:var(--onhold)!important}.status-button.dropped:after{background:var(--dropped)!important}.status-button.plantoread:after,.status-button.plantowatch:after{background:var(--plantowatch)!important}.status-menu-container .search-container{top:19px;right:0}#search-box{padding-right:22px;border:2px solid transparent;border-radius:13px;margin-top:0!important}#search-box.open{width:150px!important;background:var(--btn-bg);border:2px solid var(--bg-dark)}#search-box input{background:0 0;border:none;border-radius:13px;outline:0;color:var(--text)}#search-box.open input{text-indent:7.5px;line-height:20px}.status-menu-container .search-container #search-button{position:absolute;right:0;top:0;width:26px;height:26px;border-radius:13px;margin-top:0;text-align:center}.open~#search-button{pointer-events:none}#search-button i{color:var(--text-head)!important;font-size:18px;line-height:26px}.open~#search-button i{font-size:14px;line-height:24px}#search-box:after{content:"";position:absolute;right:0;top:0;width:0;height:22px;padding-right:22px;background:linear-gradient(to right,var(--btn-bg) 2px,transparent 9.5px,transparent 142.5px,var(--btn-bg) 150px) content-box;border:2px solid transparent;border-radius:13px;pointer-events:none;opacity:0}#search-box.open:after{width:150px;opacity:1}.list-menu-float{position:relative;top:auto;display:block;width:904px;height:0;padding-left:155px;margin:0 auto;border:none;background:0 0;text-align:left;font-size:0;z-index:38}.icon-menu,.list-menu-float form{display:inline-block!important}.list-menu-float .icon-menu{top:74px;margin:0 6px 0 0}.list-menu-float .icon-menu .text{top:0!important;left:26px!important;display:inline-block;width:auto!important;height:26px;color:var(--text)!important;font-size:14px!important;opacity:1!important}.list-menu-float .icon-menu:hover .text{color:var(--btn-text-h)!important}.list-menu-float .icon-menu svg.icon{top:6px!important;left:6px!important;max-width:14px;max-height:14px;fill:var(--text)}.list-menu-float .icon-menu:hover svg.icon{fill:var(--btn-text-h)}[data-owner="1"] .list-menu-float .icon-menu.profile{position:absolute;left:0;top:-43px;display:block!important;width:150px!important;height:150px!important;background:0 0!important;border-radius:50%;font-size:0;box-shadow:none}[data-owner=""] .icon-menu.profile{background-image:none!important}[data-owner=""] .icon-menu.profile:before{content:"\f007";position:absolute;top:0;left:0;display:block;width:26px;height:26px;font-size:14px;line-height:26px;text-align:center;color:var(--text);font-family:FontAwesome}[data-owner=""] .icon-menu.profile:hover:before{color:var(--btn-text-h)}[data-owner=""] .icon-menu.profile:after{content:"Profile";position:absolute;top:0;left:26px;display:inline-block;height:26px;font-size:14px;color:var(--text)}[data-owner=""] .icon-menu.profile:hover:after{color:var(--btn-text-h)}.icon-menu.quick-add svg{display:none}.icon-menu.quick-add:before{content:"\f067";background:0 0!important;font-size:14px;text-align:center;font-family:FontAwesome;box-shadow:none}.icon-menu.quick-add:hover:before{color:var(--btn-text-h)!important}.icon-menu.setting{overflow:visible}.icon-menu.setting:hover{width:26px!important}.icon-menu.setting .text{top:-2px!important;left:0!important;width:240px!important;height:26px!important;padding:2px 0;overflow:visible;font-size:0!important;opacity:1!important;pointer-events:none;z-index:-1}.icon-menu.setting:hover .text{pointer-events:auto}.icon-menu.setting .text a{position:absolute!important;top:2px!important;left:13px!important;width:0!important;height:26px!important;background:var(--btn-bg-h)!important;border:none!important;border-radius:0 13px 13px 0;overflow:hidden;color:var(--btn-text-h)!important;font:14px/26px Arial,Verdana,sans-serif!important;text-indent:9px;text-align:center;white-space:nowrap;opacity:0!important}.icon-menu.setting:hover .text a{width:120px!important;border-radius:0 13px 13px 0;opacity:1!important}.icon-menu.setting:hover .text .link-list-setting{left:120px!important}.icon-menu.setting .text a:hover{background:var(--btn-head-bg-h)!important}.list-status-title{width:1060px!important;height:64px!important;margin-top:-64px;background:0 0!important}.list-status-title .text{display:none!important}.list-status-title .stats{position:absolute;top:10px;right:32px!important;display:block;width:auto;height:26px!important;border-radius:0 0 26px 0;font-size:0;line-height:13px!important}.stats a{margin:0 0 0 6px!important;font:14px/26px Arial,Verdana,sans-serif}.stats a i{width:26px;text-align:center}.list-stats{position:absolute;top:416px;width:1060px!important;background:0 0!important;color:var(--text)!important;font-weight:700}.list-table>tbody:first-of-type{position:relative;top:-26px;margin-top:-30px;left:1032px;display:block;width:30px;height:30px;background:0 0!important;z-index:39}.list-table>tbody:first-of-type:after{content:"\f0dc";position:absolute;top:0;right:0;margin:2px;font-size:14px;font-family:FontAwesome;text-align:center}.list-table>tbody:first-of-type:hover:after{background:var(--btn-head-bg-h)!important;color:var(--btn-text-h)!important}.list-table-header{position:absolute;top:0;right:15px;display:block;width:auto;height:26px;padding:2px 0;font-size:0;white-space:nowrap;pointer-events:none;z-index:-1}.list-table>tbody:first-of-type:hover .list-table-header{pointer-events:auto}.list-table .list-table-header .header-title{position:relative;display:inline-block;width:auto!important;height:auto;padding:0!important;border:none;background:0 0;font-weight:400}.list-table>tbody:first-of-type:hover .header-title{opacity:1}.list-table .list-table-header .header-title .link.sort{display:block;width:13px;height:26px;background:var(--btn-bg-h);border-radius:13px 0 0 13px;margin-left:-13px;overflow:hidden;box-sizing:border-box;color:var(--btn-text-h)!important;font:11px/26px Verdana,Arial,sans-serif;text-align:center;text-indent:-9px;white-space:normal;opacity:0}.list-table tbody:first-of-type:hover .list-table-header .header-title .link.sort{width:80px;opacity:1}.list-table-header .header-title a.hover_info{display:none!important}.list-table .list-table-header .header-title .link.sort:hover{background:var(--btn-head-bg-h)}.list-table-header .header-title a .sort-icon{position:absolute;left:50%;width:10px;height:10px;margin-left:-5px;color:inherit!important;font-size:10px;line-height:10px}.sort-icon.fa-sort-asc{top:2px}.sort-icon.fa-sort-desc{bottom:2px}.anime tbody:first-of-type:hover .header-title.finished a,.anime tbody:first-of-type:hover .header-title.started a{padding:0 13px}.manga tbody:first-of-type:hover .header-title.finished a,.manga tbody:first-of-type:hover .header-title.started a{width:100px!important}.header-title.title a{font-size:0!important}.header-title.title a:after{content:"Title";font-size:11px}.list-table-header .header-title.tags{display:none!important}.list-item{position:relative;display:block;width:100%;background:var(--bg)!important;border:none;margin-bottom:8px}.list-table-data{position:relative;display:flex;max-width:1060px;min-height:64px;align-items:center;font-size:0}.data{display:block!important;padding:0!important;border:none!important;flex:0 0 auto;color:var(--text);font-size:11px}.list-table .list-table-data .data a{color:var(--text)!important;text-decoration:none!important}.list-table .list-table-data a:not(.edit-disabled):hover{color:var(--text-h)!important}.list-unit .loading-space{margin:14px 0 22px}.list-unit .loading-space #loading-spinner{width:20px;height:20px;margin:0 auto;color:var(--text)}.list-table[data-items="[]"]:after{content:"No entries found. Try another category?";display:block;width:900px;background:var(--bg);border-radius:16px;margin:32px auto;color:var(--text);font:16px/32px Arial,Verdana,sans-serif;text-align:center}[data-owner="1"] .list-table[data-items="[]"]:after{content:"No entries found. Why not add some?"}[data-query*='"s":'] .list-table[data-items="[]"]:after{content:"No entries found. Perhaps your search terms are too restrictive?"}.data.status{position:absolute;top:0;left:0;width:1px!important;height:100%;padding:0!important}.status.reading,.status.watching{background:var(--watching)!important}.status.completed{background:var(--completed)!important}.status.onhold{background:var(--onhold)!important}.status.dropped{background:var(--dropped)!important}.status.plantoread,.status.plantowatch{background:var(--plantowatch)!important}.data.image{width:64px;height:64px;margin:4px 0 4px 8px;order:1}.data.image a{position:relative;display:block!important;border-radius:50%;overflow:hidden}.data.image img{width:64px!important;height:64px!important;border:none!important;object-fit:cover}.data.image a:after{content:"\f14c";position:absolute;top:0;left:0;display:block;width:100%;height:100%;background:rgba(0,0,0,.5);color:#fff;font:30px/64px FontAwesome;opacity:0}.data.image a:hover:after{opacity:1}.data.number{position:relative;top:-22px;width:20px;height:20px;background:var(--bg);border-radius:10px;margin:0 -28px 0 8px;order:1;line-height:20px;font-weight:700;z-index:1}.list-item:nth-child(n+101) .data.number{text-indent:-7px}.list-item:nth-child(n+1001) .data.number{width:27px;margin-right:-35px}.list-item:nth-child(n+10001) .data.number{width:34px;margin-right:-42px}.data.title{position:relative;width:142px;height:16px;padding:32px 0 0 8px!important;order:12;flex:1 0 auto;line-height:16px}.data.title .link.sort{position:absolute;top:16px;left:8px;display:inline-block;max-width:100%;padding-right:16px;overflow:hidden;box-sizing:border-box;line-height:16px;white-space:nowrap;text-overflow:ellipsis}.list-table .list-table-data .title .link:hover{color:var(--accent)!important}.content-status,.rereading,.rewatching{color:var(--text-dim)!important;font-size:10px!important}.content-status:before,.rereading:before,.rewatching:before{content:"["}.content-status:after,.rereading:after,.rewatching:after{content:"] - "}.add-edit-more{display:inline;float:none!important;color:var(--text-dim)}.list-table .list-table-data .title .add-edit-more a{color:var(--text-dim)!important}.list-table .list-table-data .title .add-edit-more a:hover{color:var(--text-dim-h)!important}.icon-watch{display:none!important}.data.type{position:relative;top:-16px;z-index:1;width:92px;height:16px;padding-left:8px!important;margin-right:-100px;order:11;text-align:left!important;color:var(--text-dim);line-height:16px;font-size:10px}.data.score{position:relative;width:26px;height:26px;order:13}.data.score a{display:block;width:26px;height:26px;background:var(--btn-bg);border-radius:13px;margin:0 0 0 auto;line-height:26px}.list-table .list-table-data .score a:not(.edit-disabled):hover{background:var(--btn-bg-h);color:var(--btn-text-h)!important}.data.score select{position:absolute;top:0;right:0;display:block;width:40px;height:26px;padding:0 9px;background:var(--btn-bg-h) url(https://i.imgur.com/KF8oOyC.png) no-repeat 20px center/16px auto;border:none;border-radius:13px;box-shadow:none!important;color:var(--btn-text-h);font:bold 1.1em/26px Verdana,Arial,sans-serif;-webkit-appearance:none;-moz-appearance:none;appearance:none}@-moz-document url-prefix(){.data.score select{padding:0 16px 0 0;text-align:center}}.data.score select:focus{outline:0!important;box-shadow:0 2px 2px rgba(0,0,0,.3)}.data.chapter,.data.progress,.data.volume{width:92px;order:15}.data.chapter{margin-top:-34px}.data.volume{margin:34px 0 0 -92px}.data.chapter span,.data.progress span,.data.volume span{color:var(--text)}.data.progress:before{content:"Progress:";color:var(--text-dim)}.data.chapter:before{content:"Chapters:";color:var(--text-dim)}.data.volume:before{content:"Volumes:";color:var(--text-dim)}.data.chapter span:only-of-type:after,.data.progress span:only-of-type:after,.data.volume span:only-of-type:after{content:" \f058";position:relative;top:1px;color:var(--checkmark);font-family:FontAwesome;font-size:13px}.data.chapter input,.data.progress input,.data.volume input{height:15px;padding:0 1px;background:var(--btn-bg);border:1px solid var(--bg-dark);outline-color:var(--accent)!important;box-sizing:border-box;color:var(--text-dark);font:11px Verdana,Arial,sans-serif}.data.priority{position:relative;width:92px;height:74px;background:var(--bg);margin-right:-92px;order:14;color:var(--text);line-height:74px;opacity:1;pointer-events:none;z-index:1}.status:not(.plantowatch):not(.plantoread)~.data.priority{display:none!important}.list-item:hover .data.priority{opacity:0}.data.priority:before{content:"\f0a2";font-family:FontAwesome}.data.magazine,.data.rated,.data.retail,.data.season,.data.storage{margin-right:4px;order:19;flex-shrink:1}.data.rated{width:40px}.data.magazine{width:90px}.data.retail,.data.storage{width:72px}.data.season{width:92px;order:20}.data.magazine:before,.data.rated:before,.data.retail:before,.data.season:before,.data.storage:before{display:block;color:var(--text-dim)}.data.rated:before{content:"Rated:"}.data.magazine:before{content:"Magazine:"}.data.retail:before,.data.storage:before{content:"Storage:"}.data.season:before{content:"Premiered:"}.data.season:empty:after{content:"Unknown";display:block;color:var(--text-dim)}.data.licensor,.data.studio,.data.tags{width:120px;padding:3px 0!important;margin-right:8px;order:21;flex-shrink:1}.data.licensor span,.data.studio span,.data.tags span{display:block;padding:1px 0;font-size:0!important;line-height:0}.data.licensor a,.data.studio a,.data.tags a:not(.edit){display:block;padding:1px;background:var(--btn-bg);border-radius:8.5px;color:var(--text)!important;font-size:11px!important;line-height:15px}.list-table .list-table-data .licensor span a:hover,.list-table .list-table-data .studio span a:hover,.list-table .list-table-data .tags span a:hover{background:var(--btn-bg-h);color:var(--btn-text-h)!important}.data.licensor:empty:before,.data.magazine:empty:before,.data.studio:empty:before{display:block;padding:1px;color:var(--text-dim);font-size:10px;line-height:15px;white-space:pre}.data.studio:empty:before{content:"Unknown\aStudio"}.data.licensor:empty:before{content:"Unknown\aLicensor"}.data.magazine:empty:before{content:"Unknown\aMagazine"}.data.tags textarea{position:absolute;top:3px;right:4px;z-index:5;width:530px!important;height:calc(100% - 6px)!important;background:var(--btn-bg);border:1px solid var(--bg-dark);outline-color:var(--accent)!important;resize:none;color:var(--text)}@-moz-document url-prefix(){.data.tags textarea{width:524px!important;height:calc(100% - 14px)!important;padding:2px;box-sizing:initial!important}}.data.tags a.edit{position:absolute;top:0;right:0;width:5px!important;height:100%!important;background:var(--edit-btn);text-align:left!important;font-size:0!important;opacity:0;z-index:1}.list-item:hover .data.tags a.edit{opacity:.7}.list-item:hover .data.tags a.edit:hover{width:25px!important;opacity:1}.data.tags a.edit:after{content:"\f040";position:absolute;top:50%;right:0;width:100%;height:20px;margin-top:-10px;color:var(--text);font:0/20px FontAwesome;text-align:center;opacity:0}.data.tags a.edit:hover:after{font-size:14px;opacity:1}.data.airing-finished,.data.airing-started,.data.days,.data.finished,.data.started{position:relative;width:100px;height:14px;overflow:hidden;order:25;color:var(--text);font-size:9px;line-height:14px;text-align:left!important;text-overflow:ellipsis}.data.started{top:-20px}.data.finished{top:0;margin-left:-100px}.data.days{top:20px;margin-left:-100px}.data.airing-started{top:-10px}.data.airing-finished{top:10px;margin-left:-100px}.data.airing-finished:before,.data.airing-started:before,.data.days:before,.data.finished:before,.data.started:before{display:inline-block;width:29px;padding-right:4px;border-right:1px solid var(--text-dim);text-align:right;color:var(--text-dim)}.data.started:before{content:"Start"}.data.finished:before{content:"End"}.data.days:before{content:"Days"}.data.airing-started:before{content:"Aired"}.manga .data.airing-started:before{content:"Issued"}.data.airing-finished:before{content:"to"}.manga .data.airing-finished,.manga .data.airing-started{width:107px}.manga .data.airing-finished{margin-left:-107px}.manga .data.airing-finished:before,.manga .data.airing-started:before{width:36px}.more-info{border:none!important}.more-info .td1{position:relative;padding-top:23px;color:var(--text-dark)}.more-info .td1>div{margin:0}.more-info .td1>div>a{position:absolute;top:0;left:0;border-bottom:2px solid var(--accent)}.list-table .more-info .more-content a{color:var(--text-dark)!important}.list-table .more-info .more-content a:hover{color:var(--accent)!important}footer{position:absolute;bottom:0;left:0;width:100%}#footer-block{min-width:1060px;height:32px;padding:16px 0;background:var(--bg)}#footer-block:before{content:"";position:absolute;left:0;top:-2px;width:100%;min-width:1060px;height:2px;background:linear-gradient(to top,rgba(0,0,0,.1),transparent)}#copyright{padding:0;color:var(--text-head);line-height:16px}#copyright:after{content:"\aList design by Valerio Lyndon.";white-space:pre}#fancybox-overlay{background:#000!important;opacity:.2!important}#fancybox-outer [class^=fancy-]{display:none}#fancybox-outer{background:var(--bg)!important;box-shadow:0 0 32px rgba(0,0,0,.5)}#fancybox-outer #fancybox-close{top:-13px;right:-13px;width:16px;height:16px;padding:2px;background:var(--btn-bg);border:3px solid var(--btn-text-h);border-radius:13px;color:var(--text);text-align:center;box-shadow:0 1px 2px var(--shadow)}#fancybox-outer #fancybox-close:after{content:"\f00d";display:block;margin-top:-1px;font:16px/1 FontAwesome}#fancybox-outer #fancybox-close:hover{background:var(--text);color:var(--btn-text-h)}#advanced-options{top:64px;width:910px;padding:32px 0;background:var(--bg);border:none;box-shadow:0 0 32px rgba(0,0,0,.5);color:var(--text-dark)}#advanced-options .advanced-options-button,#advanced-options .advanced-options-header,#advanced-options [class*="-widget"]{width:100%;padding:0;border:none}#advanced-options .filter-widget:last-of-type,#advanced-options .sort-widget:last-of-type{padding-bottom:0}#advanced-options .filter,#advanced-options .sort{padding-bottom:32px}#advanced-options .advanced-options-header{font-size:0;line-height:26px;box-sizing:border-box}#advanced-options .advanced-options-header:before{display:inline-block;width:249px;height:100%;padding-bottom:7.5px;font-size:16px;line-height:26px;text-align:right}#advanced-options .filter .advanced-options-header:before{content:"Filter"}#advanced-options .sort .advanced-options-header:before{content:"Sort"}#advanced-options .advanced-options-header .description{display:inline-block;width:20px;margin:0;color:transparent;white-space:nowrap;vertical-align:top;transition:all .15s ease;pointer-events:none}#advanced-options .advanced-options-header .description:hover{color:inherit;pointer-events:auto}#advanced-options .advanced-options-header .description:before{content:"\f059";display:inline-block;width:20.5px;color:var(--icon);font:14px/26px FontAwesome;text-align:center;pointer-events:auto}#advanced-options .advanced-options-header .description:hover:before{color:var(--text-dim)}#advanced-options [class*="-widget"]{font-size:0;line-height:1;white-space:nowrap}#advanced-options [class*="-widget"]>*{font-size:12px;vertical-align:top}#advanced-options [class*="-widget"] .widget-header{width:250.5px;height:26px;padding:11px 7.5px 11px 0;border-right:2px solid var(--text-dim);margin-right:7.5px;line-height:26px;text-align:right}#advanced-options [class*="-widget"] span{line-height:26px}#advanced-options [class*="-widget"] input,#advanced-options [class*="-widget"] label,#advanced-options [class*="-widget"] select,#advanced-options [class*="-widget"] span:not(.widget-header){height:26px;margin:11px 0;border-color:var(--text-dim)!important;border-radius:13px;box-sizing:border-box;color:var(--text-dark);font-size:12px}#advanced-options [class*="-widget"] input,#advanced-options [class*="-widget"] select{padding:0 7.5px;background:0 0;outline:0}#advanced-options [class*="-widget"] select{padding-right:16px;background:transparent url(https://i.imgur.com/hFijppc.png) no-repeat right center/16px auto}#advanced-options [class*="-widget"] input:focus,#advanced-options [class*="-widget"] option,#advanced-options [class*="-widget"] select:focus{background-color:var(--btn-bg)!important}#advanced-options :disabled,#advanced-options input:disabled+label{opacity:.5;color:var(--text)!important}#advanced-options .title input{width:387.5px!important}#advanced-options .filter-widget[class*="-status"] select{width:197.5px!important}#advanced-options .magazine select,#advanced-options .producer select{width:387.5px!important}#advanced-options .filter-widget[class*="-date"] span:nth-of-type(n+2){display:inline-block;width:40px;padding:0 3px 0 7.5px;border:1px solid var(--text-dim);border-right:none;border-radius:13px 0 0 13px;margin-right:0!important;line-height:24px;font-style:italic}#advanced-options .filter-widget[class*="-date"] span:nth-of-type(3){margin-left:7.5px!important}#advanced-options .filter-widget[class*="-date"] .day,#advanced-options .filter-widget[class*="-date"] .month,#advanced-options .filter-widget[class*="-date"] .year{border-radius:0;padding:0 16px 0 7.5px;border-left-width:0}#advanced-options .filter-widget[class*="-date"] .month,#advanced-options .filter-widget[class*="-date"] .year{border-right:none}#advanced-options .filter-widget[class*="-date"] .day{border-radius:0 13px 13px 0}#advanced-options .filter-widget[class*="-date"] .year{width:60px!important}#advanced-options .filter-widget[class*="-date"] .day,#advanced-options .filter-widget[class*="-date"] .month{width:45px!important}#advanced-options .aired-season .year{width:60px!important}#advanced-options .aired-season .season{width:130px!important;margin-left:7.5px}#advanced-options .first select,#advanced-options .second select{width:190px!important}#advanced-options .sort-widget input[type=radio]+label{width:92.25px!important;border-radius:13px;margin-left:7.5px;background:0 0!important;color:var(--text-dark);line-height:14px;transition:all .15s ease}#advanced-options .sort-widget input[type=radio]:not(:disabled)+label:hover{background:var(--btn-bg)!important}#advanced-options .sort-widget input[type=radio]:not(:disabled):checked+label{background:var(--text-dim)!important;border:1px solid var(--text-dim);color:var(--bg)!important}#advanced-options .sort-widget input[type=radio]:not(:checked)+label i{color:var(--icon)}#advanced-options #fancybox-close,#advanced-options .advanced-options-button a{width:90px;height:26px;padding:0;background:var(--btn-bg);border-radius:13px;box-shadow:0 1px 2px var(--shadow);color:var(--text-dark);line-height:26px;text-align:center}#advanced-options #fancybox-close:hover,#advanced-options .advanced-options-button a:hover{background:var(--btn-bg-h);color:var(--btn-text-h)}#advanced-options .advanced-options-button .btn-apply{margin:0 0 0 -106px}#advanced-options .advanced-options-button .btn-clear{margin:0 0 0 8px}#advanced-options #fancybox-close{left:50%;top:auto;bottom:32px;border:none;margin-left:53px}#advanced-options .btn-apply:before{content:"\f00c ";font-family:FontAwesome}#advanced-options .btn-clear:before{content:"\f12d ";font-family:FontAwesome}#advanced-options #fancybox-close:after{content:"\f00d Close";font:12px/26px Arial,FontAwesome,sans-serif}#fancybox-wrap[style*="width: 320px;"]{height:120px!important}[style*="width: 320px;"] #fancybox-inner{height:calc(100% - 20px)!important}div[style^="width: 300px;"]{display:flex;height:100%!important;flex-flow:column nowrap;justify-content:center;color:var(--text);font-size:13px!important}div[style^="width: 300px;"] div{font-size:0}div[style^="width: 300px;"] input{display:block;width:240px;height:26px;background:var(--btn-bg);border:none;border-radius:13px;box-shadow:0 1px 2px var(--shadow);margin:0 auto 5px;color:var(--text);font:normal 12px/26px Arial,Verdana,sans-serif;transition:all .3s ease;cursor:pointer}div[style^="width: 300px;"] input:hover{background:var(--btn-bg-h);color:var(--btn-text-h)} body { --avatar: url(https://imgur.com/mmiig7Y.png); } @\import "https://malcat-gen.appspot.com/headers?template=[data-query*='\"status\":7']:not([data-query*='order']):not([data-query*='tag\"']):not([data-query*='\"s\"']) .list-item:nth-child($index){margin-top:162px;}[data-query*='\"status\":7']:not([data-query*='order']):not([data-query*='tag\"']):not([data-query*='\"s\"']) .list-item:nth-child($index) .status:before{content:'$content'}"; /*-S-T-A-R-T--------------------*\ | Dark Mode R3.3 | \*------------------------------*/ :root{--banner:url(https://images.alphacoders.com/901/901545.png);--character:url(https://imgur.com/PhVWhSF.png);--pbg:#161616;--bg:#212121;--bg-dark:#444;--text:#ababab;--text-h:#416abe;--text-dim:#777;--text-dim-h:#999;--text-dark:#ababab;--shadow:rgba(0,0,0,0.8);--icon:#959595;--accent:#416abe;--btn-bg:#191919;--btn-bg-h:#ababab;--btn-head-bg-h:#416abe;--btn-text-h:#212121;--text-head:#9b9b9b;--text-head-h:#ababab;--cover-bg:#090909;--edit-btn:#323232;--checkmark:#416abe}.cover-block:before{background:linear-gradient(to top,rgba(0,0,0,.8),rgba(0,0,0,0))}#cover-image-container:after{color:#f6f5ff;text-shadow:2px 2px 8px #e4bef4}.status-menu-container:after{background:linear-gradient(to bottom,rgba(0,0,0,.6),rgba(0,0,0,0))}#footer-block:before{background:linear-gradient(to top,rgba(0,0,0,.3),rgba(0,0,0,0))}.data.score select{background-image:url(https://i.imgur.com/hFijppc.png)}#fancybox-overlay{opacity:.35!important}#advanced-options,#fancybox-outer{box-shadow:0 0 32px rgba(0,0,0,.75)}#fancybox-frame{-webkit-filter:invert(87.8%) hue-rotate(197deg);filter:invert(87.8%) hue-rotate(197deg)}#advanced-options [class*="-widget"] select{background-image:url(https://i.imgur.com/KF8oOyC.png)} /*------------------------E-N-D-*/ body { --name: "Dank\a Memzyt"; } /*-S-T-A-R-T--------------------*\ | Favourite Hearts (Left) R0.4 | \*------------------------------*/ .data.tags span{padding:0}.data.tags span a{margin:1px 0}.data.tags span a[href*="=Favorite"],.data.tags span a[href*="=Favourite"]{position:absolute;left:-34px;top:calc(50% - 13px);width:26px;height:26px;padding:0;background:var(--bg);border-radius:50%;color:#ff65ad!important;font-size:0!important;line-height:23px;overflow:hidden;box-shadow:0 1px 2px rgba(0,0,0,.2)}.data.tags span a[href*="=Favorite"]:before,.data.tags span a[href*="=Favourite"]:before{content:"♥";font-size:26px} /*------------------------E-N-D-*/ /*-S-T-A-R-T--------------------*\ | Header Outline R0.0 | \*------------------------------*/ /* Change colour of border here. */ :root { --header-border: #d8332c; } .status-menu-container:before{height:56px;border-width:4px 0;border-style:solid;border-color:var(--header-border)}.status-menu:after{left:-4px;top:-47px;border-width:4px;box-shadow:0 0 0 4px var(--header-border)}.fixed .status-menu:after{top:4px} /*-S-T-A-R-T--------------------*\ | CatCol Header Text R0.0 | \*------------------------------*/ .status-menu .status-button{transition:color .3s ease}.status-menu .status-button.on:nth-of-type(1),.status-menu .status-button:nth-of-type(1):hover{color:var(--accent)!important}.status-menu .status-button.on:nth-of-type(2),.status-menu .status-button:nth-of-type(2):hover{color:var(--watching)!important}.status-menu .status-button.on:nth-of-type(3),.status-menu .status-button:nth-of-type(3):hover{color:var(--completed)!important}.status-menu .status-button.on:nth-of-type(4),.status-menu .status-button:nth-of-type(4):hover{color:var(--onhold)!important}.status-menu .status-button.on:nth-of-type(5),.status-menu .status-button:nth-of-type(5):hover{color:var(--dropped)!important}.status-menu .status-button.on:nth-of-type(6),.status-menu .status-button:nth-of-type(6):hover{color:var(--plantowatch)!important} /*------------------------E-N-D-*/ /*-S-T-A-R-T--------------------*\ | Character Renders R0.3 | \*------------------------------*/ footer:before, footer:after { content: ""; position: fixed; top: 0; z-index: -1; width: calc(50% - 538px); min-width: 262px; height: 100%; background: transparent no-repeat center bottom / contain scroll; } /* Right Render */ footer:after { left: calc(100% - (50% - 538px)); background-image: url(https://i.imgur.com/AajQ3Mm.png); background-position: right bottom; } /*------------------------E-N-D-*/ /*-S-T-A-R-T--------------------*\ | Horizontal Tags R0.2 | \*------------------------------*/ .list-table-data{padding-bottom:11px}.data.tags{position:absolute;left:0;top:0;display:flex!important;width:0;height:100%;padding:0!important;align-items:flex-end}.data.tags div{max-width:980px;margin:0 0 4px 80px;font-size:0;white-space:nowrap}.data.tags span{display:inline-block;padding:0}.data.tags span a{padding:1px 8px!important;margin:0 4px 0 0;white-space:nowrap}.data.tags span a[href*="=Favo"]{padding:0!important}.data.tags a.edit{right:-1060px}.data.tags textarea{right:-1060px} /*------------------------E-N-D-*/ /*-S-T-A-R-T--------------------*\ | Tag Desc Basis Horizontal R1.2 | \*------------------------------*/ .data.tags span a{position:relative}.data.tags span a:not([href*="=Favo"])::after,.data.tags span a:not([href*="=Favo"])::before{position:absolute;z-index:5;display:block;opacity:0;transition:all .15s efase;pointer-events:none}.data.tags span a:not([href*="=Favo"])::after{top:27px;left:calc(50% - 345px);width:auto;max-width:340px;height:auto;padding:4px 8px;background:var(--btn-bg);border:1px solid var(--text-dim);border-radius:4px;box-sizing:border-box;color:var(--text);font:11px/15px Arial,Verdana;text-align:left;white-space:pre-wrap;transform:translateX(-50%) translateX(340px)}.data.tags span a:not([href*="=Favo"])::before{content:"";top:17px;left:50%;border-width:5px;border-style:solid;border-color:transparent transparent var(--text-dim) transparent;margin-left:-10px}.data.tags span a:hover::after{left:calc(50% - 340px);opacity:1}.data.tags span a:not([href*="=Favo"]):hover::before{margin-left:-5px;opacity:1}.data.tags span:not([href*="=Favo"]) a::after{transform:translateX(-17%) translateX(340px)}.data.tags span:not([href*="=Favo"]):nth-child(n+3) a::after{transform:translateX(-33%) translateX(340px)}.data.tags span:not([href*="=Favo"]):nth-child(n+5) a::after{transform:translateX(-50%) translateX(340px)}.data.tags span:not([href*="=Favo"]):nth-child(n+7) a::after{transform:translateX(-67%) translateX(340px)}.data.tags span:not([href*="=Favo"]):nth-child(n+9) a::after{transform:translateX(-83%) translateX(340px)} /*------------------------E-N-D-*/ .data.tags a[href*="=Guilty%20Pleasure"]:after { content: "You know you shouldn't be watching it, \a but you just cant get enough." } .data.tags a[href*="=Isekai"]:after { content: "Because this world is too boring." } .data.tags a[href*="=Romance"]:after { content: "I wonder what falling in love is like." } /*-S-T-A-R-T--------------------*\ | Category Headers (Round) R0.3 | \*------------------------------*/ [data-query*='"status":7']:not([data-query*='order']):not([data-query*='tag"']):not([data-query*='"s"']) .list-item:nth-child(2) { margin-top: 58px; } .list-item .status:before, .list-item .status:after { position: absolute; top: -40px; left: 0; display: block; width: 1059px; height: 31px; background: var(--bg); border-width: 1px 0 0 1px; border-style: solid; border-color: var(--text-head); border-radius: 16px 16px 0 0; color: var(--text-head); font: 20px/31px Oswald; letter-spacing: 3px; text-indent: -0.5px; text-transform: uppercase; pointer-events: none; } [data-query*='"status":7']:not([data-query*='order']):not([data-query*='tag"']):not([data-query*='"s"']) .list-item .status:after { content: ""; top: auto; bottom: -40px; height: 32px; border-width: 0 0 0 1px; border-radius: 0 0 16px 16px; } .list-item .watching:before, .list-item .reading:before, .list-item .watching:after, .list-item .reading:after { border-color: var(--watching); } .list-item .completed:before, .list-item .completed:after { border-color: var(--completed); } .list-item .onhold:before, .list-item .onhold:after { border-color: var(--onhold); } .list-item .dropped:before, .list-item .dropped:after { border-color: var(--dropped); } .list-item .plantowatch:before, .list-item .plantoread:before, .list-item .plantowatch:after, .list-item .plantoread:after { border-color: var(--plantowatch); } /*------------------------E-N-D-*/ If they don't appear even after visiting that page, could you perhaps tell me the browser you're using? If you're using Brave, try setting "All cookies allowed" or lowering your "Shield" for MAL: Thanks for including your code! That solved the problem, thanks. |
Mar 26, 2020 4:32 AM
#423
Hey I had some ideas and am wondering if you could help me make them? 1. Display "No Tags" when an anime doesn't have any tags set. Similar to how you do it with Studios and Seasons. 2. Display a symbol (an X or -) when there's no start and/or end date set. How I thought it could look: Thank you. |
Maloween candy: Bonus: |
Mar 27, 2020 12:33 AM
#424
LeafyWrath said: Sure thing! You can add the empty tag text by placing this at the bottom of your CSS:Hey I had some ideas and am wondering if you could help me make them? 1. Display "No Tags" when an anime doesn't have any tags set. Similar to how you do it with Studios and Seasons. 2. Display a symbol (an X or -) when there's no start and/or end date set. How I thought it could look: Thank you. /*-S-T-A-R-T--------------------*\ | Add "No Tags" Text | \*------------------------------*/ .data.tags div:empty::before { content: "No Tags."; display: block; color: var(--text-dim); } /*------------------------E-N-D-*/ Although, you'll have to remove the "RINGO IS WAIFU" text, as that would break the code below it. If you want to keep it, wrap it with comment marks. I.E: /* "RINGO IS WAIFU" */ As to the start/end dates, the only reason I hadn't added such functionality before was because I didn't think of how. Well, I thought of how, so it's been added to the base theme and should be on your list when you next check it. :) |
Mar 27, 2020 1:00 AM
#425
Thank you! This is exactly what I was looking for, and everything worked! Edit: Is it possible to make it check for tags, and if it only has the "Favourite" tag it displays "no tags"? |
LeafyWrathMar 27, 2020 2:42 AM
Maloween candy: Bonus: |
Mar 29, 2020 3:51 PM
#426
Hello, (Edit: Apparently I also can't use the spoiler button, so sorry!) I have two issues with my layout. 1) The render at the top of Mina Ashido blinks in and out of existence when I move my mouse in and out of the banner area, or when I hover over her. 2) The two renders on the left and right are too far to the left and right, and are getting cropped off the sides of the screen. [spoiler="Here's my code":] @import "https://valeriolyndon.github.io/MAL-Public-List-Designs/Clarity%20Theme/Theme%20-%20Compressed.css"; @import "https://valeriolyndon.github.io/MAL-Public-List-Designs/Clarity%20Theme/Mod%20-%20Dark%20Mode%20Compressed.css"; @import "https://malscraper.azurewebsites.net/covers/auto/presets/dataimagelinkbefore"; @import "https://valeriolyndon.github.io/MAL-Public-List-Designs/Clarity%20Theme/Mod%20-%20Hover%20Image%20Compressed.css"; body { --avatar: url(https://imgur.com/lzLsqQu.jpg); } body { --banner: url(https://imgur.com/M4EosXf.jpg); } body { --character: url(https://imgur.com/91I5lpO.jpg); } body { --background: url(https://imgur.com/TSQdgSu.jpg); } /*-S-T-A-R-T--------------------* | Transparent List Rows | *------------------------------*/ :root { /* Change colour here */ --row-tint: rgba(33,33,33,0.8); } .list-item, .data.priority, .data.number, .data.status:before, .data.status:after { background: linear-gradient(var(--row-tint),var(--row-tint)), var(--background) no-repeat center / cover fixed transparent !important; } /*------------------------E-N-D-*/ /*-S-T-A-R-T--------------------* | Character Renders R0.3 | *------------------------------*/ footer:before, footer:after { content: ""; position: fixed; top: 0; z-index: -1; width: calc(50% - 538px); min-width: 262px; height: 100%; background: transparent no-repeat center bottom / contain scroll; } /* Left Render */ footer:before { right: calc(100% - (50% - 538px)); background-image: url(https://imgur.com/ArSdENT.jpg); background-position: left bottom; } /* Right Render */ footer:after { left: calc(100% - (50% - 538px)); background-image: url(https://imgur.com/tseURyz.jpg); background-position: left bottom; } /*------------------------E-N-D-*/ /*-S-T-A-R-T--------------------* | Horizontal Tags R0.2 | *------------------------------*/ .list-table-data{padding-bottom:11px}.data.tags{position:absolute;left:0;top:0;display:flex!important;width:0;height:100%;padding:0!important;align-items:flex-end}.data.tags div{max-width:980px;margin:0 0 4px 80px;font-size:0;white-space:nowrap}.data.tags span{display:inline-block;padding:0}.data.tags span a{padding:1px 8px!important;margin:0 4px 0 0;white-space:nowrap}.data.tags span a[href*="=Favo"]{padding:0!important}.data.tags a.edit{right:-1060px}.data.tags textarea{right:-1060px} /*------------------------E-N-D-*/ [/spoiler] |
Mar 30, 2020 1:17 AM
#427
CameronMZ said: I can't reproduce this issue in any of the browsers I tried, so I'm not sure I'll be able to replicate this for debugging. But I can try, in which case I'll need to know what browser you're using. And if you're using Firefox, please check the spoiler below.I have two issues with my layout. 1) The render at the top of Mina Ashido blinks in and out of existence when I move my mouse in and out of the banner area, or when I hover over her. 2) The two renders on the left and right are too far to the left and right, and are getting cropped off the sides of the screen. I'd also like you to check the "about:support" page. Just input that in your URL bar. Then, use CTRL+F to find the "Compositing" field. It'll be in the Graphics section. Tell me if it says "WebRender" or something else. CameronMZ said: You could try either tweaking the "left" and "right" values for each render yourself to allow overlapping the list, or simply add this to the bottom of your CSS. This will position the renders above your list, at the bottom corners of the screen. Image below.2) The two renders on the left and right are too far to the left and right, and are getting cropped off the sides of the screen. /*-S-T-A-R-T--------------------*\ | Character Renders Positioning | \*------------------------------*/ footer:before, footer:after { min-width: 200px; z-index: 1; } /* Left Render */ footer:before { right: auto; left: 0; } /* Right Render */ footer:after { left: auto; right: 0; } /*------------------------E-N-D-*/ |
Mar 30, 2020 6:04 AM
#428
Mar 30, 2020 4:11 PM
#429
Valerio_Lyndon said: CameronMZ said: I can't reproduce this issue in any of the browsers I tried, so I'm not sure I'll be able to replicate this for debugging. But I can try, in which case I'll need to know what browser you're using. And if you're using Firefox, please check the spoiler below.I have two issues with my layout. 1) The render at the top of Mina Ashido blinks in and out of existence when I move my mouse in and out of the banner area, or when I hover over her. 2) The two renders on the left and right are too far to the left and right, and are getting cropped off the sides of the screen. I'd also like you to check the "about:support" page. Just input that in your URL bar. Then, use CTRL+F to find the "Compositing" field. It'll be in the Graphics section. Tell me if it says "WebRender" or something else. CameronMZ said: You could try either tweaking the "left" and "right" values for each render yourself to allow overlapping the list, or simply add this to the bottom of your CSS. This will position the renders above your list, at the bottom corners of the screen. Image below.2) The two renders on the left and right are too far to the left and right, and are getting cropped off the sides of the screen. /*-S-T-A-R-T--------------------*\ | Character Renders Positioning | \*------------------------------*/ footer:before, footer:after { min-width: 200px; z-index: 1; } /* Left Render */ footer:before { right: auto; left: 0; } /* Right Render */ footer:after { left: auto; right: 0; } /*------------------------E-N-D-*/ Thanks, that solved the second issue!! Still have no clue where to start on the first one, though. I'm using Safari. |
Mar 30, 2020 9:04 PM
#430
FiliCZ said: It's doable, but not in a way that is satisfactory enough for me to add it to the base theme. An example of how it could look:How about making the titles that are too long, so they are not entirely shown, show entirely on hower? And the code for that: /*-S-T-A-R-T--------------------*\ | Overflow Titles on Hover | \*------------------------------*/ .data.title .link.sort { display: block; height: 16px; border-radius: 3px; padding: 0; margin-right: 8px; overflow: hidden; white-space: normal; transition: none !important; } .data.title .link.sort:hover { z-index: 1; height: auto; padding: 2px 4px; background: var(--btn-bg); margin: 8px 0 0 -4px; transform: translateY(-50%); } /*------------------------E-N-D-*/ |
Mar 30, 2020 9:32 PM
#431
The girls on the side are cute as hell 😍 |
Mar 31, 2020 1:13 AM
#432
CameronMZ said: The render at the top of Mina Ashido blinks in and out of existence when I move my mouse in and out of the banner area, or when I hover over her. CameronMZ said: I'm taking blind shots in the dark here, but you could try adding this patch to the bottom of your CSS and seeing if it helps. Use one at a time, do not use multiple at once.I'm using Safari. This disables the name text in the top banner, but you don't seem to be using that anyway. /*-S-T-A-R-T--------------------*\ | Safari Flicker Patch Opt1 | \*------------------------------*/ .cover-block { background: linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,0) 50px), var(--character) no-repeat calc(50% + 400px) center / contain, var(--banner) no-repeat center / cover scroll var(--cover-bg); } #list-container #cover-image-container { display: none !important; } .cover-block::before { content: none; } /*------------------------E-N-D-*/ This removes the shadow and the name. /*-S-T-A-R-T--------------------*\ | Safari Flicker Patch Opt2 | \*------------------------------*/ .cover-block { background: var(--character) no-repeat calc(50% + 400px) center / contain, var(--banner) no-repeat center / cover scroll var(--cover-bg); } #list-container #cover-image-container { display: none !important; } .cover-block::before { content: none; } /*------------------------E-N-D-*/ This also removes the shadow and the name, but with some differences on the technical side. /*-S-T-A-R-T--------------------*\ | Safari Flicker Patch Opt3 | \*------------------------------*/ #cover-image-container::after, .cover-block::before { content: none; display: none; transform: none; } /*------------------------E-N-D-*/ If none of those help, and you want to troubleshoot further, you could reinstall the layout (on a different style) one piece at a time, starting with the base, and checking where the flickering begins to occur. If it occurs even with nothing installed except the base theme, then I don't really have any new tactics. But if it started to act up when one of the mods is installed, and goes away when that mod is no longer installed, that would narrow down the problem by a lot. Other than that, all you could do is edit the character image into the banner image using an external program such as Photoshop/Photopea or GIMP (an imperfect solution, but it would probably fix it). If I think of anything else or find something out, I'll post another message. |
Valerio_LyndonMar 31, 2020 1:16 AM
Mar 31, 2020 3:34 AM
#433
Yeah that look's good, but for some reason for me it doesn't cover the type and it's visible over the title. Also it would by good if the "..." in long titles still appear so I knew I have to hover on it, but that would probably be harder |
Mar 31, 2020 8:50 AM
#434
Haha thanks, I love my girls! |
Mar 31, 2020 3:48 PM
#435
@CameronMZ 😎 new MAL |
Apr 1, 2020 12:08 AM
#436
FiliCZ said: Ah yep, that's my bad for putting it together too quickly and not testing on Chrome. This version should work better. Make sure to remove the previous version before adding this new one.Yeah that look's good, but for some reason for me it doesn't cover the type and it's visible over the title. Also it would by good if the "..." in long titles still appear so I knew I have to hover on it, but that would probably be harder /*-S-T-A-R-T--------------------*\ | Overflow Titles on Hover R2.0 | \*------------------------------*/ .data.title .link.sort { display: block; height: 16px; border-radius: 3px; overflow: hidden; transition: none !important; } .data.title .link.sort:hover { top: 24px; z-index: 2; height: auto; padding: 2px 4px; background: var(--btn-bg); margin: 0 8px 0 -4px; white-space: normal; transform: translateY(-50%); } /*------------------------E-N-D-*/ |
Apr 1, 2020 7:28 AM
#437
@Valerio_Lyndon do you have to use the default theme on the modern list setup? Is it possible to change the color for the anime titles, i.e when hovering over them or having them changed in general? |
Apr 1, 2020 5:31 PM
#438
Rainful said: Any of the themes will work. :)do you have to use the default theme on the modern list setup? Rainful said: It is! Add this to your CSS anywhere below the @import statements. You can then change the "#416abe", which is its current colour value, to any other CSS colour (color picker: here).Is it possible to change the color for the anime titles, i.e when hovering over them or having them changed in general? /* Anime Title Hover Colour */ .list-item { --accent: #416abe ; } |
Apr 2, 2020 6:52 AM
#439
Valerio_Lyndon said: Rainful said: Any of the themes will work. :)do you have to use the default theme on the modern list setup? Rainful said: It is! Add this to your CSS anywhere below the @import statements. You can then change the "#416abe", which is its current colour value, to any other CSS colour (color picker: here).Is it possible to change the color for the anime titles, i.e when hovering over them or having them changed in general? /* Anime Title Hover Colour */ .list-item { --accent: #416abe ; } Thank u, it worked :D |
Apr 5, 2020 9:20 AM
#440
OMG I HAD NO CLUE YOU COULD EVEN DO THAT PLEASE TEACH ME OH WISE ONE |
Apr 13, 2020 2:43 PM
#441
Having an issue where I can't put in an avatar it shows up blank https://pastebin.com/Jd2vveC9 |
I see dead people |
Apr 13, 2020 2:51 PM
#442
I go over it here. You'll need to install Stylus to Chrome, then the characters theme, then upload your renders to the character renders to the theme page :D https://www.youtube.com/watch?v=BpQMdtj_tQ8 |
Apr 13, 2020 3:20 PM
#443
Chro0oIsAWeeb said: Looks like you're trying to use a link to a file on your PC.Having an issue where I can't put in an avatar it shows up blank file:///C:/Users/USER/Desktop/Rem/wuOyc4W_d.jpg Unfortunately, these aren't valid URLs, as they aren't available on the web. The "file:///" is simply telling your browser to search your local file system, and won't work for CSS. What you'll need to do is upload that image to an image hosting website (such as Imgur) and copy the URL from there. To do so:
EDIT: looks like MAL is having some issues displaying images right now, so I apologize if some the images are not visible. |
Valerio_LyndonApr 13, 2020 3:23 PM
Apr 13, 2020 3:27 PM
#444
Valerio_Lyndon said: Thanks that fixed it!Chro0oIsAWeeb said: Looks like you're trying to use a link to a file on your PC.Having an issue where I can't put in an avatar it shows up blank file:///C:/Users/USER/Desktop/Rem/wuOyc4W_d.jpg Unfortunately, these aren't valid URLs, as they aren't available on the web. The "file:///" is simply telling your browser to search your local file system, and won't work for CSS. What you'll need to do is upload that image to an image hosting website (such as Imgur) and copy the URL from there. To do so:
EDIT: looks like MAL is having some issues displaying images right now, so I apologize if some the images are not visible. |
I see dead people |
Apr 16, 2020 2:31 PM
#445
Apr 16, 2020 3:21 PM
#446
FiliCZ said: Sorry about that. That's definitely an issue that can happen with the design. To change the hitbox, use this code (place at the bottom of your CSS):Would it be possible to make the sort menu's "hitbox" bigger or something? Or maybe just wait longer before it collapses, because I often accidentally get off with the cursor before I reach the most left one and it disappears. /* ======================= Increase Sort-by Hitbox */ .list-table-header { /* Change Padding Here */ --sortby-padding: 20px; right: calc(var(--sortby-padding) * -1); top: calc((var(--sortby-padding) * -1) + 2px); padding: var(--sortby-padding)calc(var(--sortby-padding) + 15px); } If you want to tweak it a bit, you can increase or decrease the "20px" to something else, for instance "28px". |
Apr 16, 2020 3:47 PM
#447
Valerio_Lyndon said: FiliCZ said: Sorry about that. That's definitely an issue that can happen with the design. To change the hitbox, use this code (place at the bottom of your CSS):Would it be possible to make the sort menu's "hitbox" bigger or something? Or maybe just wait longer before it collapses, because I often accidentally get off with the cursor before I reach the most left one and it disappears. /* ======================= Increase Sort-by Hitbox */ .list-table-header { /* Change Padding Here */ --sortby-padding: 20px; right: calc(var(--sortby-padding) * -1); top: calc((var(--sortby-padding) * -1) + 2px); padding: var(--sortby-padding)calc(var(--sortby-padding) + 15px); } If you want to tweak it a bit, you can increase or decrease the "20px" to something else, for instance "28px". Yes, that's perfect. Thanks. |
Apr 20, 2020 9:18 AM
#448
I like this layout a lot thanks for making it. I'm currently in the process of adding it to my anime and manga list however i need a little help with it. I can't seem to find the code to where i can change the banner at the top. Also, My profile pic does not seem to fit in the circle box... I wanna add in a custom banner and profile pic for each list. Do you know what the exact dimensions they have to be in order for them to fit. |
MasukoApr 20, 2020 4:10 PM
"If you smile when you see a butterfly ,you have happiness In your eyes" |
Apr 20, 2020 7:15 PM
#449
Masuko-Senpai said: By default, the avatar retains its default dimensions and is placed centered horizontally and top-most vertically. To change this, you can either modify its placement by adding this to the bottom of your CSS:Also, My profile pic does not seem to fit in the circle box /* Avatar Positioning */ .status-menu::after { background-position: center top; } Or, modify its sizing by adding one of these. The "Contain" one will size the image down so you can see all of it, but there will be some blank space. The "Stretch" one will stretch the image to fill out the entire space. /* Avatar Sizing - Contain */ .status-menu::after { background-size: contain; } /* Avatar Sizing - Stretch */ .status-menu::after { background-size: 100% 100%; } Masuko-Senpai said: There's some code you can insert to change banner or character images under the "Further Modification" section in the main post. It's under the first spoiler, "Change theme images". You can also find code for a per-section/category banner image there as well. But, you can't find per-category avatar code. So, here's the CSS you can use for per-category banners and avatars. Add it to the bottom of your CSS. Then, replace each "URLHERE" with the URLs to your images. I can't seem to find the code to where i can change the banner at the top. … I wanna add in a custom banner and profile pic for each list. /*-S-T-A-R-T--------------------*\ | Per-Category Banner Image | \*------------------------------*/ /* All Anime */ [data-query*='status":7'] { --banner: url(URLHERE); } /* Watching/Reading */ [data-query*='status":1'] { --banner: url(URLHERE); } /* Completed */ [data-query*='status":2'] { --banner: url(URLHERE); } /* Onhold */ [data-query*='status":3'] { --banner: url(URLHERE); } /* Dropped */ [data-query*='status":4'] { --banner: url(URLHERE); } /* Planned */ [data-query*='status":6'] { --banner: url(URLHERE); } /*------------------------E-N-D-*/ /*-S-T-A-R-T--------------------*\ | Per-Category Avatar Image | \*------------------------------*/ /* All Anime */ [data-query*='status":7'] { --avatar: url(URLHERE); } /* Watching/Reading */ [data-query*='status":1'] { --avatar: url(URLHERE); } /* Completed */ [data-query*='status":2'] { --avatar: url(URLHERE); } /* Onhold */ [data-query*='status":3'] { --avatar: url(URLHERE); } /* Dropped */ [data-query*='status":4'] { --avatar: url(URLHERE); } /* Planned */ [data-query*='status":6'] { --avatar: url(URLHERE); } /*------------------------E-N-D-*/ And if you need it: /*-S-T-A-R-T--------------------*\ | Per-Category Character Image | \*------------------------------*/ /* All Anime */ [data-query*='status":7'] { --character: url(URLHERE); } /* Watching/Reading */ [data-query*='status":1'] { --character: url(URLHERE); } /* Completed */ [data-query*='status":2'] { --character: url(URLHERE); } /* Onhold */ [data-query*='status":3'] { --character: url(URLHERE); } /* Dropped */ [data-query*='status":4'] { --character: url(URLHERE); } /* Planned */ [data-query*='status":6'] { --character: url(URLHERE); } /*------------------------E-N-D-*/ Masuko-Senpai said: The avatar is 150x150 pixels, but any square image will fit apppropriately and we went over the stretching/positioning options earlier in this post.Do you know what the exact dimensions they have to be in order for them to fit. The banner will accept any dimension and resolution image, it doesn't really matter. But if you're concerned about it, you can crop images down to a 10:3 width/height ratio. This is because any vertical imagery above a 10:3 ratio image will never be shown. So, if your image was 1920x1080, it would have around 500 pixels vertically that are never going to be seen. A 10:3 ratio image, at 1080p, comes out to 1920x576. You can figure out aspect ratios by using [this website]. Just put a 10:3 ratio on the left side, and a new width or height on the right, and it'll calculate it for you. Character images can, once again, be any size. But, the ideal size is 318 pixels vertically, assuming the page is not zoomed in at all. The width does not matter. That said, I really wouldn't worry much about sizing your images perfectly on your monitor. The banner height is not dynamic, where-as the width is, so on some monitors it will be 1280 pixels, and on others it can get up to 3840 pixels wide. All the while, the height will always be 318 pixels. So you have one person who might require a 1920x318 image to fit perfectly, and someone else a 1280x318. These are quite different numbers, and there is going to be some cropping on someone's monitor. So as long as it looks fine to you, I wouldn't worry. And as for resizing it down (for instance, sizing your character render down to 318 pixels vertically), it's great for optimization, but then what if someone on a 4K monitor zooms in their page to see better? That 318 pixel picture will now be in a size closer to 500 or 600, most likely. So if your images are a bit big, it's not the end of the world. |
Valerio_LyndonApr 20, 2020 7:18 PM
Apr 21, 2020 10:31 AM
#450
More topics from this board
» theme helpthreat - Jul 5 |
5 |
by Zaryf
»»
Aug 21, 5:46 AM |
|
» [CSS] ⭐️ Customize your List Cursor + Cursor FixesShishio-kun - Mar 8, 2021 |
30 |
by Shishio-kun
»»
Jul 28, 3:17 AM |
|
» How To Have Different Banner/Cover image & Background Image For Manga & Anime ListsYasminaRegina - Jul 25 |
2 |
by YasminaRegina
»»
Jul 26, 1:02 AM |
|
Sticky: » 💚 [REPAIR STICKY] Repair/speed up layouts + Request layout fixes ( 1 2 )Shishio-kun - Nov 17, 2023 |
52 |
by LucaBalsa
»»
Jul 6, 2:02 PM |
|
» [CSS/BBCODE] ⭐️ How to view anyone's CSS or BBcodes (for lists, profiles, or clubs)!Shishio-kun - Feb 6, 2012 |
37 |
by sunnysummerday
»»
Jun 11, 7:44 PM |