New
Jul 10, 2021 10:48 AM
#851
is there a way to put custom cursor to clarity list? is that I would like to put one. I have Clarity on my manga list and I would like to put a cursor. |
EnderVsqz626Jul 10, 2021 10:52 AM
Jul 10, 2021 8:31 PM
#852
EnderVsqz626 said: is there a way to put custom cursor to clarity list? is that I would like to put one. I have Clarity on my manga list and I would like to put a cursor. Here's the code, just put it at the bottom of your CSS and replace "CURSOR_URL_HERE" with the direct link of your cursor image. /*--------------------------------*\ | Custom Cursor | \*--------------------------------*/ /*Lower the size under 32px wide and high if its too large. https://myanimelist.net/forum/?topicid=1903808*/ body *, :not(*) { cursor: url(CURSOR_URL_HERE), auto !important; } |
StoryGraph x Spotify x Instagram “Whether we die or not isn't really that big a deal." — Suzuya Juuzou |
Jul 10, 2021 9:29 PM
#853
Daisy-Sensei said: i got it now =D, thanks, the run gonna take a long time,, is it bad to lower the delay? note even when i lower delay its still slow, but i dont mind, i will keep the window open, and testing around it, i can see that i can resume later as well, thank you again, like ur modern style, also gonna update mine to latest version after i finish genres import... Best of luck ~ Happy Anime Alright, awesome. Any delay value is fine. The longer the value, say 3000-9000, will probably guarantee fewer errors. But a lower value like 500-1000 might actually end up faster overall. |
Jul 10, 2021 10:15 PM
#854
LEGENDS_OF_ANIME said: EnderVsqz626 said: is there a way to put custom cursor to clarity list? is that I would like to put one. I have Clarity on my manga list and I would like to put a cursor. Here's the code, just put it at the bottom of your CSS and replace "CURSOR_URL_HERE" with the direct link of your cursor image. /*--------------------------------*\ | Custom Cursor | \*--------------------------------*/ /*Lower the size under 32px wide and high if its too large. https://myanimelist.net/forum/?topicid=1903808*/ body *, :not(*) { cursor: url(CURSOR_URL_HERE), auto !important; } hello thanks for the CSS but it didn't work for me, I already put a 32x32 PNG on it and nothing that works. you have to fill where it says Body? /*--------------------------------*\ | Custom Cursor | \*--------------------------------*/ /*Lower the size under 32px wide and high if its too large. https://myanimelist.net/forum/?topicid=1903808*/ body *, :not(*) { cursor: url(https://i.imgur.com/M48nUJu.png), auto !important; } |
Jul 10, 2021 10:41 PM
#855
EnderVsqz626 said: hello thanks for the CSS but it didn't work for me, I already put a 32x32 PNG on it and nothing that works. you have to fill where it says Body? /*--------------------------------*\ | Custom Cursor | \*--------------------------------*/ /*Lower the size under 32px wide and high if its too large. https://myanimelist.net/forum/?topicid=1903808*/ body *, :not(*) { cursor: url(https://i.imgur.com/M48nUJu.png), auto !important; } I don't know it didn't work for you. I checked your code and I think the image was too big. Try it again, and make sure you delete your previous custom cursor code and put this at the bottom of your CSS. If it still doesn't work then tell it here again and someone will probably solve. For now try this again with this code, I has the same image you wanted. /*--------------------------------*\ | Custom Cursor | \*--------------------------------*/ /*Lower the size under 32px wide and high if its too large. https://myanimelist.net/forum/?topicid=1903808*/ body *, :not(*) { cursor: url(https://i.imgur.com/M48nUJu.png), auto !important; } |
StoryGraph x Spotify x Instagram “Whether we die or not isn't really that big a deal." — Suzuya Juuzou |
Jul 11, 2021 10:21 PM
#856
Tone_ZR said: What I was saying was more or less this: It is clickable, but it is separated by putting the ",". I wanted to leave it like this: But leaving it this way, it is not possible to click on the tag and go towards all the tags, if there is one that is the same. In short: I wanted it to be clickable, but also to be in the form of a review (large). Ah, I see. That's possible, it just requires us to modify the "Review Tags" modification. Here's one option for that. I had to make a few changes, but it comes down to the removal of pointer-events and some styling changes. The styling changes have exceptions [Image] for the Favourite and MV tags so that they don't break how those look, which you will have to add more or less of if you change those tags later. /*-S-T-A-R-T--------------------*\ | Review Tags Custom | \*------------------------------*/ /* Raise or lower this number to change how wide the box is. Make sure not to remove the "px" from the end of the number. */ .data.tags { width: 240px; } .data.tags div:not(:empty) { padding: 2px 8px; background: var(--btn-bg); border-radius: 8.5px; } .data.tags span { display: inline; font-size: 11px !important; cursor: text; } .list-table .list-table-data .data.tags a:not(.edit):not([href*="=FV"]):not([href*="=MV"]) { display: inline; padding: 0; background: none !important; color: var(--text) !important; } .list-table .list-table-data .data.tags a:not(.edit):not([href*="=FV"]):not([href*="=MV"]):hover { color: var(--text-h) !important; } /*------------------------E-N-D-*/ Tone_ZR said: About the hearts I managed to arrange it this way: /*--------- S T A R T ----------* | Favourite Hearts (Right) R0.4 | *------------------------------*/ .data.tags span{padding:0}.data.tags span a{margin:1px 0} .data.tags span a[href*="=FV"], .data.tags span a[href*="=FV"] {position:absolute; left:-34px; /* 1068 > right | -34px > left */ 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*="=FV"]:before, .data.tags span a[href*="=FV"]:before { content:"♥"; font-size:26px; } /*---------- E N D -----------*/ I would also like to know if this is possible with all tags, in the sense of: "MV = Movie" and put an icon of some clapperboard or something like that. Glad you figured it out. :) To style other tags in a similar manner, you can copy-paste the favourite code and then modify it as you did for the first one. You can also change the "♥" text for something else or add/change other styling too, of course. Here's an example of that code with either an icon or a background-image. MAL uses icons from FontAwesome, so we can too in our code. https://fontawesome.com/v4.7/icons/ /*========== S T A R T ==========*\ | MV Icon | \*===============================*/ /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*\ left: 1068px ficará do lado direito left: -34px ficará do lado esquerdo \*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/ .data.tags span{padding:0}.data.tags span a{margin:1px 0} .data.tags span a[href*="=MV"], .data.tags span a[href*="=MV"] {position:absolute; left:-34px; top:calc(50% + 17px); width:26px; height:26px; padding:0; background:var(--bg); border-radius:50%; color:red!important; font-size:0!important; line-height:26px; overflow:hidden; box-shadow:0 1px 2px rgba(0,0,0,.2); } .data.tags span a[href*="=MV"]:before, .data.tags span a[href*="=MV"]:before { content:"\f03d"; font-family: FontAwesome; font-size:16px; } /*------------ E N D ------------*/ /*========== S T A R T ==========*\ | MV Icon | \*===============================*/ /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*\ left: 1068px ficará do lado direito left: -34px ficará do lado esquerdo \*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/ .data.tags span{padding:0}.data.tags span a{margin:1px 0} .data.tags span a[href*="=MV"], .data.tags span a[href*="=MV"] {position:absolute; left:-34px; top:calc(50% + 17px); width:26px; height:26px; padding:0; background:var(--bg); background-image: url(https://i.imgur.com/mdGAICl.png) !important; background-position: center !important; background-size: 16px auto !important; background-repeat: no-repeat !important; border-radius:50%; font-size:0!important; box-shadow:0 1px 2px rgba(0,0,0,.2); } /*------------ E N D ------------*/ Here's your code with these changes applied, for reference: https://pastebin.com/raw/CQVN8kUs |
Jul 11, 2021 10:27 PM
#857
EnderVsqz626 said: Legends' code should be working, I believe this is due to some faulty code found earlier in your CSS. If you see on line 497, right above where you pasted the new code, there is a missing curly bracket. If you add a closing bracket there "}" it should fix the problem and enable future code to work. LEGENDS_OF_ANIME said: Here's the code, just put it at the bottom of your CSS and replace "CURSOR_URL_HERE" with the direct link of your cursor image. /*--------------------------------*\ | Custom Cursor | \*--------------------------------*/ /*Lower the size under 32px wide and high if its too large. https://myanimelist.net/forum/?topicid=1903808*/ body *, :not(*) { cursor: url(CURSOR_URL_HERE), auto !important; } hello thanks for the CSS but it didn't work for me, I already put a 32x32 PNG on it and nothing that works. you have to fill where it says Body? /*--------------------------------*\ | Custom Cursor | \*--------------------------------*/ /*Lower the size under 32px wide and high if its too large. https://myanimelist.net/forum/?topicid=1903808*/ body *, :not(*) { cursor: url(https://i.imgur.com/M48nUJu.png), auto !important; } |
Jul 12, 2021 6:07 AM
#858
Valerio_Lyndon said: Thank you very much. It worked the way I wanted it.Tone_ZR said: What I was saying was more or less this: It is clickable, but it is separated by putting the ",". I wanted to leave it like this: But leaving it this way, it is not possible to click on the tag and go towards all the tags, if there is one that is the same. In short: I wanted it to be clickable, but also to be in the form of a review (large). Ah, I see. That's possible, it just requires us to modify the "Review Tags" modification. Here's one option for that. I had to make a few changes, but it comes down to the removal of pointer-events and some styling changes. The styling changes have exceptions [Image] for the Favourite and MV tags so that they don't break how those look, which you will have to add more or less of if you change those tags later. /*-S-T-A-R-T--------------------*\ | Review Tags Custom | \*------------------------------*/ /* Raise or lower this number to change how wide the box is. Make sure not to remove the "px" from the end of the number. */ .data.tags { width: 240px; } .data.tags div:not(:empty) { padding: 2px 8px; background: var(--btn-bg); border-radius: 8.5px; } .data.tags span { display: inline; font-size: 11px !important; cursor: text; } .list-table .list-table-data .data.tags a:not(.edit):not([href*="=FV"]):not([href*="=MV"]) { display: inline; padding: 0; background: none !important; color: var(--text) !important; } .list-table .list-table-data .data.tags a:not(.edit):not([href*="=FV"]):not([href*="=MV"]):hover { color: var(--text-h) !important; } /*------------------------E-N-D-*/ Tone_ZR said: About the hearts I managed to arrange it this way: /*--------- S T A R T ----------* | Favourite Hearts (Right) R0.4 | *------------------------------*/ .data.tags span{padding:0}.data.tags span a{margin:1px 0} .data.tags span a[href*="=FV"], .data.tags span a[href*="=FV"] {position:absolute; left:-34px; /* 1068 > right | -34px > left */ 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*="=FV"]:before, .data.tags span a[href*="=FV"]:before { content:"♥"; font-size:26px; } /*---------- E N D -----------*/ I would also like to know if this is possible with all tags, in the sense of: "MV = Movie" and put an icon of some clapperboard or something like that. Glad you figured it out. :) To style other tags in a similar manner, you can copy-paste the favourite code and then modify it as you did for the first one. You can also change the "♥" text for something else or add/change other styling too, of course. Here's an example of that code with either an icon or a background-image. MAL uses icons from FontAwesome, so we can too in our code. https://fontawesome.com/v4.7/icons/ /*========== S T A R T ==========*\ | MV Icon | \*===============================*/ /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*\ left: 1068px ficará do lado direito left: -34px ficará do lado esquerdo \*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/ .data.tags span{padding:0}.data.tags span a{margin:1px 0} .data.tags span a[href*="=MV"], .data.tags span a[href*="=MV"] {position:absolute; left:-34px; top:calc(50% + 17px); width:26px; height:26px; padding:0; background:var(--bg); border-radius:50%; color:red!important; font-size:0!important; line-height:26px; overflow:hidden; box-shadow:0 1px 2px rgba(0,0,0,.2); } .data.tags span a[href*="=MV"]:before, .data.tags span a[href*="=MV"]:before { content:"\f03d"; font-family: FontAwesome; font-size:16px; } /*------------ E N D ------------*/ /*========== S T A R T ==========*\ | MV Icon | \*===============================*/ /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*\ left: 1068px ficará do lado direito left: -34px ficará do lado esquerdo \*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/ .data.tags span{padding:0}.data.tags span a{margin:1px 0} .data.tags span a[href*="=MV"], .data.tags span a[href*="=MV"] {position:absolute; left:-34px; top:calc(50% + 17px); width:26px; height:26px; padding:0; background:var(--bg); background-image: url(https://i.imgur.com/mdGAICl.png) !important; background-position: center !important; background-size: 16px auto !important; background-repeat: no-repeat !important; border-radius:50%; font-size:0!important; box-shadow:0 1px 2px rgba(0,0,0,.2); } /*------------ E N D ------------*/ Here's your code with these changes applied, for reference: https://pastebin.com/raw/CQVN8kUs I had done it manually yesterday and it looked like this: /*========== S T A R T ==========*\ | Favourite Movie (Right) | \*==============================*/ .data.tags span{padding:0}.data.tags span a{margin:1px 0} .data.tags span a[href*="=MV"], .data.tags span a[href*="=MV"] {position:absolute; left:1068px; 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:24px; overflow:hidden; box-shadow:0 1px 2px rgba(0,0,0,.2); } .data.tags span a[href*="=MV"]:before, .data.tags span a[href*="=MV"]:before { content:"🎬"; font-size:18px; } |
Jul 12, 2021 9:42 PM
#859
Valerio_Lyndon said: Legends' code should be working, I believe this is due to some faulty code found earlier in your CSS. If you see on line 497, right above where you pasted the new code, there is a missing curly bracket. If you add a closing bracket there "}" it should fix the problem and enable future code to work. How do you find out if there's a bracket missing or problems similar to this??? |
StoryGraph x Spotify x Instagram “Whether we die or not isn't really that big a deal." — Suzuya Juuzou |
Jul 12, 2021 10:54 PM
#860
Valerio_Lyndon said: EnderVsqz626 said: Legends' code should be working, I believe this is due to some faulty code found earlier in your CSS. If you see on line 497, right above where you pasted the new code, there is a missing curly bracket. If you add a closing bracket there "}" it should fix the problem and enable future code to work. LEGENDS_OF_ANIME said: Here's the code, just put it at the bottom of your CSS and replace "CURSOR_URL_HERE" with the direct link of your cursor image. /*--------------------------------*\ | Custom Cursor | \*--------------------------------*/ /*Lower the size under 32px wide and high if its too large. https://myanimelist.net/forum/?topicid=1903808*/ body *, :not(*) { cursor: url(CURSOR_URL_HERE), auto !important; } hello thanks for the CSS but it didn't work for me, I already put a 32x32 PNG on it and nothing that works. you have to fill where it says Body? /*--------------------------------*\ | Custom Cursor | \*--------------------------------*/ /*Lower the size under 32px wide and high if its too large. https://myanimelist.net/forum/?topicid=1903808*/ body *, :not(*) { cursor: url(https://i.imgur.com/M48nUJu.png), auto !important; } ready indeed was that. Thanks I made the correction and it worked |
Jul 12, 2021 11:06 PM
#861
LEGENDS_OF_ANIME said: Valerio_Lyndon said: Legends' code should be working, I believe this is due to some faulty code found earlier in your CSS. If you see on line 497, right above where you pasted the new code, there is a missing curly bracket. If you add a closing bracket there "}" it should fix the problem and enable future code to work. How do you find out if there's a bracket missing or problems similar to this??? you can see your code with Inspect Element in Firefox, that Shishio told me a few days ago when I tried to find help to place a cursor by anime categories for the Blink list design. I think Valerio used that same (Inspect Element in Firefox) to see my Code and verify the problems |
Jul 12, 2021 11:24 PM
#862
EnderVsqz626 said: you can see your code with Inspect Element in Firefox, that Shishio told me a few days ago when I tried to find help to place a cursor by anime categories for the Blink list design. I think Valerio used that same (Inspect Element in Firefox) to see my Code and verify the problems I know that I can use inspect element. What I meant to ask is how would I how which line had an error. Is there a way to find the problems or do I have to look manually always??? |
StoryGraph x Spotify x Instagram “Whether we die or not isn't really that big a deal." — Suzuya Juuzou |
Jul 13, 2021 10:05 AM
#863
LEGENDS_OF_ANIME said: EnderVsqz626 said: you can see your code with Inspect Element in Firefox, that Shishio told me a few days ago when I tried to find help to place a cursor by anime categories for the Blink list design. I think Valerio used that same (Inspect Element in Firefox) to see my Code and verify the problems I know that I can use inspect element. What I meant to ask is how would I how which line had an error. Is there a way to find the problems or do I have to look manually always??? I couldn't tell you since I don't know how to use the inspect element because I don't have Firefox on my PC. but I imagine that he would have realized it quickly (I don't know how but I think it was like that) I have never modified my Clarity list, this is the first modification on my part that I make to Clarity, since that list was a copy and paste of a friend (which I liked how it was left and I asked for it) |
Jul 13, 2021 1:12 PM
#864
Tone_ZR said: Thank you very much. It worked the way I wanted it. I had done it manually yesterday and it looked like this: /*========== S T A R T ==========*\ | Favourite Movie (Right) | \*==============================*/ .data.tags span{padding:0}.data.tags span a{margin:1px 0} .data.tags span a[href*="=MV"], .data.tags span a[href*="=MV"] {position:absolute; left:1068px; 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:24px; overflow:hidden; box-shadow:0 1px 2px rgba(0,0,0,.2); } .data.tags span a[href*="=MV"]:before, .data.tags span a[href*="=MV"]:before { content:"🎬"; font-size:18px; } Awesome. :) Ah, you used an emoji! I always forget about those for some reason, but that's a great solution. |
Jul 13, 2021 1:28 PM
#865
LEGENDS_OF_ANIME said: Valerio_Lyndon said: Legends' code should be working, I believe this is due to some faulty code found earlier in your CSS. If you see on line 497, right above where you pasted the new code, there is a missing curly bracket. If you add a closing bracket there "}" it should fix the problem and enable future code to work. How do you find out if there's a bracket missing or problems similar to this??? Good question. When Ender said it wasn't working but the code looked correct, the first thing I did was test to see if the code worked on its own to check if the problem was with the code itself or with the implementation of the code (in this case, it obviously turned out to be with the implementation). The way I tested this was going onto Ender's list and adding a new stylesheet with Inspect Element and pasting the code. [Image] Since the code is on its own stylesheet, it isn't affected by the other CSS in the same way as when it is pasted at the bottom of the same one. When this worked, I figured it had to be one of two things: a problem occuring when the new code was added, such as improper copy-pasting, or a problem with the old code, such as a missing curly bracket "}" or parentheses ")". So I removed the separate stylesheet I had added and instead added the code to the bottom of Ender's main CSS file. This confirmed my suspicion, so at that point it's just a question of finding the problem. There are a few ways to do this. One is just eye balling it, looking for any formatting errors, but this can take a while. Something I often keep a lookout for is incorrect syntax highlighting. Most CSS editors highlight the code in certain colours based on what it thinks each piece is. When there is a missing bracket it will throw this out of whack. [Image] The other way to find it is really just knowing the code and what it does. Since I'm familiar with MAL's code and most of this theme and its modifications are written by me, I usually will be able to tell what parts of it are currently being applied to the list and what aren't by skimming it through. A missing bracket will usually break everything after it, so If the code is being applied correctly then I should scroll down, and if it is broken and not being applied correctly, I need to scroll up until I find the problem. |
Valerio_LyndonJul 13, 2021 1:32 PM
Jul 13, 2021 8:45 PM
#866
Valerio_Lyndon said: Good question. When Ender said it wasn't working but the code looked correct, the first thing I did was test to see if the code worked on its own to check if the problem was with the code itself or with the implementation of the code (in this case, it obviously turned out to be with the implementation). The way I tested this was going onto Ender's list and adding a new stylesheet with Inspect Element and pasting the code. [Image] Since the code is on its own stylesheet, it isn't affected by the other CSS in the same way as when it is pasted at the bottom of the same one. When this worked, I figured it had to be one of two things: a problem occuring when the new code was added, such as improper copy-pasting, or a problem with the old code, such as a missing curly bracket "}" or parentheses ")". So I removed the separate stylesheet I had added and instead added the code to the bottom of Ender's main CSS file. This confirmed my suspicion, so at that point it's just a question of finding the problem. There are a few ways to do this. One is just eye balling it, looking for any formatting errors, but this can take a while. Something I often keep a lookout for is incorrect syntax highlighting. Most CSS editors highlight the code in certain colours based on what it thinks each piece is. When there is a missing bracket it will throw this out of whack. [Image] The other way to find it is really just knowing the code and what it does. Since I'm familiar with MAL's code and most of this theme and its modifications are written by me, I usually will be able to tell what parts of it are currently being applied to the list and what aren't by skimming it through. A missing bracket will usually break everything after it, so If the code is being applied correctly then I should scroll down, and if it is broken and not being applied correctly, I need to scroll up until I find the problem. Thanks a LOT for talking your time and giving me such a big explanation. I didn't know a lot of this and I can already tell it will really help me in the future. --__-- though, I am just a 15 year old brat who's just messing with some code and trying to understand it. I still haven't learned CSS but I do intend to. (btw, are you still making that CSS guide of yours???) |
StoryGraph x Spotify x Instagram “Whether we die or not isn't really that big a deal." — Suzuya Juuzou |
Jul 13, 2021 10:53 PM
#867
LEGENDS_OF_ANIME said: (btw, are you still making that CSS guide of yours???) I'm sorry to say other projects or hobbies have generally been taking precedence. LEGENDS_OF_ANIME said: though, I am just a 15 year old brat who's just messing with some code and trying to understand it. I still haven't learned CSS but I do intend to. Judging by your responses on this thread you've learned quite a bit. :) Trust me, once you have the format down the rest is mostly learning by repetition. |
Jul 14, 2021 8:56 AM
#868
I need some help. I ran into this problem pretty long ago but just ignored it, but now I want to style the tags a bit and it's bothering me a lot. For example, this is one of my tags -.data.tags span a[href*="=Art%2FAnimation"] { background: url(https://i.imgur.com/sv4ksFO.gif) ; color: white !important } I just typed "%2F" in place of a space which is called "ASCII Encoding" I think. The sign for "|" is "%7C". But when I only use this as the tag in the CSS, it doesn't work .data.tags span a[href*="=%7C"] { background: BGCOLOUR; color: #00000 !important } I even tried only typing "|" but that doesn't work too. I am sorry that I am so bad at explaining but I hope someone gets what problem I have. Also just a side question but will my list load time increase if I put all my CSS into dropbox or something and use it all as one import code in my list??? |
Legends_of_animeJul 14, 2021 9:03 AM
StoryGraph x Spotify x Instagram “Whether we die or not isn't really that big a deal." — Suzuya Juuzou |
Jul 15, 2021 1:05 AM
#869
LEGENDS_OF_ANIME said: I need some help. I ran into this problem pretty long ago but just ignored it, but now I want to style the tags a bit and it's bothering me a lot. For example, this is one of my tags - .data.tags span a[href*="=Art%2FAnimation"] { background: url(https://i.imgur.com/sv4ksFO.gif) ; color: white !important } I just typed "%2F" in place of a space which is called "ASCII Encoding" I think. The sign for "|" is "%7C". But when I only use this as the tag in the CSS, it doesn't work .data.tags span a[href*="=%7C"] { background: BGCOLOUR; color: #00000 !important } I even tried only typing "|" but that doesn't work too. I am sorry that I am so bad at explaining but I hope someone gets what problem I have. Also just a side question but will my list load time increase if I put all my CSS into dropbox or something and use it all as one import code in my list??? I hate to be unhelpful but the %7C should be working. I loaded it onto my list and it's working alright: https://myanimelist.net/mangalist/Valerio_Lyndon If you're using %2F for space, perhaps try using %20 instead and see if that fixes it? Tags: Test1, |, Test2, Test | 3 Code: .data.tags span a[href*="=%7C"] { background: white !important; color: #00000 !important } .data.tags span a[href*="=Test%20%7C%203"] { background: black !important; color: white !important } If you aren't able to select a tag easily, you can always check its value in the HTML. This will be what the CSS is targeting, so as long as the CSS matches the HTML it will be fine. For example: --- Putting code into an import should usually be the same or unnoticeably similar to having it outside of one. The only times I think you would notice a difference might be if MAL or the imported host (Dropbox, in this case) were inherently slow or having a slow day. But I believe Dropbox is usually pretty fast, so it shouldn't affect anything negatively. |
Valerio_LyndonJul 15, 2021 1:13 AM
Jul 15, 2021 5:36 AM
#870
Valerio_Lyndon said: LEGENDS_OF_ANIME said: I need some help. I ran into this problem pretty long ago but just ignored it, but now I want to style the tags a bit and it's bothering me a lot. For example, this is one of my tags - .data.tags span a[href*="=Art%2FAnimation"] { background: url(https://i.imgur.com/sv4ksFO.gif) ; color: white !important } I just typed "%2F" in place of a space which is called "ASCII Encoding" I think. The sign for "|" is "%7C". But when I only use this as the tag in the CSS, it doesn't work .data.tags span a[href*="=%7C"] { background: BGCOLOUR; color: #00000 !important } I even tried only typing "|" but that doesn't work too. I am sorry that I am so bad at explaining but I hope someone gets what problem I have. Also just a side question but will my list load time increase if I put all my CSS into dropbox or something and use it all as one import code in my list??? I hate to be unhelpful but the %7C should be working. I loaded it onto my list and it's working alright: https://myanimelist.net/mangalist/Valerio_Lyndon If you're using %2F for space, perhaps try using %20 instead and see if that fixes it? Tags: Test1, |, Test2, Test | 3 Code: .data.tags span a[href*="=%7C"] { background: white !important; color: #00000 !important } .data.tags span a[href*="=Test%20%7C%203"] { background: black !important; color: white !important } If you aren't able to select a tag easily, you can always check its value in the HTML. This will be what the CSS is targeting, so as long as the CSS matches the HTML it will be fine. For example: --- Putting code into an import should usually be the same or unnoticeably similar to having it outside of one. The only times I think you would notice a difference might be if MAL or the imported host (Dropbox, in this case) were inherently slow or having a slow day. But I believe Dropbox is usually pretty fast, so it shouldn't affect anything negatively. I am so mad............... I literally typed sooooooooo many things but then I just FUCKING CLOSE CHROME BY MISTAKE AND IT'S ALL GONE NOW. Anyway, I will keep it short this time. The maing thing is that it's working now. I copied the HTML value using firefox and it's working but I am pretty sure I typed the same thing. Thanks for keeping the tag in your list, you can delete that now. And I wanna ask 2 more questions, first one being that when I went to anime list using firefox I saw that a lot of things were different. My "days" section even overlapped the edit button. So do I have to check if my list is okay or not in both chrome and firefox when making changes??? or is there a way to fix this?? The second question is, when I went to your anime list I saw that some of your tags were grouped together and some were separated. Could you tell me how I can do that, cuz I was wanting something exactly like that. I found this code is your CSS which I think does that grouping thing but I just couldn't figure out which value meant what and how it works. /* Grouped Tags */ .data.tags span a[href*="\=SC-"], .data.tags span a[href*="\=VG-"], .data.tags span a[href*="\=WM-"], .data.tags span a[href*="\=RM-"] { width: 40px; padding: 1px 0 !important; } .data.tags span a[href*="\=SC-"] { border-radius: 8.5px 0 0 8.5px; margin-right: 2px; } .data.tags span a[href*="\=VG-"] { border-radius: 0; margin-right: 2px; } .data.tags span a[href*="\=WM-"], .data.tags span a[href*="\=RM-"] { border-radius: 0 8.5px 8.5px 0; } So if you're not busy then could you give me a quick guide??? |
StoryGraph x Spotify x Instagram “Whether we die or not isn't really that big a deal." — Suzuya Juuzou |
Jul 16, 2021 1:14 AM
#871
LEGENDS_OF_ANIME said: I am so mad............... I literally typed sooooooooo many things but then I just FUCKING CLOSE CHROME BY MISTAKE AND IT'S ALL GONE NOW. … I went to anime list using firefox I saw that a lot of things were different. My "days" section even overlapped the edit button. So do I have to check if my list is okay or not in both chrome and firefox when making changes??? or is there a way to fix this?? Ah, the amount of times I've done that. I write posts up in a text editor that autosaves my work now lol. Firefox has about 3% market share, so as much as I don't like saying it (as part of that 3%), supporting Firefox isn't that important. Anyhow, Firefox and Chrome will generally display the same. But in the case they don't, you can ignore minor issues like that if if it's going to be too annoying to fix. But, if you decide you really want to fix it, you can write code that will only run on Firefox by wrapping it in a @-moz-document rule. Example code below. The reason this works is that only Firefox supports the -moz-document rule and is therefore the only browser that will read the code inside. @-moz-document url-prefix() { /* firefox-only code */ .data.days { top: 9px; left: -710px; } } LEGENDS_OF_ANIME said: The second question is, when I went to your anime list I saw that some of your tags were grouped together and some were separated. https://i.imgur.com/qepP2nF.png Could you tell me how I can do that, cuz I was wanting something exactly like that. I found this code is your CSS which I think does that grouping thing but I just couldn't figure out which value meant what and how it works. … So if you're not busy then could you give me a quick guide??? I have a write-up on the Grouped Tags in the original post, although it's buried a couple of spoiler menus deep. Hopefully it helps. Valerio_Lyndon said: On my list I have some tags that appear "grouped". This only works with horizontal tags. These aren't too complex, but they will require you to modify some template code for use on your own list. This will include finding the URL of each tag (if you don't know how to do this I have a spoiler at the bottom of this section about it) and putting it in the correct place. I have split this section into several parts to try and explain it better as you need different code for each tag. Limitations: • As it is impossible for CSS to auto-detect if all the tags are there, you have to have all the tags correctly placed and in order, or it will look incorrect: [Image] Adding this to your list: There are a few template codes that you will need, so we'll go over those quickly before covering how to use them. This is the basic code that should be applied to all tags you are grouping. You can use comma separators to apply the code to multiple tags at once. .data.tags span a[href*="=TAGNAME1"], .data.tags span a[href*="=TAGNAME2"] { padding: 1px 8px !important; } Left-most (rounded left corners) group tag. .data.tags span a[href*="=TAGNAME"] { padding-right: 4px !important; border-radius: 8.5px 0 0 8.5px; margin-right: 2px; } Center (no rounded corners) group tag. This could be used for as many centre sections as you wanted. .data.tags span a[href*="=TAGNAME"] { padding: 1px 4px !important; border-radius: 0; margin-right: 2px; } Right-most (rounded right corners) group tag. .data.tags span a[href*="=TAGNAME"] { padding-left: 4px !important; border-radius: 0 8.5px 8.5px 0; } Now that you have the templates at your disposal, you can use them. For each tag you want grouped, you need to insert all their names into the first template. Then, depending on which ones you want on the left/right of the group or in the centre, input the correct tag names into each of the other templates as required. This process can be repeated for as many groups as you want. To show you a working version of the code, here is it all put together to form a group very similar to what I am currently using. This groups tags starting with SC-, VG-, and SM- into one group. /* All together */ .data.tags span a[href*="=SC-"], .data.tags span a[href*="=VG-"], .data.tags span a[href*="=SM-"] { padding: 1px 8px !important; } /* Left-side */ .data.tags span a[href*="=SC-"] { padding-right: 4px !important; border-radius: 8.5px 0 0 8.5px; margin-right: 2px; } /* Centre */ .data.tags span a[href*="=VG-"] { padding: 1px 4px !important; border-radius: 0; margin-right: 2px; } /* Right-side */ .data.tags span a[href*="=SM-"] { padding-left: 4px !important; border-radius: 0 8.5px 8.5px 0; } The easiest way to find the URL version of your tag is by hovering your mouse over your tag. In one of your screen corners (generally bottom left) it should display the URL, including the tag section, and you can copy it into the code as seen there. It will be after the "tag=" text. Alternatively, assuming you don't have any special characters in your tag names (such as @, &, ^, etcetera etcetera), you can simply convert any spaces in your tags to "%20". So "This is a tag" would become "This%20is%20a%20tag". If something isn't working you can always fallback to the mouse-hover method. |
Jul 16, 2021 1:13 PM
#872
I fucked up big time... my whole list is messed up and idk what to do. So I was trying that new javascript booklet tool and I wanted to change all the titles on my list to English titles... I guess I must've messed up somewhere along the way. I copied the following code into my list that I got from using the booklet tool after generating code for the titles on my list: /* Generated by MyAnimeList-Tools v4.0 https://github.com/ValerioLyndon/MyAnimeList-Tools Template={"template":".title .link[href^="/[TYPE]/[ID]/"]::after {content: "[TITLEENG]"; }","matchtemplate":"/[TYPE]/[ID]/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} MatchTemplate=/[TYPE]/[ID]/ */ {"template":".title .link[href^="/anime/477/"]::after {content: "Aria the Animation"; }","matchtemplate":"/anime/477/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/41587/"]::after {content: "My Hero Academia Season 5"; }","matchtemplate":"/anime/41587/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/34566/"]::after {content: "Boruto: Naruto Next Generations"; }","matchtemplate":"/anime/34566/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/41025/"]::after {content: "To Your Eternity"; }","matchtemplate":"/anime/41025/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/1281/"]::after {content: "Ghost Stories"; }","matchtemplate":"/anime/1281/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/918/"]::after {content: "Gintama"; }","matchtemplate":"/anime/918/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/36094/"]::after {content: "Hakumei and Mikochi"; }","matchtemplate":"/anime/36094/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/21/"]::after {content: "One Piece"; }","matchtemplate":"/anime/21/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/41457/"]::after {content: "Eighty Six"; }","matchtemplate":"/anime/41457/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/25397/"]::after {content: "Absolute Duo"; }","matchtemplate":"/anime/25397/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/31580/"]::after {content: "Ajin: Demi-Human"; }","matchtemplate":"/anime/31580/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/33253/"]::after {content: "Ajin: Demi-Human 2nd Season"; }","matchtemplate":"/anime/33253/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/22199/"]::after {content: "Akame ga Kill!"; }","matchtemplate":"/anime/22199/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/25013/"]::after {content: "Yona of the Dawn"; }","matchtemplate":"/anime/25013/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/41433/"]::after {content: "Akudama Drive"; }","matchtemplate":"/anime/41433/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/19429/"]::after {content: "Riddle Story of Devil"; }","matchtemplate":"/anime/19429/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/10516/"]::after {content: "Anemone"; }","matchtemplate":"/anime/10516/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/6547/"]::after {content: "Angel Beats!"; }","matchtemplate":"/anime/6547/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/10067/"]::after {content: "Angel Beats!: Another Epilogue"; }","matchtemplate":"/anime/10067/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/11111/"]::after {content: "Another"; }","matchtemplate":"/anime/11111/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/24833/"]::after {content: "Assassination Classroom"; }","matchtemplate":"/anime/24833/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/30654/"]::after {content: "Assassination Classroom Second Season"; }","matchtemplate":"/anime/30654/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/9919/"]::after {content: "Blue Exorcist"; }","matchtemplate":"/anime/9919/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/28249/"]::after {content: "The Heroic Legend of Arslan"; }","matchtemplate":"/anime/28249/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/1205/"]::after {content: "The Diary of Tortov Roddle"; }","matchtemplate":"/anime/1205/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/32827/"]::after {content: "B: The Beginning"; }","matchtemplate":"/anime/32827/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/36649/"]::after {content: "Banana Fish"; }","matchtemplate":"/anime/36649/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/22789/"]::after {content: "Barakamon"; }","matchtemplate":"/anime/22789/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/2220/"]::after {content: "Be-Boy Kidnapp'n Idol"; }","matchtemplate":"/anime/2220/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/39195/"]::after {content: "Beastars"; }","matchtemplate":"/anime/39195/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/20787/"]::after {content: "Black Bullet"; }","matchtemplate":"/anime/20787/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/34572/"]::after {content: "Black Clover"; }","matchtemplate":"/anime/34572/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/889/"]::after {content: "Black Lagoon"; }","matchtemplate":"/anime/889/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/1519/"]::after {content: "Black Lagoon: The Second Barrage"; }","matchtemplate":"/anime/1519/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/31964/"]::after {content: "My Hero Academia"; }","matchtemplate":"/anime/31964/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/33486/"]::after {content: "My Hero Academia 2"; }","matchtemplate":"/anime/33486/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/36456/"]::after {content: "My Hero Academia 3"; }","matchtemplate":"/anime/36456/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/38408/"]::after {content: "My Hero Academia Season 4"; }","matchtemplate":"/anime/38408/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/36896/"]::after {content: "My Hero Academia: Two Heroes"; }","matchtemplate":"/anime/36896/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/33929/"]::after {content: "Boku no Hero Academia Jump Festa 2016 Special"; }","matchtemplate":"/anime/33929/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/35459/"]::after {content: "My Hero Academia: Training of the Dead"; }","matchtemplate":"/anime/35459/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/14345/"]::after {content: "BTOOOM!"; }","matchtemplate":"/anime/14345/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/31478/"]::after {content: "Bungo Stray Dogs"; }","matchtemplate":"/anime/31478/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/41468/"]::after {content: "Burn the Witch"; }","matchtemplate":"/anime/41468/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/1689/"]::after {content: "5 Centimeters Per Second"; }","matchtemplate":"/anime/1689/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/10163/"]::after {content: "[C] CONTROL - The Money and Soul of Possibility"; }","matchtemplate":"/anime/10163/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/3962/"]::after {content: "Chocolate Underground"; }","matchtemplate":"/anime/3962/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/15037/"]::after {content: "Corpse Party: Tortured Souls"; }","matchtemplate":"/anime/15037/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/1/"]::after {content: "Cowboy Bebop"; }","matchtemplate":"/anime/1/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/5/"]::after {content: "Cowboy Bebop: The Movie"; }","matchtemplate":"/anime/5/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/17397/"]::after {content: "Cyclops Shoujo Saipu"; }","matchtemplate":"/anime/17397/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/16592/"]::after {content: "Danganronpa: The Animation"; }","matchtemplate":"/anime/16592/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/6880/"]::after {content: "Deadman Wonderland"; }","matchtemplate":"/anime/6880/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/10418/"]::after {content: "Deadman Wonderland: The Red Knife Wielder"; }","matchtemplate":"/anime/10418/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/1535/"]::after {content: "Death Note"; }","matchtemplate":"/anime/1535/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/28223/"]::after {content: "Death Parade"; }","matchtemplate":"/anime/28223/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/40056/"]::after {content: "Deca-Dence"; }","matchtemplate":"/anime/40056/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/35120/"]::after {content: "Devilman: Crybaby"; }","matchtemplate":"/anime/35120/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/38668/"]::after {content: "Dorohedoro"; }","matchtemplate":"/anime/38668/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/41053/"]::after {content: "Dorohedoro OVA"; }","matchtemplate":"/anime/41053/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/30346/"]::after {content: "Doukyusei -Classmates-"; }","matchtemplate":"/anime/30346/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/39792/"]::after {content: "Keep Your Hands Off Eizouken!"; }","matchtemplate":"/anime/39792/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/226/"]::after {content: "Elfen Lied"; }","matchtemplate":"/anime/226/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/790/"]::after {content: "Ergo Proxy"; }","matchtemplate":"/anime/790/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/34662/"]::after {content: "Fate/Apocrypha"; }","matchtemplate":"/anime/34662/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/38084/"]::after {content: "Fate/Grand Order: Absolute Demonic Front - Babylonia"; }","matchtemplate":"/anime/38084/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/25537/"]::after {content: "Fate/stay night: Heaven's Feel - I. Presage Flower"; }","matchtemplate":"/anime/25537/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/33049/"]::after {content: "Fate/stay night: Heaven's Feel - II. Lost Butterfly"; }","matchtemplate":"/anime/33049/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/22297/"]::after {content: "Fate/stay night [Unlimited Blade Works]"; }","matchtemplate":"/anime/22297/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/28701/"]::after {content: "Fate/stay night [Unlimited Blade Works] Season 2"; }","matchtemplate":"/anime/28701/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/27821/"]::after {content: "Fate/stay night: Unlimited Blade Works - Prologue"; }","matchtemplate":"/anime/27821/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/10087/"]::after {content: "Fate/Zero"; }","matchtemplate":"/anime/10087/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/11741/"]::after {content: "Fate/Zero Season 2"; }","matchtemplate":"/anime/11741/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/40499/"]::after {content: "Feed"; }","matchtemplate":"/anime/40499/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/18507/"]::after {content: "Free! - Iwatobi Swim Club"; }","matchtemplate":"/anime/18507/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/22265/"]::after {content: "Free! - Eternal Summer"; }","matchtemplate":"/anime/22265/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/38680/"]::after {content: "Fruits Basket (2019)"; }","matchtemplate":"/anime/38680/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/5114/"]::after {content: "Fullmetal Alchemist: Brotherhood"; }","matchtemplate":"/anime/5114/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/8187/"]::after {content: "Fumiko's Confession"; }","matchtemplate":"/anime/8187/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/39533/"]::after {content: "Given"; }","matchtemplate":"/anime/39533/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/40421/"]::after {content: "Eiga Given"; }","matchtemplate":"/anime/40421/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/40052/"]::after {content: "Great Pretender"; }","matchtemplate":"/anime/40052/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/134/"]::after {content: "Gunslinger Girl"; }","matchtemplate":"/anime/134/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/31859/"]::after {content: "Grimgar: Ashes and Illusions"; }","matchtemplate":"/anime/31859/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/387/"]::after {content: "Haibane Renmei"; }","matchtemplate":"/anime/387/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/20583/"]::after {content: "Haikyu!!"; }","matchtemplate":"/anime/20583/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/28891/"]::after {content: "Haikyu!! 2nd Season"; }","matchtemplate":"/anime/28891/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/32935/"]::after {content: "Haikyu!! 3rd Season"; }","matchtemplate":"/anime/32935/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/20689/"]::after {content: "Hamatora The Animation"; }","matchtemplate":"/anime/20689/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/413/"]::after {content: "Mars of Destruction"; }","matchtemplate":"/anime/413/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/1812/"]::after {content: "Hanoka"; }","matchtemplate":"/anime/1812/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/37141/"]::after {content: "Cells at Work!"; }","matchtemplate":"/anime/37141/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/8074/"]::after {content: "High School of the Dead"; }","matchtemplate":"/anime/8074/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/9515/"]::after {content: "High School of the Dead OVA"; }","matchtemplate":"/anime/9515/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/934/"]::after {content: "When They Cry"; }","matchtemplate":"/anime/934/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/33654/"]::after {content: "Hitorijime My Hero"; }","matchtemplate":"/anime/33654/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/35557/"]::after {content: "Land of the Lustrous"; }","matchtemplate":"/anime/35557/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/431/"]::after {content: "Howl's Moving Castle"; }","matchtemplate":"/anime/431/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/11061/"]::after {content: "Hunter x Hunter"; }","matchtemplate":"/anime/11061/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/13271/"]::after {content: "Gekijouban Hunter x Hunter: Hiiro no Genei"; }","matchtemplate":"/anime/13271/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/19951/"]::after {content: "Gekijouban Hunter x Hunter"; }","matchtemplate":"/anime/19951/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/40491/"]::after {content: "Hyperventilation"; }","matchtemplate":"/anime/40491/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/24781/"]::after {content: "Alice in Borderland"; }","matchtemplate":"/anime/24781/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/5231/"]::after {content: "Inazuma Eleven"; }","matchtemplate":"/anime/5231/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/10507/"]::after {content: "Inazuma Eleven Go"; }","matchtemplate":"/anime/10507/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/13261/"]::after {content: "Inazuma Eleven Go: Chrono Stone"; }","matchtemplate":"/anime/13261/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/9032/"]::after {content: "Gekijouban Inazuma Eleven: Saikyou Gundan Ogre Shuurai"; }","matchtemplate":"/anime/9032/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/40748/"]::after {content: "Sorcery Fight"; }","matchtemplate":"/anime/40748/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/3092/"]::after {content: "Junjo Romantica"; }","matchtemplate":"/anime/3092/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/14467/"]::after {content: "K"; }","matchtemplate":"/anime/14467/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/16904/"]::after {content: "K: Missing Kings"; }","matchtemplate":"/anime/16904/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/37999/"]::after {content: "Kaguya-sama: Love is War"; }","matchtemplate":"/anime/37999/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/37981/"]::after {content: "Children of the Sea"; }","matchtemplate":"/anime/37981/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/34933/"]::after {content: "Kakegurui: Compulsive Gambler"; }","matchtemplate":"/anime/34933/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/37086/"]::after {content: "Kakegurui 2nd Season"; }","matchtemplate":"/anime/37086/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/40221/"]::after {content: "Tower of God"; }","matchtemplate":"/anime/40221/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/16009/"]::after {content: "Sunday Without God"; }","matchtemplate":"/anime/16009/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/6594/"]::after {content: "Katanagatari"; }","matchtemplate":"/anime/6594/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/736/"]::after {content: "Level-C"; }","matchtemplate":"/anime/736/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/33/"]::after {content: "Berserk"; }","matchtemplate":"/anime/33/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/38000/"]::after {content: "Demon Slayer: Kimetsu no Yaiba"; }","matchtemplate":"/anime/38000/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/40456/"]::after {content: "Demon Slayer -Kimetsu no Yaiba- The Movie: Mugen Train"; }","matchtemplate":"/anime/40456/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/22535/"]::after {content: "Parasyte -the maxim-"; }","matchtemplate":"/anime/22535/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/16782/"]::after {content: "The Garden of Words"; }","matchtemplate":"/anime/16782/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/41466/"]::after {content: "Kyojinzoku no Hanayome"; }","matchtemplate":"/anime/41466/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/42057/"]::after {content: "Shiro the Giant, and the Castle of Ice"; }","matchtemplate":"/anime/42057/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/17265/"]::after {content: "Log Horizon"; }","matchtemplate":"/anime/17265/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/34599/"]::after {content: "Made in Abyss"; }","matchtemplate":"/anime/34599/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/37514/"]::after {content: "Made in Abyss Movie 1: Journey's Dawn"; }","matchtemplate":"/anime/37514/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/37515/"]::after {content: "Made in Abyss Movie 2: Wandering Twilight"; }","matchtemplate":"/anime/37515/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/36862/"]::after {content: "Gekijouban Made in Abyss: Fukaki Tamashii no Reimei"; }","matchtemplate":"/anime/36862/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/31741/"]::after {content: "Magi: Adventure of Sinbad"; }","matchtemplate":"/anime/31741/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/18115/"]::after {content: "Magi: The Kingdom of Magic"; }","matchtemplate":"/anime/18115/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/14513/"]::after {content: "Magi: The Labyrinth of Magic"; }","matchtemplate":"/anime/14513/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/9756/"]::after {content: "Puella Magi Madoka Magica"; }","matchtemplate":"/anime/9756/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/512/"]::after {content: "Kiki's Delivery Service"; }","matchtemplate":"/anime/512/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/41265/"]::after {content: "Mars Red"; }","matchtemplate":"/anime/41265/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/10620/"]::after {content: "The Future Diary"; }","matchtemplate":"/anime/10620/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/16762/"]::after {content: "The Future Diary: Redial"; }","matchtemplate":"/anime/16762/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/32182/"]::after {content: "Mob Psycho 100"; }","matchtemplate":"/anime/32182/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/37510/"]::after {content: "Mob Psycho 100 II"; }","matchtemplate":"/anime/37510/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/39651/"]::after {content: "Mob Psycho 100: The Spirits and Such Consultation Office's First Company Outing - A Healing Trip That Warms the Heart"; }","matchtemplate":"/anime/39651/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/15315/"]::after {content: "Problem children are coming from another world aren't they?"; }","matchtemplate":"/anime/15315/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/2246/"]::after {content: "Mononoke"; }","matchtemplate":"/anime/2246/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/23755/"]::after {content: "The Seven Deadly Sins"; }","matchtemplate":"/anime/23755/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/35946/"]::after {content: "The Seven Deadly Sins the Movie: Prisoners of the Sky"; }","matchtemplate":"/anime/35946/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/34577/"]::after {content: "The Seven Deadly Sins: Revival of the Commandments"; }","matchtemplate":"/anime/34577/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/39701/"]::after {content: "The Seven Deadly Sins: Wrath of the Gods"; }","matchtemplate":"/anime/39701/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/31722/"]::after {content: "The Seven Deadly Sins: Signs of Holy War"; }","matchtemplate":"/anime/31722/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/20/"]::after {content: "Naruto"; }","matchtemplate":"/anime/20/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/1735/"]::after {content: "Naruto: Shippuden"; }","matchtemplate":"/anime/1735/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/2472/"]::after {content: "Naruto: Shippuden the Movie"; }","matchtemplate":"/anime/2472/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/10589/"]::after {content: "Naruto Movie 8"; }","matchtemplate":"/anime/10589/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} {"template":".title .link[href^="/anime/13667/"]::after {content: "Road to Ninja: Naruto the Movie"; }","matchtemplate":" I obviously deleted the code but it seems my list has not changed. This is what my list used to look like: I can't seem to fit all of this in one message so I'll include my list's current code in the next post. |
mistersundayJul 16, 2021 1:19 PM
Jul 16, 2021 1:19 PM
#873
This is what my current code looks like after deleting the tool's code: @import "https://fonts.googleapis.com/css?family=Oswald"; @import "https://malscraper.azurewebsites.net/covers/anime/mistersunday/presets/dataimagelinkbefore"; @import "https://malcat-gen.appspot.com/headers?user=mistersunday&list=anime"; @import "https://malcat-gen.appspot.com/headers?user=mistersunday&list=anime&template=[data-query*='status":7'] .list-item:nth-child($index) .data.status:before{content:"$content"}[data-query*='status":7'] .list-item:nth-child($index){margin-top: 100px;}"; [data-query*='status":7'] .list-item:nth-child($index) .data.status:before{content:"$content"}[data-query*='status":7'] .list-item:nth-child($index){margin-top: 82px;} /* Generated by MyAnimeList-Tools v4.0 https://github.com/ValerioLyndon/MyAnimeList-Tools Template={"template":".title .link[href^="/[TYPE]/[ID]/"]::after {content: "[TITLEENG]"; }","matchtemplate":"/[TYPE]/[ID]/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} MatchTemplate=/[TYPE]/[ID]/ */ /*==============================* | Category-Coloured Header Bars | * --- - --- - ---- - --- - --- */ /* BANNER BACKGROUND To change background images: Delete what's in the parenthesis. Upload the new background to Imgur or a similar site, then copy the direct link (or Original GIF link if it's animated) and paste it into the parenthesis. Save. */ :root { --banner: url(https://i.imgur.com/FPQmkaL.png) !important;} /* BANNER TEXT*/ :root { --name: "" !Important; } /* BANNER AVATAR (BOTTOM LEFT PIC) */ :root { --avatar: url(https://i.imgur.com/M5EkBKv.jpg?1) !important;} /* BANNER CHARACTER (RIGHT PIC)*/ :root { --character: url(NONE) !important; } /* WALLPAPER */ body:before{ background-image: url(https://i.imgur.com/ZkEkR49.png); } /* LEFT CHARACTER BY LIST */ footer:before { background-image: url() !important; } /* RIGHT CHARACTER BY LIST */ footer:after { background-image: url() !important; } /*==============================* | Score Descriptors | * --- - --- - ---- - --- - --- */ .score-na::before { content: "Not yet scored"; } .score-1::before { content: "Irredeemable"; } .score-2::before { content: "Horrible"; } .score-3::before { content: "Bad"; } .score-4::before { content: "Subpar"; } .score-5::before { content: "Mediocre"; } .score-6::before { content: "Fine"; } .score-7::before { content: "Good"; } .score-8::before { content: "Very Good"; } .score-9::before { content: "Fantastic"; } .score-10::before { content: "Masterpiece"; } .score-label { position: relative; display: inline-block; z-index: 0; transition: color 0.2s ease; } .score-label:hover { color: #323232 !important; } .score-label::before { position: absolute; top: -4px; left: -120px; z-index: -1; width: 120px; display: block; padding: 4px 8px 4px calc(100% + 12px); background: #efffcc; font:FontAwesome; font-size: 11px; border-radius: 4px; opacity: 0; transition: opacity 0.2s ease; white-space: pre-wrap; text-align: left; pointer-events: none; } .score-label:hover::before { opacity: 1; } /* TABLE COLORS*/ :root { /* Generic Colours */ --pbg: rgba(224,245,241,0.6); --bg: rgba(224,245,241,0.6); } /* OTHER CODES*/ body:before { width: 100%; height: 100%; display: block; position: fixed; left: 0; top:0; content: ""; } #search-box:after,.open~#search-button{pointer-events:none}:root{--name:none;--avatar:none;--banner:url(https://i.imgur.com/VoPJz2S.jpg);--character:url(https://i.imgur.com/6IPyngH.png);--pbg:#efefef;--bg:#fff;--text:#323232;--text-h:#787878;--text-dim:#bababa;--text-dim-h:#646464;--text-dark:#111;--icon:#323232;--accent:#77b300;--btn-bg:#ebebeb;--btn-bg-h:#f7ffe6;--btn-head-bg-h:#86b300;--btn-text-h:#404040;--bg-dark:#ddd;--text-head:#264d73;--text-head-h:#005266;--watching:#2db039;--completed:#26448f;--onhold:#f9d457;--dropped:#a12f31;--plantowatch:#c3c3c3;--cover-bg:#323232;--edit-btn:#d9d9d9;--checkmark:#9696eb}#advanced-option Is there any way to get my old list back? Or do I need to start from scratch? |
mistersundayJul 16, 2021 1:22 PM
Jul 16, 2021 1:40 PM
#874
mistersunday said: This is what my current code looks like after deleting the tool's code: @import "https://fonts.googleapis.com/css?family=Oswald"; @import "https://malscraper.azurewebsites.net/covers/anime/mistersunday/presets/dataimagelinkbefore"; @import "https://malcat-gen.appspot.com/headers?user=mistersunday&list=anime"; @import "https://malcat-gen.appspot.com/headers?user=mistersunday&list=anime&template=[data-query*='status":7'] .list-item:nth-child($index) .data.status:before{content:"$content"}[data-query*='status":7'] .list-item:nth-child($index){margin-top: 100px;}"; [data-query*='status":7'] .list-item:nth-child($index) .data.status:before{content:"$content"}[data-query*='status":7'] .list-item:nth-child($index){margin-top: 82px;} /* Generated by MyAnimeList-Tools v4.0 https://github.com/ValerioLyndon/MyAnimeList-Tools Template={"template":".title .link[href^="/[TYPE]/[ID]/"]::after {content: "[TITLEENG]"; }","matchtemplate":"/[TYPE]/[ID]/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} MatchTemplate=/[TYPE]/[ID]/ */ /*==============================* | Category-Coloured Header Bars | * --- - --- - ---- - --- - --- */ /* BANNER BACKGROUND To change background images: Delete what's in the parenthesis. Upload the new background to Imgur or a similar site, then copy the direct link (or Original GIF link if it's animated) and paste it into the parenthesis. Save. */ :root { --banner: url(https://i.imgur.com/FPQmkaL.png) !important;} /* BANNER TEXT*/ :root { --name: "" !Important; } /* BANNER AVATAR (BOTTOM LEFT PIC) */ :root { --avatar: url(https://i.imgur.com/M5EkBKv.jpg?1) !important;} /* BANNER CHARACTER (RIGHT PIC)*/ :root { --character: url(NONE) !important; } /* WALLPAPER */ body:before{ background-image: url(https://i.imgur.com/ZkEkR49.png); } /* LEFT CHARACTER BY LIST */ footer:before { background-image: url() !important; } /* RIGHT CHARACTER BY LIST */ footer:after { background-image: url() !important; } /*==============================* | Score Descriptors | * --- - --- - ---- - --- - --- */ .score-na::before { content: "Not yet scored"; } .score-1::before { content: "Irredeemable"; } .score-2::before { content: "Horrible"; } .score-3::before { content: "Bad"; } .score-4::before { content: "Subpar"; } .score-5::before { content: "Mediocre"; } .score-6::before { content: "Fine"; } .score-7::before { content: "Good"; } .score-8::before { content: "Very Good"; } .score-9::before { content: "Fantastic"; } .score-10::before { content: "Masterpiece"; } .score-label { position: relative; display: inline-block; z-index: 0; transition: color 0.2s ease; } .score-label:hover { color: #323232 !important; } .score-label::before { position: absolute; top: -4px; left: -120px; z-index: -1; width: 120px; display: block; padding: 4px 8px 4px calc(100% + 12px); background: #efffcc; font:FontAwesome; font-size: 11px; border-radius: 4px; opacity: 0; transition: opacity 0.2s ease; white-space: pre-wrap; text-align: left; pointer-events: none; } .score-label:hover::before { opacity: 1; } /* TABLE COLORS*/ :root { /* Generic Colours */ --pbg: rgba(224,245,241,0.6); --bg: rgba(224,245,241,0.6); } /* OTHER CODES*/ body:before { width: 100%; height: 100%; display: block; position: fixed; left: 0; top:0; content: ""; } #search-box:after,.open~#search-button{pointer-events:none}:root{--name:none;--avatar:none;--banner:url(https://i.imgur.com/VoPJz2S.jpg);--character:url(https://i.imgur.com/6IPyngH.png);--pbg:#efefef;--bg:#fff;--text:#323232;--text-h:#787878;--text-dim:#bababa;--text-dim-h:#646464;--text-dark:#111;--icon:#323232;--accent:#77b300;--btn-bg:#ebebeb;--btn-bg-h:#f7ffe6;--btn-head-bg-h:#86b300;--btn-text-h:#404040;--bg-dark:#ddd;--text-head:#264d73;--text-head-h:#005266;--watching:#2db039;--completed:#26448f;--onhold:#f9d457;--dropped:#a12f31;--plantowatch:#c3c3c3;--cover-bg:#323232;--edit-btn:#d9d9d9;--checkmark:#9696eb}#advanced-option Is there any way to get my old list back? Or do I need to start from scratch? Is this how it used to be? https://pastebin.com/raw/q8Rq1LKD Also try it after removing /* "Clarity" Modification by Valerio Lyndon / Hover Image / Revision 0.2 */ .data.image{overflow:visible}.data.image a:before{content:"";position:absolute;top:50%;left:-166px;z-index:50;width:150px;height:0;background:center/cover no-repeat var(--bg-dark);border-radius:8px;box-shadow:0 0 2px #000;opacity:0;pointer-events:none;transition:all .3s ease}.list-item:hover .data.image a:before{top:calc(50% - 100px);height:200px;opacity:1}.data.image a:after,.data.image img{border-radius:50%} .cover-block { z-index: 25; } .header { z-index: 30; } 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-position: left bottom; } /* Right Render */ footer:after { left: calc(100% - (50% - 538px)); background-position: right bottom; } |
Jul 16, 2021 1:43 PM
#875
Shishio-kun said: mistersunday said: This is what my current code looks like after deleting the tool's code: @import "https://fonts.googleapis.com/css?family=Oswald"; @import "https://malscraper.azurewebsites.net/covers/anime/mistersunday/presets/dataimagelinkbefore"; @import "https://malcat-gen.appspot.com/headers?user=mistersunday&list=anime"; @import "https://malcat-gen.appspot.com/headers?user=mistersunday&list=anime&template=[data-query*='status":7'] .list-item:nth-child($index) .data.status:before{content:"$content"}[data-query*='status":7'] .list-item:nth-child($index){margin-top: 100px;}"; [data-query*='status":7'] .list-item:nth-child($index) .data.status:before{content:"$content"}[data-query*='status":7'] .list-item:nth-child($index){margin-top: 82px;} /* Generated by MyAnimeList-Tools v4.0 https://github.com/ValerioLyndon/MyAnimeList-Tools Template={"template":".title .link[href^="/[TYPE]/[ID]/"]::after {content: "[TITLEENG]"; }","matchtemplate":"/[TYPE]/[ID]/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} MatchTemplate=/[TYPE]/[ID]/ */ /*==============================* | Category-Coloured Header Bars | * --- - --- - ---- - --- - --- */ /* BANNER BACKGROUND To change background images: Delete what's in the parenthesis. Upload the new background to Imgur or a similar site, then copy the direct link (or Original GIF link if it's animated) and paste it into the parenthesis. Save. */ :root { --banner: url(https://i.imgur.com/FPQmkaL.png) !important;} /* BANNER TEXT*/ :root { --name: "" !Important; } /* BANNER AVATAR (BOTTOM LEFT PIC) */ :root { --avatar: url(https://i.imgur.com/M5EkBKv.jpg?1) !important;} /* BANNER CHARACTER (RIGHT PIC)*/ :root { --character: url(NONE) !important; } /* WALLPAPER */ body:before{ background-image: url(https://i.imgur.com/ZkEkR49.png); } /* LEFT CHARACTER BY LIST */ footer:before { background-image: url() !important; } /* RIGHT CHARACTER BY LIST */ footer:after { background-image: url() !important; } /*==============================* | Score Descriptors | * --- - --- - ---- - --- - --- */ .score-na::before { content: "Not yet scored"; } .score-1::before { content: "Irredeemable"; } .score-2::before { content: "Horrible"; } .score-3::before { content: "Bad"; } .score-4::before { content: "Subpar"; } .score-5::before { content: "Mediocre"; } .score-6::before { content: "Fine"; } .score-7::before { content: "Good"; } .score-8::before { content: "Very Good"; } .score-9::before { content: "Fantastic"; } .score-10::before { content: "Masterpiece"; } .score-label { position: relative; display: inline-block; z-index: 0; transition: color 0.2s ease; } .score-label:hover { color: #323232 !important; } .score-label::before { position: absolute; top: -4px; left: -120px; z-index: -1; width: 120px; display: block; padding: 4px 8px 4px calc(100% + 12px); background: #efffcc; font:FontAwesome; font-size: 11px; border-radius: 4px; opacity: 0; transition: opacity 0.2s ease; white-space: pre-wrap; text-align: left; pointer-events: none; } .score-label:hover::before { opacity: 1; } /* TABLE COLORS*/ :root { /* Generic Colours */ --pbg: rgba(224,245,241,0.6); --bg: rgba(224,245,241,0.6); } /* OTHER CODES*/ body:before { width: 100%; height: 100%; display: block; position: fixed; left: 0; top:0; content: ""; } #search-box:after,.open~#search-button{pointer-events:none}:root{--name:none;--avatar:none;--banner:url(https://i.imgur.com/VoPJz2S.jpg);--character:url(https://i.imgur.com/6IPyngH.png);--pbg:#efefef;--bg:#fff;--text:#323232;--text-h:#787878;--text-dim:#bababa;--text-dim-h:#646464;--text-dark:#111;--icon:#323232;--accent:#77b300;--btn-bg:#ebebeb;--btn-bg-h:#f7ffe6;--btn-head-bg-h:#86b300;--btn-text-h:#404040;--bg-dark:#ddd;--text-head:#264d73;--text-head-h:#005266;--watching:#2db039;--completed:#26448f;--onhold:#f9d457;--dropped:#a12f31;--plantowatch:#c3c3c3;--cover-bg:#323232;--edit-btn:#d9d9d9;--checkmark:#9696eb}#advanced-option Is there any way to get my old list back? Or do I need to start from scratch? Is this how it used to be? https://pastebin.com/raw/q8Rq1LKD Also try it after removing /* "Clarity" Modification by Valerio Lyndon / Hover Image / Revision 0.2 */ .data.image{overflow:visible}.data.image a:before{content:"";position:absolute;top:50%;left:-166px;z-index:50;width:150px;height:0;background:center/cover no-repeat var(--bg-dark);border-radius:8px;box-shadow:0 0 2px #000;opacity:0;pointer-events:none;transition:all .3s ease}.list-item:hover .data.image a:before{top:calc(50% - 100px);height:200px;opacity:1}.data.image a:after,.data.image img{border-radius:50%} .cover-block { z-index: 25; } .header { z-index: 30; } 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-position: left bottom; } /* Right Render */ footer:after { left: calc(100% - (50% - 538px)); background-position: right bottom; } Thank you that helped! The only issue I'm seeing is that the headers aren't formatted how they used to be? Do I just need to modify this code? It looks like they're there but they don't seem like actual headers |
Jul 16, 2021 1:55 PM
#876
mistersunday said: Shishio-kun said: mistersunday said: This is what my current code looks like after deleting the tool's code: @import "https://fonts.googleapis.com/css?family=Oswald"; @import "https://malscraper.azurewebsites.net/covers/anime/mistersunday/presets/dataimagelinkbefore"; @import "https://malcat-gen.appspot.com/headers?user=mistersunday&list=anime"; @import "https://malcat-gen.appspot.com/headers?user=mistersunday&list=anime&template=[data-query*='status":7'] .list-item:nth-child($index) .data.status:before{content:"$content"}[data-query*='status":7'] .list-item:nth-child($index){margin-top: 100px;}"; [data-query*='status":7'] .list-item:nth-child($index) .data.status:before{content:"$content"}[data-query*='status":7'] .list-item:nth-child($index){margin-top: 82px;} /* Generated by MyAnimeList-Tools v4.0 https://github.com/ValerioLyndon/MyAnimeList-Tools Template={"template":".title .link[href^="/[TYPE]/[ID]/"]::after {content: "[TITLEENG]"; }","matchtemplate":"/[TYPE]/[ID]/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} MatchTemplate=/[TYPE]/[ID]/ */ /*==============================* | Category-Coloured Header Bars | * --- - --- - ---- - --- - --- */ /* BANNER BACKGROUND To change background images: Delete what's in the parenthesis. Upload the new background to Imgur or a similar site, then copy the direct link (or Original GIF link if it's animated) and paste it into the parenthesis. Save. */ :root { --banner: url(https://i.imgur.com/FPQmkaL.png) !important;} /* BANNER TEXT*/ :root { --name: "" !Important; } /* BANNER AVATAR (BOTTOM LEFT PIC) */ :root { --avatar: url(https://i.imgur.com/M5EkBKv.jpg?1) !important;} /* BANNER CHARACTER (RIGHT PIC)*/ :root { --character: url(NONE) !important; } /* WALLPAPER */ body:before{ background-image: url(https://i.imgur.com/ZkEkR49.png); } /* LEFT CHARACTER BY LIST */ footer:before { background-image: url() !important; } /* RIGHT CHARACTER BY LIST */ footer:after { background-image: url() !important; } /*==============================* | Score Descriptors | * --- - --- - ---- - --- - --- */ .score-na::before { content: "Not yet scored"; } .score-1::before { content: "Irredeemable"; } .score-2::before { content: "Horrible"; } .score-3::before { content: "Bad"; } .score-4::before { content: "Subpar"; } .score-5::before { content: "Mediocre"; } .score-6::before { content: "Fine"; } .score-7::before { content: "Good"; } .score-8::before { content: "Very Good"; } .score-9::before { content: "Fantastic"; } .score-10::before { content: "Masterpiece"; } .score-label { position: relative; display: inline-block; z-index: 0; transition: color 0.2s ease; } .score-label:hover { color: #323232 !important; } .score-label::before { position: absolute; top: -4px; left: -120px; z-index: -1; width: 120px; display: block; padding: 4px 8px 4px calc(100% + 12px); background: #efffcc; font:FontAwesome; font-size: 11px; border-radius: 4px; opacity: 0; transition: opacity 0.2s ease; white-space: pre-wrap; text-align: left; pointer-events: none; } .score-label:hover::before { opacity: 1; } /* TABLE COLORS*/ :root { /* Generic Colours */ --pbg: rgba(224,245,241,0.6); --bg: rgba(224,245,241,0.6); } /* OTHER CODES*/ body:before { width: 100%; height: 100%; display: block; position: fixed; left: 0; top:0; content: ""; } #search-box:after,.open~#search-button{pointer-events:none}:root{--name:none;--avatar:none;--banner:url(https://i.imgur.com/VoPJz2S.jpg);--character:url(https://i.imgur.com/6IPyngH.png);--pbg:#efefef;--bg:#fff;--text:#323232;--text-h:#787878;--text-dim:#bababa;--text-dim-h:#646464;--text-dark:#111;--icon:#323232;--accent:#77b300;--btn-bg:#ebebeb;--btn-bg-h:#f7ffe6;--btn-head-bg-h:#86b300;--btn-text-h:#404040;--bg-dark:#ddd;--text-head:#264d73;--text-head-h:#005266;--watching:#2db039;--completed:#26448f;--onhold:#f9d457;--dropped:#a12f31;--plantowatch:#c3c3c3;--cover-bg:#323232;--edit-btn:#d9d9d9;--checkmark:#9696eb}#advanced-option Is there any way to get my old list back? Or do I need to start from scratch? Is this how it used to be? https://pastebin.com/raw/q8Rq1LKD Also try it after removing /* "Clarity" Modification by Valerio Lyndon / Hover Image / Revision 0.2 */ .data.image{overflow:visible}.data.image a:before{content:"";position:absolute;top:50%;left:-166px;z-index:50;width:150px;height:0;background:center/cover no-repeat var(--bg-dark);border-radius:8px;box-shadow:0 0 2px #000;opacity:0;pointer-events:none;transition:all .3s ease}.list-item:hover .data.image a:before{top:calc(50% - 100px);height:200px;opacity:1}.data.image a:after,.data.image img{border-radius:50%} .cover-block { z-index: 25; } .header { z-index: 30; } 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-position: left bottom; } /* Right Render */ footer:after { left: calc(100% - (50% - 538px)); background-position: right bottom; } Thank you that helped! The only issue I'm seeing is that the headers aren't formatted how they used to be? Do I just need to modify this code? It looks like they're there but they don't seem like actual headers Click this link and try these codes at the bottom, otherwise you need to add the mod from the opening post again (under popular/requested user changes). The rounded headers is probably what it was https://valeriolyndon.github.io/MAL-Public-List-Designs/Clarity%20Theme/Mod%20-%20Category%20Headers%20Round%20Compressed.css |
Jul 16, 2021 2:46 PM
#877
Shishio-kun said: mistersunday said: Shishio-kun said: mistersunday said: This is what my current code looks like after deleting the tool's code: @import "https://fonts.googleapis.com/css?family=Oswald"; @import "https://malscraper.azurewebsites.net/covers/anime/mistersunday/presets/dataimagelinkbefore"; @import "https://malcat-gen.appspot.com/headers?user=mistersunday&list=anime"; @import "https://malcat-gen.appspot.com/headers?user=mistersunday&list=anime&template=[data-query*='status":7'] .list-item:nth-child($index) .data.status:before{content:"$content"}[data-query*='status":7'] .list-item:nth-child($index){margin-top: 100px;}"; [data-query*='status":7'] .list-item:nth-child($index) .data.status:before{content:"$content"}[data-query*='status":7'] .list-item:nth-child($index){margin-top: 82px;} /* Generated by MyAnimeList-Tools v4.0 https://github.com/ValerioLyndon/MyAnimeList-Tools Template={"template":".title .link[href^="/[TYPE]/[ID]/"]::after {content: "[TITLEENG]"; }","matchtemplate":"/[TYPE]/[ID]/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} MatchTemplate=/[TYPE]/[ID]/ */ /*==============================* | Category-Coloured Header Bars | * --- - --- - ---- - --- - --- */ /* BANNER BACKGROUND To change background images: Delete what's in the parenthesis. Upload the new background to Imgur or a similar site, then copy the direct link (or Original GIF link if it's animated) and paste it into the parenthesis. Save. */ :root { --banner: url(https://i.imgur.com/FPQmkaL.png) !important;} /* BANNER TEXT*/ :root { --name: "" !Important; } /* BANNER AVATAR (BOTTOM LEFT PIC) */ :root { --avatar: url(https://i.imgur.com/M5EkBKv.jpg?1) !important;} /* BANNER CHARACTER (RIGHT PIC)*/ :root { --character: url(NONE) !important; } /* WALLPAPER */ body:before{ background-image: url(https://i.imgur.com/ZkEkR49.png); } /* LEFT CHARACTER BY LIST */ footer:before { background-image: url() !important; } /* RIGHT CHARACTER BY LIST */ footer:after { background-image: url() !important; } /*==============================* | Score Descriptors | * --- - --- - ---- - --- - --- */ .score-na::before { content: "Not yet scored"; } .score-1::before { content: "Irredeemable"; } .score-2::before { content: "Horrible"; } .score-3::before { content: "Bad"; } .score-4::before { content: "Subpar"; } .score-5::before { content: "Mediocre"; } .score-6::before { content: "Fine"; } .score-7::before { content: "Good"; } .score-8::before { content: "Very Good"; } .score-9::before { content: "Fantastic"; } .score-10::before { content: "Masterpiece"; } .score-label { position: relative; display: inline-block; z-index: 0; transition: color 0.2s ease; } .score-label:hover { color: #323232 !important; } .score-label::before { position: absolute; top: -4px; left: -120px; z-index: -1; width: 120px; display: block; padding: 4px 8px 4px calc(100% + 12px); background: #efffcc; font:FontAwesome; font-size: 11px; border-radius: 4px; opacity: 0; transition: opacity 0.2s ease; white-space: pre-wrap; text-align: left; pointer-events: none; } .score-label:hover::before { opacity: 1; } /* TABLE COLORS*/ :root { /* Generic Colours */ --pbg: rgba(224,245,241,0.6); --bg: rgba(224,245,241,0.6); } /* OTHER CODES*/ body:before { width: 100%; height: 100%; display: block; position: fixed; left: 0; top:0; content: ""; } #search-box:after,.open~#search-button{pointer-events:none}:root{--name:none;--avatar:none;--banner:url(https://i.imgur.com/VoPJz2S.jpg);--character:url(https://i.imgur.com/6IPyngH.png);--pbg:#efefef;--bg:#fff;--text:#323232;--text-h:#787878;--text-dim:#bababa;--text-dim-h:#646464;--text-dark:#111;--icon:#323232;--accent:#77b300;--btn-bg:#ebebeb;--btn-bg-h:#f7ffe6;--btn-head-bg-h:#86b300;--btn-text-h:#404040;--bg-dark:#ddd;--text-head:#264d73;--text-head-h:#005266;--watching:#2db039;--completed:#26448f;--onhold:#f9d457;--dropped:#a12f31;--plantowatch:#c3c3c3;--cover-bg:#323232;--edit-btn:#d9d9d9;--checkmark:#9696eb}#advanced-option Is there any way to get my old list back? Or do I need to start from scratch? Is this how it used to be? https://pastebin.com/raw/q8Rq1LKD Also try it after removing /* "Clarity" Modification by Valerio Lyndon / Hover Image / Revision 0.2 */ .data.image{overflow:visible}.data.image a:before{content:"";position:absolute;top:50%;left:-166px;z-index:50;width:150px;height:0;background:center/cover no-repeat var(--bg-dark);border-radius:8px;box-shadow:0 0 2px #000;opacity:0;pointer-events:none;transition:all .3s ease}.list-item:hover .data.image a:before{top:calc(50% - 100px);height:200px;opacity:1}.data.image a:after,.data.image img{border-radius:50%} .cover-block { z-index: 25; } .header { z-index: 30; } 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-position: left bottom; } /* Right Render */ footer:after { left: calc(100% - (50% - 538px)); background-position: right bottom; } Thank you that helped! The only issue I'm seeing is that the headers aren't formatted how they used to be? Do I just need to modify this code? It looks like they're there but they don't seem like actual headers Click this link and try these codes at the bottom, otherwise you need to add the mod from the opening post again (under popular/requested user changes). The rounded headers is probably what it was https://valeriolyndon.github.io/MAL-Public-List-Designs/Clarity%20Theme/Mod%20-%20Category%20Headers%20Round%20Compressed.css Thank you so much! this worked and I was able to modify the headers to match my previous format. The only other question I have left is regarding the opacity of my list. I forgot how to modify the opacity of the list boxes, I think I had it at 80 or 90% opacity beforehand but I completely forgot how to do it. I think the header boxes were at the same opacity level too. Thanks again you guys are life savers! |
Jul 16, 2021 3:27 PM
#878
mistersunday said: Shishio-kun said: mistersunday said: Shishio-kun said: mistersunday said: This is what my current code looks like after deleting the tool's code: @import "https://fonts.googleapis.com/css?family=Oswald"; @import "https://malscraper.azurewebsites.net/covers/anime/mistersunday/presets/dataimagelinkbefore"; @import "https://malcat-gen.appspot.com/headers?user=mistersunday&list=anime"; @import "https://malcat-gen.appspot.com/headers?user=mistersunday&list=anime&template=[data-query*='status":7'] .list-item:nth-child($index) .data.status:before{content:"$content"}[data-query*='status":7'] .list-item:nth-child($index){margin-top: 100px;}"; [data-query*='status":7'] .list-item:nth-child($index) .data.status:before{content:"$content"}[data-query*='status":7'] .list-item:nth-child($index){margin-top: 82px;} /* Generated by MyAnimeList-Tools v4.0 https://github.com/ValerioLyndon/MyAnimeList-Tools Template={"template":".title .link[href^="/[TYPE]/[ID]/"]::after {content: "[TITLEENG]"; }","matchtemplate":"/[TYPE]/[ID]/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} MatchTemplate=/[TYPE]/[ID]/ */ /*==============================* | Category-Coloured Header Bars | * --- - --- - ---- - --- - --- */ /* BANNER BACKGROUND To change background images: Delete what's in the parenthesis. Upload the new background to Imgur or a similar site, then copy the direct link (or Original GIF link if it's animated) and paste it into the parenthesis. Save. */ :root { --banner: url(https://i.imgur.com/FPQmkaL.png) !important;} /* BANNER TEXT*/ :root { --name: "" !Important; } /* BANNER AVATAR (BOTTOM LEFT PIC) */ :root { --avatar: url(https://i.imgur.com/M5EkBKv.jpg?1) !important;} /* BANNER CHARACTER (RIGHT PIC)*/ :root { --character: url(NONE) !important; } /* WALLPAPER */ body:before{ background-image: url(https://i.imgur.com/ZkEkR49.png); } /* LEFT CHARACTER BY LIST */ footer:before { background-image: url() !important; } /* RIGHT CHARACTER BY LIST */ footer:after { background-image: url() !important; } /*==============================* | Score Descriptors | * --- - --- - ---- - --- - --- */ .score-na::before { content: "Not yet scored"; } .score-1::before { content: "Irredeemable"; } .score-2::before { content: "Horrible"; } .score-3::before { content: "Bad"; } .score-4::before { content: "Subpar"; } .score-5::before { content: "Mediocre"; } .score-6::before { content: "Fine"; } .score-7::before { content: "Good"; } .score-8::before { content: "Very Good"; } .score-9::before { content: "Fantastic"; } .score-10::before { content: "Masterpiece"; } .score-label { position: relative; display: inline-block; z-index: 0; transition: color 0.2s ease; } .score-label:hover { color: #323232 !important; } .score-label::before { position: absolute; top: -4px; left: -120px; z-index: -1; width: 120px; display: block; padding: 4px 8px 4px calc(100% + 12px); background: #efffcc; font:FontAwesome; font-size: 11px; border-radius: 4px; opacity: 0; transition: opacity 0.2s ease; white-space: pre-wrap; text-align: left; pointer-events: none; } .score-label:hover::before { opacity: 1; } /* TABLE COLORS*/ :root { /* Generic Colours */ --pbg: rgba(224,245,241,0.6); --bg: rgba(224,245,241,0.6); } /* OTHER CODES*/ body:before { width: 100%; height: 100%; display: block; position: fixed; left: 0; top:0; content: ""; } #search-box:after,.open~#search-button{pointer-events:none}:root{--name:none;--avatar:none;--banner:url(https://i.imgur.com/VoPJz2S.jpg);--character:url(https://i.imgur.com/6IPyngH.png);--pbg:#efefef;--bg:#fff;--text:#323232;--text-h:#787878;--text-dim:#bababa;--text-dim-h:#646464;--text-dark:#111;--icon:#323232;--accent:#77b300;--btn-bg:#ebebeb;--btn-bg-h:#f7ffe6;--btn-head-bg-h:#86b300;--btn-text-h:#404040;--bg-dark:#ddd;--text-head:#264d73;--text-head-h:#005266;--watching:#2db039;--completed:#26448f;--onhold:#f9d457;--dropped:#a12f31;--plantowatch:#c3c3c3;--cover-bg:#323232;--edit-btn:#d9d9d9;--checkmark:#9696eb}#advanced-option Is there any way to get my old list back? Or do I need to start from scratch? Is this how it used to be? https://pastebin.com/raw/q8Rq1LKD Also try it after removing /* "Clarity" Modification by Valerio Lyndon / Hover Image / Revision 0.2 */ .data.image{overflow:visible}.data.image a:before{content:"";position:absolute;top:50%;left:-166px;z-index:50;width:150px;height:0;background:center/cover no-repeat var(--bg-dark);border-radius:8px;box-shadow:0 0 2px #000;opacity:0;pointer-events:none;transition:all .3s ease}.list-item:hover .data.image a:before{top:calc(50% - 100px);height:200px;opacity:1}.data.image a:after,.data.image img{border-radius:50%} .cover-block { z-index: 25; } .header { z-index: 30; } 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-position: left bottom; } /* Right Render */ footer:after { left: calc(100% - (50% - 538px)); background-position: right bottom; } Thank you that helped! The only issue I'm seeing is that the headers aren't formatted how they used to be? Do I just need to modify this code? It looks like they're there but they don't seem like actual headers Click this link and try these codes at the bottom, otherwise you need to add the mod from the opening post again (under popular/requested user changes). The rounded headers is probably what it was https://valeriolyndon.github.io/MAL-Public-List-Designs/Clarity%20Theme/Mod%20-%20Category%20Headers%20Round%20Compressed.css Thank you so much! this worked and I was able to modify the headers to match my previous format. The only other question I have left is regarding the opacity of my list. I forgot how to modify the opacity of the list boxes, I think I had it at 80 or 90% opacity beforehand but I completely forgot how to do it. I think the header boxes were at the same opacity level too. Thanks again you guys are life savers! Not sure how he does it here but it must be something like this /*------------------------------* | List colors (CLARITY LIGHT) | status menu container is the color of the header under the banner when there is transparency on your tables, and the last codes control the rows on hover and the glow around them. Make a new box shadow here https://html-css-js.com/css/generator/box-shadow/ Leave root alone, but you may want to adjust the color for data number's circle and status menu container (the header containing category links) *------------------------------*/ :root { --bg: rgba(255,255,255,.8) !important; } |
Jul 16, 2021 4:09 PM
#879
Shishio-kun said: mistersunday said: Shishio-kun said: mistersunday said: Shishio-kun said: mistersunday said: This is what my current code looks like after deleting the tool's code: @import "https://fonts.googleapis.com/css?family=Oswald"; @import "https://malscraper.azurewebsites.net/covers/anime/mistersunday/presets/dataimagelinkbefore"; @import "https://malcat-gen.appspot.com/headers?user=mistersunday&list=anime"; @import "https://malcat-gen.appspot.com/headers?user=mistersunday&list=anime&template=[data-query*='status":7'] .list-item:nth-child($index) .data.status:before{content:"$content"}[data-query*='status":7'] .list-item:nth-child($index){margin-top: 100px;}"; [data-query*='status":7'] .list-item:nth-child($index) .data.status:before{content:"$content"}[data-query*='status":7'] .list-item:nth-child($index){margin-top: 82px;} /* Generated by MyAnimeList-Tools v4.0 https://github.com/ValerioLyndon/MyAnimeList-Tools Template={"template":".title .link[href^="/[TYPE]/[ID]/"]::after {content: "[TITLEENG]"; }","matchtemplate":"/[TYPE]/[ID]/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} MatchTemplate=/[TYPE]/[ID]/ */ /*==============================* | Category-Coloured Header Bars | * --- - --- - ---- - --- - --- */ /* BANNER BACKGROUND To change background images: Delete what's in the parenthesis. Upload the new background to Imgur or a similar site, then copy the direct link (or Original GIF link if it's animated) and paste it into the parenthesis. Save. */ :root { --banner: url(https://i.imgur.com/FPQmkaL.png) !important;} /* BANNER TEXT*/ :root { --name: "" !Important; } /* BANNER AVATAR (BOTTOM LEFT PIC) */ :root { --avatar: url(https://i.imgur.com/M5EkBKv.jpg?1) !important;} /* BANNER CHARACTER (RIGHT PIC)*/ :root { --character: url(NONE) !important; } /* WALLPAPER */ body:before{ background-image: url(https://i.imgur.com/ZkEkR49.png); } /* LEFT CHARACTER BY LIST */ footer:before { background-image: url() !important; } /* RIGHT CHARACTER BY LIST */ footer:after { background-image: url() !important; } /*==============================* | Score Descriptors | * --- - --- - ---- - --- - --- */ .score-na::before { content: "Not yet scored"; } .score-1::before { content: "Irredeemable"; } .score-2::before { content: "Horrible"; } .score-3::before { content: "Bad"; } .score-4::before { content: "Subpar"; } .score-5::before { content: "Mediocre"; } .score-6::before { content: "Fine"; } .score-7::before { content: "Good"; } .score-8::before { content: "Very Good"; } .score-9::before { content: "Fantastic"; } .score-10::before { content: "Masterpiece"; } .score-label { position: relative; display: inline-block; z-index: 0; transition: color 0.2s ease; } .score-label:hover { color: #323232 !important; } .score-label::before { position: absolute; top: -4px; left: -120px; z-index: -1; width: 120px; display: block; padding: 4px 8px 4px calc(100% + 12px); background: #efffcc; font:FontAwesome; font-size: 11px; border-radius: 4px; opacity: 0; transition: opacity 0.2s ease; white-space: pre-wrap; text-align: left; pointer-events: none; } .score-label:hover::before { opacity: 1; } /* TABLE COLORS*/ :root { /* Generic Colours */ --pbg: rgba(224,245,241,0.6); --bg: rgba(224,245,241,0.6); } /* OTHER CODES*/ body:before { width: 100%; height: 100%; display: block; position: fixed; left: 0; top:0; content: ""; } #search-box:after,.open~#search-button{pointer-events:none}:root{--name:none;--avatar:none;--banner:url(https://i.imgur.com/VoPJz2S.jpg);--character:url(https://i.imgur.com/6IPyngH.png);--pbg:#efefef;--bg:#fff;--text:#323232;--text-h:#787878;--text-dim:#bababa;--text-dim-h:#646464;--text-dark:#111;--icon:#323232;--accent:#77b300;--btn-bg:#ebebeb;--btn-bg-h:#f7ffe6;--btn-head-bg-h:#86b300;--btn-text-h:#404040;--bg-dark:#ddd;--text-head:#264d73;--text-head-h:#005266;--watching:#2db039;--completed:#26448f;--onhold:#f9d457;--dropped:#a12f31;--plantowatch:#c3c3c3;--cover-bg:#323232;--edit-btn:#d9d9d9;--checkmark:#9696eb}#advanced-option Is there any way to get my old list back? Or do I need to start from scratch? Is this how it used to be? https://pastebin.com/raw/q8Rq1LKD Also try it after removing /* "Clarity" Modification by Valerio Lyndon / Hover Image / Revision 0.2 */ .data.image{overflow:visible}.data.image a:before{content:"";position:absolute;top:50%;left:-166px;z-index:50;width:150px;height:0;background:center/cover no-repeat var(--bg-dark);border-radius:8px;box-shadow:0 0 2px #000;opacity:0;pointer-events:none;transition:all .3s ease}.list-item:hover .data.image a:before{top:calc(50% - 100px);height:200px;opacity:1}.data.image a:after,.data.image img{border-radius:50%} .cover-block { z-index: 25; } .header { z-index: 30; } 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-position: left bottom; } /* Right Render */ footer:after { left: calc(100% - (50% - 538px)); background-position: right bottom; } Thank you that helped! The only issue I'm seeing is that the headers aren't formatted how they used to be? Do I just need to modify this code? It looks like they're there but they don't seem like actual headers Click this link and try these codes at the bottom, otherwise you need to add the mod from the opening post again (under popular/requested user changes). The rounded headers is probably what it was https://valeriolyndon.github.io/MAL-Public-List-Designs/Clarity%20Theme/Mod%20-%20Category%20Headers%20Round%20Compressed.css Thank you so much! this worked and I was able to modify the headers to match my previous format. The only other question I have left is regarding the opacity of my list. I forgot how to modify the opacity of the list boxes, I think I had it at 80 or 90% opacity beforehand but I completely forgot how to do it. I think the header boxes were at the same opacity level too. Thanks again you guys are life savers! Not sure how he does it here but it must be something like this /*------------------------------* | List colors (CLARITY LIGHT) | status menu container is the color of the header under the banner when there is transparency on your tables, and the last codes control the rows on hover and the glow around them. Make a new box shadow here https://html-css-js.com/css/generator/box-shadow/ Leave root alone, but you may want to adjust the color for data number's circle and status menu container (the header containing category links) *------------------------------*/ :root { --bg: rgba(255,255,255,.8) !important; } Thank you!! |
Jul 16, 2021 5:40 PM
#880
mistersunday said: Shishio-kun said: mistersunday said: Shishio-kun said: mistersunday said: Shishio-kun said: mistersunday said: This is what my current code looks like after deleting the tool's code: @import "https://fonts.googleapis.com/css?family=Oswald"; @import "https://malscraper.azurewebsites.net/covers/anime/mistersunday/presets/dataimagelinkbefore"; @import "https://malcat-gen.appspot.com/headers?user=mistersunday&list=anime"; @import "https://malcat-gen.appspot.com/headers?user=mistersunday&list=anime&template=[data-query*='status":7'] .list-item:nth-child($index) .data.status:before{content:"$content"}[data-query*='status":7'] .list-item:nth-child($index){margin-top: 100px;}"; [data-query*='status":7'] .list-item:nth-child($index) .data.status:before{content:"$content"}[data-query*='status":7'] .list-item:nth-child($index){margin-top: 82px;} /* Generated by MyAnimeList-Tools v4.0 https://github.com/ValerioLyndon/MyAnimeList-Tools Template={"template":".title .link[href^="/[TYPE]/[ID]/"]::after {content: "[TITLEENG]"; }","matchtemplate":"/[TYPE]/[ID]/","css":".data.title .link {ntfont-size: 0 !important;n}n.data.title .link::after {ntdisplay: inline-block;ntfont-size: 12px;n} .data.title .link:hover::after {nttext-decoration: underline;n}"} MatchTemplate=/[TYPE]/[ID]/ */ /*==============================* | Category-Coloured Header Bars | * --- - --- - ---- - --- - --- */ /* BANNER BACKGROUND To change background images: Delete what's in the parenthesis. Upload the new background to Imgur or a similar site, then copy the direct link (or Original GIF link if it's animated) and paste it into the parenthesis. Save. */ :root { --banner: url(https://i.imgur.com/FPQmkaL.png) !important;} /* BANNER TEXT*/ :root { --name: "" !Important; } /* BANNER AVATAR (BOTTOM LEFT PIC) */ :root { --avatar: url(https://i.imgur.com/M5EkBKv.jpg?1) !important;} /* BANNER CHARACTER (RIGHT PIC)*/ :root { --character: url(NONE) !important; } /* WALLPAPER */ body:before{ background-image: url(https://i.imgur.com/ZkEkR49.png); } /* LEFT CHARACTER BY LIST */ footer:before { background-image: url() !important; } /* RIGHT CHARACTER BY LIST */ footer:after { background-image: url() !important; } /*==============================* | Score Descriptors | * --- - --- - ---- - --- - --- */ .score-na::before { content: "Not yet scored"; } .score-1::before { content: "Irredeemable"; } .score-2::before { content: "Horrible"; } .score-3::before { content: "Bad"; } .score-4::before { content: "Subpar"; } .score-5::before { content: "Mediocre"; } .score-6::before { content: "Fine"; } .score-7::before { content: "Good"; } .score-8::before { content: "Very Good"; } .score-9::before { content: "Fantastic"; } .score-10::before { content: "Masterpiece"; } .score-label { position: relative; display: inline-block; z-index: 0; transition: color 0.2s ease; } .score-label:hover { color: #323232 !important; } .score-label::before { position: absolute; top: -4px; left: -120px; z-index: -1; width: 120px; display: block; padding: 4px 8px 4px calc(100% + 12px); background: #efffcc; font:FontAwesome; font-size: 11px; border-radius: 4px; opacity: 0; transition: opacity 0.2s ease; white-space: pre-wrap; text-align: left; pointer-events: none; } .score-label:hover::before { opacity: 1; } /* TABLE COLORS*/ :root { /* Generic Colours */ --pbg: rgba(224,245,241,0.6); --bg: rgba(224,245,241,0.6); } /* OTHER CODES*/ body:before { width: 100%; height: 100%; display: block; position: fixed; left: 0; top:0; content: ""; } #search-box:after,.open~#search-button{pointer-events:none}:root{--name:none;--avatar:none;--banner:url(https://i.imgur.com/VoPJz2S.jpg);--character:url(https://i.imgur.com/6IPyngH.png);--pbg:#efefef;--bg:#fff;--text:#323232;--text-h:#787878;--text-dim:#bababa;--text-dim-h:#646464;--text-dark:#111;--icon:#323232;--accent:#77b300;--btn-bg:#ebebeb;--btn-bg-h:#f7ffe6;--btn-head-bg-h:#86b300;--btn-text-h:#404040;--bg-dark:#ddd;--text-head:#264d73;--text-head-h:#005266;--watching:#2db039;--completed:#26448f;--onhold:#f9d457;--dropped:#a12f31;--plantowatch:#c3c3c3;--cover-bg:#323232;--edit-btn:#d9d9d9;--checkmark:#9696eb}#advanced-option Is there any way to get my old list back? Or do I need to start from scratch? Is this how it used to be? https://pastebin.com/raw/q8Rq1LKD Also try it after removing /* "Clarity" Modification by Valerio Lyndon / Hover Image / Revision 0.2 */ .data.image{overflow:visible}.data.image a:before{content:"";position:absolute;top:50%;left:-166px;z-index:50;width:150px;height:0;background:center/cover no-repeat var(--bg-dark);border-radius:8px;box-shadow:0 0 2px #000;opacity:0;pointer-events:none;transition:all .3s ease}.list-item:hover .data.image a:before{top:calc(50% - 100px);height:200px;opacity:1}.data.image a:after,.data.image img{border-radius:50%} .cover-block { z-index: 25; } .header { z-index: 30; } 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-position: left bottom; } /* Right Render */ footer:after { left: calc(100% - (50% - 538px)); background-position: right bottom; } Thank you that helped! The only issue I'm seeing is that the headers aren't formatted how they used to be? Do I just need to modify this code? It looks like they're there but they don't seem like actual headers Click this link and try these codes at the bottom, otherwise you need to add the mod from the opening post again (under popular/requested user changes). The rounded headers is probably what it was https://valeriolyndon.github.io/MAL-Public-List-Designs/Clarity%20Theme/Mod%20-%20Category%20Headers%20Round%20Compressed.css Thank you so much! this worked and I was able to modify the headers to match my previous format. The only other question I have left is regarding the opacity of my list. I forgot how to modify the opacity of the list boxes, I think I had it at 80 or 90% opacity beforehand but I completely forgot how to do it. I think the header boxes were at the same opacity level too. Thanks again you guys are life savers! Not sure how he does it here but it must be something like this /*------------------------------* | List colors (CLARITY LIGHT) | status menu container is the color of the header under the banner when there is transparency on your tables, and the last codes control the rows on hover and the glow around them. Make a new box shadow here https://html-css-js.com/css/generator/box-shadow/ Leave root alone, but you may want to adjust the color for data number's circle and status menu container (the header containing category links) *------------------------------*/ :root { --bg: rgba(255,255,255,.8) !important; } Thank you!! Awesome :D If you want to try the tool again, you should Dropbox the CSS and import it https://myanimelist.net/forum/?topicid=1499059#msg63378306 first link |
Jul 17, 2021 7:50 PM
#881
Thanks so much for helping them @Shishio-kun and sorry for the trouble @mistersunday I'm currently working on making the forum post clearer and perhaps add some precautions into the tool so that mistakes like this are harder to make. |
Jul 24, 2021 7:02 PM
#882
Moving this post here since its about Clarity Mark_016 said: i need suggestion, how to changes this (circled in red) into "quotes" like this Btw, Here's My Layout. Thanks before |
Jul 25, 2021 5:42 PM
#883
can i got a little help here? my code was really messed up, can you tidy up it? but don't change any customize i made (if something needs to be fixed, i will be glad with it :D) Awesome layout Btw.... @import "https://malscraper.azurewebsites.net/covers/anime/Mark_016/presets/dataimagelinkbefore"; @import "https://malscraper.azurewebsites.net/covers/manga/Mark_016/presets/dataimagelinkbefore"; @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-%20Hover%20Image%20Compressed.css"; @import "https://valeriolyndon.github.io/MAL-Public-List-Designs/Clarity%20Theme/Mod%20-%20Dark%20Mode%20Compressed.css"; /*-S-T-A-R-T--------------------* | Banner Titles | *------------------------------*/ /*-S-T-A-R-T--------------------* | Banner Background Image To change background images: delete what's in the parenthesis. Upload the new background to Imgur or a similar site, then copy the direct link (or Original GIF link if it's animated) and paste it into the parenthesis. Save. | *------------------------------*/ body { --banner: url(https://media.giphy.com/media/AFBVWzSgTttBe/giphy.gif); background-size: ; !important; } /*-S-T-A-R-T--------------------* | Banner Character (Render) Background size is the size of the image. 100% is full size. The first percentage after background position is the position from the left. Lower percentages move it left and you can go negative. The second percentage is position from the top. Lower percentages move it down. | *------------------------------*/ body { --character: url(https://i.imgur.com/vNXlT06.png); } #list-container #cover-image-container { background-size: 50%; background-position: 101% 98%; } /*-S-T-A-R-T--------------------* | Banner Avatar | *------------------------------*/ body {--avatar: url(https://media1.tenor.com/images/7d26181bbd4e5d94cfd1d5ea7f3e3020/tenor.gif?itemid=5555172); } /*-S-T-A-R-T--------------------* | Per-Category Background Image If you want a wallpaper on a category, you can add direct background images links to the parenthesis here for each category! By default, there is no wallpaper. | *------------------------------*/ body { --background: url(https://i.imgur.com/azxUH6V.jpeg); background-size: cover; !important; background-attachment: fixed; } /*SIDE RENDERS (left and right) To move the renders, adjust the percentage after "left" or "right" and "top". You can use negatives. The percentage is the distance from the left, top, or right. To resize the renders, adjust the percentage after "width". 0% will remove the render.*/ .status-menu-container.fixed ~ .list-block:before{ background-image: url(https://i.imgur.com/v3adNgo.png); background-position: left bottom; background-repeat: no-repeat; background-size: contain; content: ""; position: fixed; bottom: 0; margin: 0 auto !important; width: 100% !important; height: 90%; top: 15%; display: block; left: -3%; z-index: 0 !important; pointer-events: none; animation: RAYNARE 2s 1; } @keyframes RAYNARE { 0% { left: -55%; } 200% { left: -55%; } 100% { left: -3%; } } .status-menu-container.fixed ~ .list-block:after{ background-image: url(https://i.imgur.com/b0KDLMm.png); background-position: right bottom; background-repeat: no-repeat; background-size: contain; content: ""; position: fixed; bottom: 0; margin: 0 auto !important; width: 100% !important; height: 87%; display: block; right: -5%; z-index: -1 !important; pointer-events: none; animation: NEKO 2s 1; } @keyframes NEKO { 0% { right: -55%; } 200% { right: -55%; } 100% { right: -5%; } } /*------------------------------* | Character Renders R0.3 | *------------------------------*/ footer:before, footer:after { content: ""; position: fixed; top: 00; z-index: -1; width: calc(50% - 538px); min-width: 262px; height: 100%; background: transparent no-repeat center bottom / contain scroll; } /*------------------------------* | List colors | pbg is the color of the wallpaper when you have no image there bg is the color of the tables and rows text is the color of your anime titles and some text on your rows (numbers, score, information, tags) text-dim is other text on your rows (edit, more, non-links, Progress:, Rated:, etc) btn-bg is the button color around score and tags text-head is the category links unselected text-head-h is the current category link selected btn-head-bg-h is buttons under the header when selected btn-text-h is that button text banner-text is the banner text color, and its shadow color is under that Get a new HTML/Hex color number here, or use color names. https://htmlcolorcodes.com/ Get new RGBA colors here for the rows https://cssgenerator.org/rgba-and-hex-color-generator.html *------------------------------*/ :root { --pbg: #3b3b3b; --bg: rgba(0,0,0,0.9); --bg-dark: #444; --text: #31cbc9; --text-h: #e5792e; --text-dim: #6a3816; --text-dim-h: #31cbc9; --text-dark: white; --shadow: rgba(0,0,0,0,0.8); --icon: #06d1cd; --accent:#31cbc9; --banner-text: #f6f5ff; --banner-text-shadow: #e4bef4; --btn-bg: #262626; --btn-bg-h: rgba(0,0,0,0.7); --btn-head-bg-h: #31cbc9; --btn-text-h: #d36f29; --text-head: #cc6c2a; --text-head-h: #e5792e; --cover-bg: #464444; --edit-btn: #e5792e; --checkmark: #cc6c2a; --watching: #7CFC00; --completed: #0096FF; --onhold: #FFD700; --dropped: #FF0000; --plantowatch: #F0E68C; } /*------------------------------* | List colors | status menu container is the color of the header under the banner, and the last codes control the rows on hover and the glow around them. Make a new box shadow here https://html-css-js.com/css/generator/box-shadow/ *------------------------------*/ .list-table-data:hover{ background:#052c29; box-shadow: 1px 1px 20px 3px #12FFEC; } /*-S-T-A-R-T--------------------* | Change Banner Height | *------------------------------*/ /*Change number here*/ :root { --banner-height: 561px; } .cover-block { height: var(--banner-height); } .header { margin-top: calc(var(--banner-height) - 36px); } .list-stats { top: calc(var(--banner-height) + 98px); } /*------------------------E-N-D-*/ /*-S-T-A-R-T--------------------* | Header Outline R0.0 | *------------------------------*/ /* Change colour of border here. */ :root { --header-border: #8c5513 ; } .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} /*------------------------E-N-D-*/ /* CUSTOM CURSOR Get new custom cursors here, or search online for CUR files. https://www.cursors-4u.com/ The direct link for each cursor goes into the first parenthesis below. You can find the direct link in the parenthesis in the codes on each cursor page. If you want others to see the cursors, you should convert it to PNG and upload the PNG to Imgur, and paste the direct image link from Imgur to the second parenthesis (or both parenthesis if you don't want to use the CUR file anymore). Convert cursors to PNG here: https://convertio.co/cur-png/ Or right click the cursor on its page and save it as an image. You can use EZGif to crop out (remove) the empty space around a custom cursor PNG if something seems wrong with it on your list. Lower the size under 32px wide and high if its too large. Use the new cropped and/or resized version for your cursor PNG. https://ezgif.com/crop https://ezgif.com/resize Changing, making and fixing cursors is reviewed in more detail at the bottom of the post. https://myanimelist.net/forum/?topicid=1903808 */ body *, :not(*) { cursor: url(https://i.imgur.com/l5Cp4wF.png), auto !important; } /*MUSIC PLAYER*/ [data-query*='"status":2'] .link[href^="/anime/41380/"] ~ .add-edit-more .more a { display: block !important; background-color: transparent; background-size: contain; background-repeat: no-repeat; background-position: center; background-image: url(https://i.imgur.com/f7Z3zIH.png) !important; content: ""; display: block !important; position: fixed !important; color: transparent !important; height: 150px !important; width: 150px !important; right: 10px !important; top: 505px !important;; opacity: 1 !important; display: block !important; cursor: pointer !important; pointer-events: visible !important; } .list-table .more-info{ background-position: center center; background-repeat: no-repeat; background-size: contain; height: 300px !important; width: 400px !important; top: 50px !important; right: 35px !important; opacity: 1 !important; position: fixed; font-size: 0; z-index: 0; } /*-S-T-A-R-T--------------------* | Colored Tags text Remember to use the numbers for studios and licensors (see the URL of the company). Tags with spaces need %20 replacing each space. Get more color name and numbers: https://myanimelist.net/forum/?topicid=1909051 *------------------------------*/ .data.tags a[href*="awesome%20STORYLINE"] { color: #023020 !important; } .data.tags a[href*="awesome%20COMEDY"] { color: #f4ff00 !important; } .data.tags a[href*="confusing%20STORYLINE"] { color: #FF00FF !important; } .data.tags a[href*="thrilling%20HORROR"] { color: #C04000 !important; } .data.tags a[href*="for%20ADULT"] { color: #fb3030 !important; } .data.tags a[href*="unusual%20STORYLINE"] { color: #1F51FF !important; } /*==============================* | Category-Coloured Titles | * --- - --- - ---- - --- - --- */ .data.title .link:hover { text-decoration: underline; } .list-item .data.watching ~ .title .link, .list-item .data.reading ~ .title .link { /* Watching */ color: #7CFC00 !important; } .list-item .data.completed ~ .title .link { /* Completed */ color: #0096FF !important; } .list-item .data.onhold ~ .title .link { /* On Hold */ color: #FFD700; !important; } .list-item .data.dropped ~ .title .link { /* Dropped */ color: #FF0000; !important; } .list-item .data.plantowatch ~ .title .link, .list-item .data.plantoread ~ .title .link { /* Planned */ color: #F0E68C !important; } /* LAYERED FALLING SNOW */ .list-unit:before { position: fixed; left: 0; top: 0; content: ''; width: 100%; height: 100%; background-image: url(https://i.imgur.com/uVN2Nk8.png); animation: SNOW 22s linear infinite; z-index: 0; pointer-events: none !important; } .list-unit:after { position: fixed; left: 0; top: 0; content: ''; width: 100%; height: 100%; background-image: url(https://i.imgur.com/3d7VHiA.png), url(https://i.imgur.com/s0pY1pb.png); animation: SNOW 20s linear infinite; z-index: -10; pointer-events: none !important; } @keyframes SNOW { 0% { background-position: 0 0, 0 0, 0 0; } 100% { background-position: 500px 1000px, 400px 400px, 300px 300px; } } /*MUSIC PLAYER*/ [data-query*='"status":2'] .link[href^="/anime/38735/"] ~ .add-edit-more .more a { display: block !important; background-color: transparent; background-size: contain; background-repeat: no-repeat; background-position: center center; background-image: url(https://i.imgur.com/96aXZ9n.png) !important; content: ""; display: block !important; position: fixed !important; color: transparent !important; height: 150px !important; width: 150px !important; left: 10px !important; top: 505px !important;; opacity: 1 !important; display: block !important; cursor: pointer !important; pointer-events: visible !important; } .list-table .more-info{ background-position: center center; background-size: contain; height: 300px !important; width: 400px !important; top: 50px !important; right: 35px !important; opacity: 1 !important; position: fixed; font-size: 0; z-index: 0; } *-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--------------------* | Change Status Bar Width | *------------------------------*/ .data.status { width: 3px !important; } .list-table-data { padding-left: 0px; } /*-S-T-A-R-T--------------------* | Tag Desc Basis Vertical 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;transition:all .15s ease;pointer-events:none;opacity:0}.data.tags span a:not([href*="=Favo"]):after{top:50%;left:-215px;width:200px;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:translateY(-50%)}.data.tags span a:not([href*="=Favo"]):before{content:"";top:calc(56% - 5px);left:123px;border-width:5px;border-style:solid;border-color:transparent transparent transparent var(--text-dim)}.data.tags span a:hover::before{right:90px;opacity:1}.data.tags span a:not([href*="=Favo"]):hover:after{left: 130px;opacity:1} /*------------------------E-N-D-*/ /*Tags-Description*/ .data.tags a[href*="=awesome%20STORYLINE"]:after { content: "RECOMMENDED, based on my perspective, just Try it!" } .data.tags a[href*="awesome%20COMEDY"]:after { content: "Best COMEDY for me, cure your bad mood" } .data.tags a[href*="confusing%20STORYLINE"]:after { content: "need more FOCUS to understand the whole story, forget it if you TOO LAZY to think" } .data.tags a[href*="thrilling%20HORROR"]:after { content: "mixture THRILLER & HORROR, watch out for heart attack :D" } .data.tags a[href*="for%20ADULT"]:after { content: "make sure you're 18+ for watch!!, lots of NUTIDY scenes here" } .data.tags a[href*="unusual%20STORYLINE"]:after { content: "Have a UNIQUE story, which you can't find in most animes" } /*Header-Main-Menu*/ .status-menu-container { background-image: url(https://media.giphy.com/media/U3qYN8S0j3bpK/giphy.gif); background-position:center bottom; background-position:top; --bg:transparent } /*Studios-Tags-favorited-(Non-HOVER)*/ .data.studio {--text:white;} .data.studio span a[href$="/2"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/132"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/56"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/456"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/11"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/7"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/10"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/14"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/911"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/300"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/247"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/569"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/4"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1258"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/37"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } ..data.studio span a[href$="/21"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/858"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/112"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/51"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/290"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1129"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/291"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/44"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/73"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/95"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/314"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/839"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/120"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/21"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/309"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/27"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/18"] { background-image:url(https://i.imgur.com/1SCQXa1.gif); background-size:cover; background-position:center; } /*Studios-Tags-Unfavorited-(Non-HOVER)*/ .data.studio span a[href$="/1978"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/3"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1997"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1119"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="200"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1436"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/122"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1692"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/555"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1237"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1381"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1109"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1536"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="436"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/852"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/32"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/957"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1379"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1325"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1835"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/455"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/38"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/30"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/565"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1393"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/441"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1864"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/2257"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/418"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/333"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1567"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1169"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1103"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1440"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/179"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1299"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/439"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1195"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/103"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/8"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/605"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/41"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/5"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/176"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/86"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/39"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/91"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/6"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1471"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/110"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/48"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1893"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/271"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/287"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/397"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/541"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1591"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/163"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1794"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1669"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1244"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/70"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/334"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/381"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/443"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/2037"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/951"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/81"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/83"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/563"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/318"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/196"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } .data.studio span a[href$="/1705"] { background-image:url(https://i.imgur.com/niGK1co.gif); background-size:cover; background-position:center; } /*Studios-Tags-favorited-(HOVER)*/ .data.studio span a[href$="/56"]:hover { background-image:url(https://media.giphy.com/media/Cbk7ALR9wLrXy/giphy.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/112"]:hover { background-image:url(https://media.tenor.com/images/2c46e1d0bdcd97290fdab7f0615a707e/tenor.gif); background-size:115px; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/51"]:hover { background-image:url(https://media.giphy.com/media/Ph8gm8bhJCEgmO4n7z/giphy.gif); background-size:115px; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/247"]:hover { background-image:url(https://media.giphy.com/media/MWqc0k2qiD1As/giphy.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/2"]:hover { background-image:url(https://media1.tenor.com/images/db6344b6212e7da1cac31c8a6a0d2570/tenor.gif?itemid=15969316); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/314"]:hover { background-image:url(https://media.giphy.com/media/mHDgjwPbOAuli/giphy.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/1"]:hover { background-image:url(https://media.giphy.com/media/8llqLA71fETwk/giphy.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/132"]:hover { background-image:url(https://media.tenor.com/images/b39b291b31376bc30bbf9f6917b437a3/tenor.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/11"]:hover { background-image:url(https://media.giphy.com/media/B0X3prYNJnPWxGwtfK/giphy.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/10"]:hover { background-image:url(https://media.giphy.com/media/3ohzdLD2vN09ZavdqU/giphy.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/7"]:hover { background-image:url(https://media.tenor.com/images/74edc6d78de9c5e0205fea8fe35065e6/tenor.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/456"]:hover { background-image:url(https://media.giphy.com/media/kI98S4jRaHUQw/giphy.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/290"]:hover { background-image:url(https://media.giphy.com/media/3ygMHiJKa1GVzYodCv/giphy.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/1129"]:hover { background-image:url(https://media.giphy.com/media/eGPWzBs328fw4/giphy.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/14"]:hover { background-image:url(https://media.giphy.com/media/12p5byldHRgyu4/giphy.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/291"]:hover { background-image:url(https://media.giphy.com/media/xUNd9EWrXirpF1pqfe/giphy.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/911"]:hover { background-image:url(https://media.giphy.com/media/CH5kR6tCHDKq4/giphy.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/300"]:hover { background-image:url(https://i.imgur.com/aXraeFm.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/569"]:hover { background-image:url(https://media.giphy.com/media/vRc2V5ixLGh0OU02zp/giphy.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/44"]:hover { background-image:url(https://media.giphy.com/media/RCWahfIC5IPew/giphy.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/73"]:hover { background-image:url(https://media.giphy.com/media/lITcaDWgInpra/giphy.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/4"]:hover { background-image:url(https://media.giphy.com/media/d7xeroaNIt2wwg3yHY/giphy.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/95"]:hover { background-image:url(https://media.giphy.com/media/12j4gjABYtRSKs/giphy.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/1258"]:hover { background-image:url(https://media.tenor.com/images/435bdea895ccb1d705f5107522ae29fd/tenor.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/839"]:hover { background-image:url(https://media.tenor.com/images/ff7ac05037a4affc20112726d8ec0e48/tenor.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/120"]:hover { background-image:url(https://media1.tenor.com/images/0a57656a109391e73e38d73da7642d99/tenor.gif?itemid=18401317); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/37"]:hover { background-image:url(https://i.imgur.com/Th3xrEt.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/21"]:hover { background-image:url(https://media1.tenor.com/images/ea2fc2cde388d5fcf756989c96c17546/tenor.gif?itemid=9430697); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/309"]:hover { background-image:url(https://media.giphy.com/media/70bpzZkiPcMda/giphy.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/858"]:hover { background-image:url(https://media.giphy.com/media/13KpVQwLxCUo5G/giphy.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.studio span a[href$="/18"]:hover { background-image:url(https://media.giphy.com/media/SJXzadwbexJEAZ9S1B/giphy.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } /*Studios-Tags-Unfavorited-(HOVER)*/ .data.studio:hover {--btn-bg-h: #24abab; --btn-text-h: #ea6508; } /*Custom-Tags-Hover*/ .data.tags span a[href*="awesome%20STORYLINE"]:hover { background-image:url(https://media.giphy.com/media/ErZ8hv5eO92JW/giphy.gif); background-size: 125px; background-position: center; --btn-text-h: transparent; } .data.tags span a[href*="awesome%20STORYLINE"] { background-image:url(https://media.giphy.com/media/3o7bu1f39ek15lX6MM/giphy.gif); background-size:390px; background-position:center; } /*==============================* | Score Hover | * --- - --- - ---- - --- - --- */ /* Internals */ .score-label { position: relative; display: inline-block; z-index: 0; transition: color 0.2s ease; } .score-label:hover { color: #e5792e !important; } .score-label::before { position: absolute; top: -4px; left: -12px; z-index: -1; display: block; padding: 4px 8px 4px calc(100% + 12px); background: #111; border-radius: 4px; opacity: 0; transition: opacity 0.2s ease; white-space: pre; text-align: left; pointer-events: none; } .score-label:hover:before { opacity: 1; } /* Avatar-Position */ .status-menu:after { background-size: 305px; border-color: rgba(49,203,201,0.5); background-position: center; top: -37px; left: 9px; width: 130px; height: 130px; border-radius: 15%; } /* Arrow-On-Anime-Preview*/ .data.image a:after { background: rgba(0,0,0,.4); color: var(--); } /* Reset some things */ .data.score a { background: none; } /* Add new styling */ .score-label { display: block; width: 26px; height: 26px; background: var(--btn-bg); border-radius: 13px; transition: all 0.3s ease; } /* Score-specific styling */ .score-na { color: #e5792e; } .score-1 { color: #66CC33; } .score-2 { color: #66FF33; } .score-3 { color: #00FF33; } .score-4 { color: #1565c0; } .score-5 { color: #1e88e5; } .score-6 { color: #42a5f5 ; } .score-7 { color: #CC0000 ; } .score-8 { color: #FF0000 ; } .score-9 { color: #7FFFD4 ; } .score-10 { color: #00FFFF; } /* Numbers-of-Animelist */ .data.number { /* background */ background-position: fixed; right: -3px; top: -37px; --bg: rgba(229,121,46,0.50); --text: #31cbc9; } } /*Licensor-Tags-(put-on-very-bottom)*/ .data.licensor {--text: white;} .data.licensor:hover {--btn-bg-h: #24abab; --btn-text-h: #ea6508; } .data.licensor span a[href$="/102"] { background-image:url(https://media.giphy.com/media/l0HlCK6wMzcs1mUw0/giphy.gif); background-size: 150px; background-position: center 34%; --text: transparent; } .data.licensor span a[href$="/102"]:hover { background-image:url(https://media.giphy.com/media/SgMZCcCv8Thm0/giphy.gif); background-size:cover; background-position:center; --btn-text-h: transparent; } .data.licensor span a[href$="/376"] { background-image:url(https://i2.wp.com/operationrainfall.com/wp-content/uploads/2016/06/Sentai-Filmworks-Feature.jpg?w=640); background-size: 85%; background-position:center 39px; --text: transparent; } .data.licensor span a[href$="/1977"] { background-image:url(https://i.imgur.com/7O5kEmH.gif); background-size:cover; background-position:center 48%; --text: transparent; } .data.licensor span a[href$="/417"] { background-image:url(https://media.giphy.com/media/up8aqnv3GOVd6/giphy.gif); background-size: 100px; background-position: 50% 64%; --text: transparent; } .data.licensor span a[href$="/1468"] { background-image:url(https://media.giphy.com/media/l0HlCK6wMzcs1mUw0/giphy.gif); background-size: 150px; background-position: center 66%; --text: transparent; } .data.licensor span a[href$="/493"] { background-image:url(https://64.media.tumblr.com/tumblr_lytj5tZ8B11qlmfwuo1_500.gif); background-size:145px; background-position:center 49%; --text: transparent; } /*------------------------------* | PREVIEW IMAGE BORDER | *------------------------------*/ /*Border*/ .data.image a::before { border: 3px solid var(--item-category); box-sizing: border-box; } /*------------------------------* | PREVIEW IMG BORDER COLOR | *------------------------------*/ .watching ~ .data, .reading ~ .data { --item-category: var(--watching); --item-category-contrast: #fff; } .completed ~ .data { --item-category: var(--completed); --item-category-contrast: #fff; } .onhold ~ .data { --item-category: var(--onhold); --item-category-contrast: #fff; } .dropped ~ .data { --item-category: var(--dropped); --item-category-contrast: #fff; } .plantowatch ~ .data, .plantoread ~ .data { --item-category: var(--plantowatch); --item-category-contrast: #fff; } .list-table-data { padding-top: 11px; } /* Search Bar */ #status-menu .search-container { /* background */ --btn-bg: #242424; /* border */ --bg-dark: #ea6508; /* icon */ --text-head: #31cbc9;} /* ================== RESTYLE SCROLLBARS */ /* Firefox */ * { scrollbar-color: var(--text) var(--bg); } *::-webkit-scrollbar-button:vertical { background: transparent center / 10px auto no-repeat; } *::-webkit-scrollbar-button:vertical:start { background-image: url(https://i.imgur.com/Cu2u9Hu.png); } *::-webkit-scrollbar-button:vertical:end { background-image: url(https://i.imgur.com/0YI7VxA.png); } *::-webkit-scrollbar-button:horizontal { background: transparent center / auto 10px no-repeat; } *::-webkit-scrollbar-button:horizontal:start { background-image: url(https://i.imgur.com/BArw1oI.png); } *::-webkit-scrollbar-button:horizontal:end { background-image: url(https://i.imgur.com/vqOtoms.png); } *::-webkit-scrollbar-corner { background: var(--bg); } *::-webkit-scrollbar-thumb { background: var(--text) content-box; border: 0 solid transparent; } *::-webkit-scrollbar-thumb:vertical { border-width: 0 2px; } *::-webkit-scrollbar-thumb:horizontal { border-width: 2px 0; } *::-webkit-scrollbar-thumb:hover { background-color: var(--text-dim); } *::-webkit-scrollbar-track { width: 5px; } /*Status-Menu-Border-Edited*/ .status-menu-container:before{height:60px;border-width:5px 0; border-style:solid;border} /* Titles on Hover */ .list-table .list-table-data .title .link:hover { color: var(--text-head) !important } /* ====================== Reposition Content Status Reposition Add-Edit-More Add Title Overflow */ .data.title { padding: 3px 8px !important; height: auto; } .data.title::after { content: none; } .data.title > * { margin-right: 3px; } .data.title .link.sort { position: static; display: inline; padding-right: 0; white-space: normal; } .list-table .list-table-data .data.title .add-edit-more { position: absolute; right: -118px; top: calc(50% + 19.5px - 7.5px); width: 92px; height: 15px; margin: 0; order: 2; text-align: center; } .data.progress { padding-bottom: 19.5px !important; } /* ================================ Revert Type to Original Location */ .data.type { position: static; width: 72px; padding: 0 !important; margin-right: 3px; order: 16; text-align: center !important; } /* ================ Round List Items */ .list-item { /* Change rounding amount here */ --rounding: 20px; border-radius: var(--rounding); } .data.status { width: 71px !important; background: none !important; border-left: 3px solid var(--bg) !important; border-radius: var(--rounding); } .data.status.watching, .data.status.reading { border-color: var(--watching) !important; } .data.status.completed { border-color: var(--completed) !important; } .data.status.onhold { border-color: var(--onhold) !important; } .data.status.dropped { border-color: var(--dropped) !important; } .data.status.plantowatch, .data.status.plantoread { border-color: var(--plantowatch) !important; } /* ============================ Add-Edit-More re-insert dash */ .list-table .list-table-data .data.title .add-edit-more { color: var(--category-colour); font-size: 10px; } .list-table .list-table-data .title .add-edit-more a { margin-left: 0; } /* Special effect [ Airing ] */ .content-status, .rereading, .rewatching { text-shadow: 0 0 2px #31cbc9, 0 0 1px #31cbc9, 1px 1px 7px #31cbc9, 0 0 0 #31cbc9 !important; color: #fff !important; } |
Mark_016Jul 25, 2021 5:56 PM
Jul 25, 2021 7:51 PM
#884
hrxshi said: is there a way to automatically highlight my top rated anime/manga? for example all my 9-10 rated entries are automatically highlighted in some manner Here's some code you could use. Add to the bottom of your CSS. As it is now, it will add some coloured shadows around each entry. But if you want to change the colours or the styling for each score, you can do that by modifying the first part of the code where all the ".score-#" and "box-shadow" codes are. You could use a border instead for cleaner lines or modify the shadows to your liking. /*-S-T-A-R-T--------------------*\ | Highlight Items by Score | \*------------------------------*/ /* Per-score styling */ .score-na::after { box-shadow: 0 0 2px 1px gray ; } .score-1::after { box-shadow: 0 0 2px 1px #000 ; } .score-2::after { box-shadow: 0 0 2px 1px hsl(355, 80%, 20%) ; } .score-3::after { box-shadow: 0 0 2px 1px hsl(350, 60%, 30%) ; } .score-4::after { box-shadow: 0 0 2px 1px hsl(345, 40%, 40%) ; } .score-5::after { box-shadow: 0 0 2px 1px hsl(330, 10%, 50%) ; } .score-6::after { box-shadow: 0 0 2px 1px hsl(315, 10%, 60%) ; } .score-7::after { box-shadow: 0 0 2px 1px hsl(300, 20%, 70%) ; } .score-8::after { box-shadow: 0 0 2px 1px hsl(280, 40%, 77%) ; } .score-9::after { box-shadow: 0 0 2px 1px hsl(265, 70%, 84%) ; } .score-10::after { box-shadow: 0 0 2px 1px goldenrod ; } /* Styling for all score boxes */ .list-table-data { z-index: 1 ; } .data.score { position: static ; } .data.score select { position: static ; margin-left: -14px ; } .score-label::after { content: "" ; position: absolute ; top: 0 ; left: 0 ; z-index: -1 ; width: 100% ; height: 100% ; } .data.score a:not([style="display: none ;"]) + select { display: none ; } Box shadow and border CSS reference: https://www.w3schools.com/cssref/css3_pr_box-shadow.asp https://www.w3schools.com/css/css_border_shorthand.asp |
Jul 25, 2021 8:56 PM
#885
I already asked a solution for this but I'm just gonna rephrase it cuz the previous post didn't seem to make sense I think. SO, what I want to know is, is there a way to target the score of a specific anime. For example, not .score-10 cuz it would target all the entries with a score of 10 but rather a way I can target the score of a SPECIFIC entry in my list. So, if this is possible then please help me with it, I'm hopeless so this man here needs help. |
StoryGraph x Spotify x Instagram “Whether we die or not isn't really that big a deal." — Suzuya Juuzou |
Jul 25, 2021 11:24 PM
#886
Valerio_Lyndon said: thanks so much, exactly what i was looking forhrxshi said: is there a way to automatically highlight my top rated anime/manga? for example all my 9-10 rated entries are automatically highlighted in some manner Here's some code you could use. Add to the bottom of your CSS. As it is now, it will add some coloured shadows around each entry. But if you want to change the colours or the styling for each score, you can do that by modifying the first part of the code where all the ".score-#" and "box-shadow" codes are. You could use a border instead for cleaner lines or modify the shadows to your liking. /*-S-T-A-R-T--------------------*\ | Highlight Items by Score | \*------------------------------*/ /* Per-score styling */ .score-na::after { box-shadow: 0 0 2px 1px gray ; } .score-1::after { box-shadow: 0 0 2px 1px #000 ; } .score-2::after { box-shadow: 0 0 2px 1px hsl(355, 80%, 20%) ; } .score-3::after { box-shadow: 0 0 2px 1px hsl(350, 60%, 30%) ; } .score-4::after { box-shadow: 0 0 2px 1px hsl(345, 40%, 40%) ; } .score-5::after { box-shadow: 0 0 2px 1px hsl(330, 10%, 50%) ; } .score-6::after { box-shadow: 0 0 2px 1px hsl(315, 10%, 60%) ; } .score-7::after { box-shadow: 0 0 2px 1px hsl(300, 20%, 70%) ; } .score-8::after { box-shadow: 0 0 2px 1px hsl(280, 40%, 77%) ; } .score-9::after { box-shadow: 0 0 2px 1px hsl(265, 70%, 84%) ; } .score-10::after { box-shadow: 0 0 2px 1px goldenrod ; } /* Styling for all score boxes */ .list-table-data { z-index: 1 ; } .data.score { position: static ; } .data.score select { position: static ; margin-left: -14px ; } .score-label::after { content: "" ; position: absolute ; top: 0 ; left: 0 ; z-index: -1 ; width: 100% ; height: 100% ; } .data.score a:not([style="display: none ;"]) + select { display: none ; } Box shadow and border CSS reference: https://www.w3schools.com/cssref/css3_pr_box-shadow.asp https://www.w3schools.com/css/css_border_shorthand.asp |
Jul 26, 2021 12:17 AM
#887
Valerio_Lyndon said: hrxshi said: is there a way to automatically highlight my top rated anime/manga? for example all my 9-10 rated entries are automatically highlighted in some manner Here's some code you could use. Add to the bottom of your CSS. As it is now, it will add some coloured shadows around each entry. But if you want to change the colours or the styling for each score, you can do that by modifying the first part of the code where all the ".score-#" and "box-shadow" codes are. You could use a border instead for cleaner lines or modify the shadows to your liking. /*-S-T-A-R-T--------------------*\ | Highlight Items by Score | \*------------------------------*/ /* Per-score styling */ .score-na::after { box-shadow: 0 0 2px 1px gray ; } .score-1::after { box-shadow: 0 0 2px 1px #000 ; } .score-2::after { box-shadow: 0 0 2px 1px hsl(355, 80%, 20%) ; } .score-3::after { box-shadow: 0 0 2px 1px hsl(350, 60%, 30%) ; } .score-4::after { box-shadow: 0 0 2px 1px hsl(345, 40%, 40%) ; } .score-5::after { box-shadow: 0 0 2px 1px hsl(330, 10%, 50%) ; } .score-6::after { box-shadow: 0 0 2px 1px hsl(315, 10%, 60%) ; } .score-7::after { box-shadow: 0 0 2px 1px hsl(300, 20%, 70%) ; } .score-8::after { box-shadow: 0 0 2px 1px hsl(280, 40%, 77%) ; } .score-9::after { box-shadow: 0 0 2px 1px hsl(265, 70%, 84%) ; } .score-10::after { box-shadow: 0 0 2px 1px goldenrod ; } /* Styling for all score boxes */ .list-table-data { z-index: 1 ; } .data.score { position: static ; } .data.score select { position: static ; margin-left: -14px ; } .score-label::after { content: "" ; position: absolute ; top: 0 ; left: 0 ; z-index: -1 ; width: 100% ; height: 100% ; } .data.score a:not([style="display: none ;"]) + select { display: none ; } Box shadow and border CSS reference: https://www.w3schools.com/cssref/css3_pr_box-shadow.asp https://www.w3schools.com/css/css_border_shorthand.asp It broke in my list for some reason. Can you tell me the fix?? [ IMAGE ] |
StoryGraph x Spotify x Instagram “Whether we die or not isn't really that big a deal." — Suzuya Juuzou |
Jul 28, 2021 1:19 AM
#888
LEGENDS_OF_ANIME said: Valerio_Lyndon said: hrxshi said: is there a way to automatically highlight my top rated anime/manga? for example all my 9-10 rated entries are automatically highlighted in some manner Here's some code you could use. Add to the bottom of your CSS. As it is now, it will add some coloured shadows around each entry. But if you want to change the colours or the styling for each score, you can do that by modifying the first part of the code where all the ".score-#" and "box-shadow" codes are. You could use a border instead for cleaner lines or modify the shadows to your liking. /*-S-T-A-R-T--------------------*\ | Highlight Items by Score | \*------------------------------*/ /* Per-score styling */ .score-na::after { box-shadow: 0 0 2px 1px gray ; } .score-1::after { box-shadow: 0 0 2px 1px #000 ; } .score-2::after { box-shadow: 0 0 2px 1px hsl(355, 80%, 20%) ; } .score-3::after { box-shadow: 0 0 2px 1px hsl(350, 60%, 30%) ; } .score-4::after { box-shadow: 0 0 2px 1px hsl(345, 40%, 40%) ; } .score-5::after { box-shadow: 0 0 2px 1px hsl(330, 10%, 50%) ; } .score-6::after { box-shadow: 0 0 2px 1px hsl(315, 10%, 60%) ; } .score-7::after { box-shadow: 0 0 2px 1px hsl(300, 20%, 70%) ; } .score-8::after { box-shadow: 0 0 2px 1px hsl(280, 40%, 77%) ; } .score-9::after { box-shadow: 0 0 2px 1px hsl(265, 70%, 84%) ; } .score-10::after { box-shadow: 0 0 2px 1px goldenrod ; } /* Styling for all score boxes */ .list-table-data { z-index: 1 ; } .data.score { position: static ; } .data.score select { position: static ; margin-left: -14px ; } .score-label::after { content: "" ; position: absolute ; top: 0 ; left: 0 ; z-index: -1 ; width: 100% ; height: 100% ; } .data.score a:not([style="display: none ;"]) + select { display: none ; } Box shadow and border CSS reference: https://www.w3schools.com/cssref/css3_pr_box-shadow.asp https://www.w3schools.com/css/css_border_shorthand.asp It broke in my list for some reason. Can you tell me the fix?? [ IMAGE ] Ah, it doesn't play nicely with the score descriptors you have. You'll need to change the score descriptors mod code. Unfortunately this does mean some minor style tweaks, primarily the overlayed scores not being as perfectly aligned like before. Replace the old codes as shown in the spoiler below with the new codes. /* Internals */ .score-label { position: relative; display: inline-block; z-index: 0; transition: color 0.3s ease; } .score-label:hover { color: #fff !important; } .score-label::before { position: absolute; top: -4px; left: -10px; z-index: -1; display: block; padding: 4px 8px 4px calc(100% + 12px); background: #111; border-radius: 4px; opacity: 0; transition: opacity 0.3s ease; white-space: pre; text-align: left; pointer-events: none; } .score-label:hover::before { opacity: 1; } /* Internals */ .score-label { display: inline-block; transition: color 0.3s ease; } .score-label:hover { color: #fff !important; } .score-label::before { position: absolute; z-index: 1; padding: 4px 8px; background: #111; border-radius: 4px; opacity: 0; transition: opacity 0.3s ease; white-space: pre; text-align: left; pointer-events: none; margin-top: -4px; margin-left: -10px; } /* Fix for use with score-based row outlines */ .score-label::after { pointer-events: none; } .score a:hover .score-label::before { opacity: 1; } /*------------------------------*\ | SCORE DESCRIPTION POPUP | \*------------------------------*/ .score-na::before { content: "NOT DECIDED"; } .score-1::before { content: "UNREDEEMABLE"; } .score-2::before { content: "HORRIBLE"; } .score-3::before { content: "AWFUL"; } .score-4::before { content: "BAD"; } .score-5::before { content: "AVARAGE"; } .score-6::before { content: "FINE"; } .score-7::before { content: "GOOD"; } .score-8::before { content: "GREAT"; } .score-9::before { content: "AMAZING"; } .score-10::before { content: "MASTERPIECE"; } /*------------------------------*\ | SCORE DESCRIPTION POPUP | \*------------------------------*/ .score-na::before { content: "- NOT DECIDED"; } .score-1::before { content: "1 UNREDEEMABLE"; } .score-2::before { content: "2 HORRIBLE"; } .score-3::before { content: "3 AWFUL"; } .score-4::before { content: "4 BAD"; } .score-5::before { content: "5 AVERAGE"; } .score-6::before { content: "6 FINE"; } .score-7::before { content: "7 GOOD"; } .score-8::before { content: "8 GREAT"; } .score-9::before { content: "9 AMAZING"; } .score-10::before { content: "10 MASTERPIECE"; } LEGENDS_OF_ANIME said: SO, what I want to know is, is there a way to target the score of a specific anime. For example, not .score-10 cuz it would target all the entries with a score of 10 but rather a way I can target the score of a SPECIFIC entry in my list. So, if this is possible then please help me with it, I'm hopeless so this man here needs help. This requires adding a tag to the desired entries and then repositioning that tag via CSS. The code will vary depending on the list, but for your list you could add something like this: .data.tags a[href*="=.5"] { position: absolute; bottom: calc(50% - 2px); left: 576px; width: 16px; height: 16px; padding: 0 !important; font-size: 10px !important; line-height: 16px; border-radius: 0 50% 50% 0; pointer-events: none; } With this code, any ".5" tag you add will be repositioned over the score like this image here: This code can also be used for ".1", ".3", etcetera. Keep in mind that any time something about your list changes, you will have to modify the "left" value of these tags so that they are positioned correctly once again. It may not be how you were imagining, but the styling options are limited since we're positioning one element (the ".5" tag) over top of the scores, which vary in width (10 is wider than 8, for instance). You could potentially try other styling such as widening the score box to make room for the .5, but as I say the choices are limited. .data.score { width: 36px; } .data.score a { width: 23px; padding-right: 13px; text-align: right; } .data.tags a[href*="=.5"] { position: absolute; bottom: calc(50% - 2px); left: 567px; height: 16px; padding: 0 !important; background: none; font-size: 10px !important; line-height: 16px; pointer-events: none; } |
Jul 28, 2021 1:50 AM
#889
Mark_016 said: i need suggestion, how to changes this (circled in red) into "quotes" like this Btw, Here's My Layout. Thanks before The text can be modified by changing its various "properties" that make up its styling. For example, this code resets much of the name styling to be more friendly for quotes. Use one of the spoiler codes, not both. One controls the styling for all category pages at once, the other has different styling for each page. [Image] #cover-image-container::after { /* reposition and resize the quote */ top: 40%; left: calc(50% - 500px); width: 400px; /* change the text display */ font-size: 20px; line-height: 1.5; letter-spacing: 1px; /* reset some default values */ margin: 0; transform: none; text-transform: none; white-space: wrap; } /* All Anime */ [data-query*='status":7'] #cover-image-container::after { /* reposition and resize the quote */ top: 40%; left: calc(50% - 500px); width: 400px; /* change the text display */ font-size: 20px; line-height: 1.5; letter-spacing: 1px; /* reset some default values */ margin: 0; transform: none; text-transform: none; white-space: wrap; } /* Watching */ [data-query*='status":1'] #cover-image-container::after { /* reposition and resize the quote */ top: 40%; left: calc(50% - 500px); width: 400px; /* change the text display */ font-size: 20px; line-height: 1.5; letter-spacing: 1px; /* reset some default values */ margin: 0; transform: none; text-transform: none; white-space: wrap; } /* Completed */ [data-query*='status":2'] #cover-image-container::after { /* reposition and resize the quote */ top: 40%; left: calc(50% - 500px); width: 400px; /* change the text display */ font-size: 20px; line-height: 1.5; letter-spacing: 1px; /* reset some default values */ margin: 0; transform: none; text-transform: none; white-space: wrap; } /* On Hold */ [data-query*='status":3'] #cover-image-container::after { /* reposition and resize the quote */ top: 40%; left: calc(50% - 500px); width: 400px; /* change the text display */ font-size: 20px; line-height: 1.5; letter-spacing: 1px; /* reset some default values */ margin: 0; transform: none; text-transform: none; white-space: wrap; } /* Dropped */ [data-query*='status":4'] #cover-image-container::after { /* reposition and resize the quote */ top: 40%; left: calc(50% - 500px); width: 400px; /* change the text display */ font-size: 20px; line-height: 1.5; letter-spacing: 1px; /* reset some default values */ margin: 0; transform: none; text-transform: none; white-space: wrap; } /* Planned */ [data-query*='status":6'] #cover-image-container::after { /* reposition and resize the quote */ top: 40%; left: calc(50% - 500px); width: 400px; /* change the text display */ font-size: 20px; line-height: 1.5; letter-spacing: 1px; /* reset some default values */ margin: 0; transform: none; text-transform: none; white-space: wrap; } For the quote text itself, you'll just have to make sure you input it correctly. CSS doesn't allow line breaks or un-escaped double quotes. This is because these would break the CSS formatting. So line breaks become: \a (with a space after) And double quotes become: \" Here's an example: body { --name: "\"This is a quote.\a And this is a new line within that quote.\"\a - Valerio"; } And if you need it, here's a per-category name control (in this case, it would control all the quotes). body[data-query*='status":7'] { --name: "All Anime"; } body[data-query*='status":1'] { --name: "Watching/Reading"; } body[data-query*='status":2'] { --name: "Completed"; } body[data-query*='status":3'] { --name: "On Hold"; } body[data-query*='status":4'] { --name: "Dropped"; } body[data-query*='status":6'] { --name: "Planned"; } Mark_016 said: can i got a little help here? my code was really messed up, can you tidy up it? but don't change any customize i made (if something needs to be fixed, i will be glad with it :D) Awesome layout Btw.... So you just want the code to be more readable? This is usually best done yourself, so that you know where each part is for when you may need to modify it later. As long as you back up the code before you start, and preview each change as you go, it's perfectly okay to start modifying things yourself. The formatting of CSS is pretty forgiving as long as you don't delete any of the curly brackets or parentheses. As for keeping things labelled, anything in between /* and */ marks are comments and don't affect the rest of the code. So it's safe to delete or write anything as long as it is between those two marks (they are displayed as a different colour in the editor so you can easily tell). If you really want I can give it a pass to make it more uniform but I decided to ask first. |
Jul 28, 2021 10:05 AM
#890
Valerio_Lyndon said: LEGENDS_OF_ANIME said: Valerio_Lyndon said: hrxshi said: is there a way to automatically highlight my top rated anime/manga? for example all my 9-10 rated entries are automatically highlighted in some manner Here's some code you could use. Add to the bottom of your CSS. As it is now, it will add some coloured shadows around each entry. But if you want to change the colours or the styling for each score, you can do that by modifying the first part of the code where all the ".score-#" and "box-shadow" codes are. You could use a border instead for cleaner lines or modify the shadows to your liking. /*-S-T-A-R-T--------------------*\ | Highlight Items by Score | \*------------------------------*/ /* Per-score styling */ .score-na::after { box-shadow: 0 0 2px 1px gray ; } .score-1::after { box-shadow: 0 0 2px 1px #000 ; } .score-2::after { box-shadow: 0 0 2px 1px hsl(355, 80%, 20%) ; } .score-3::after { box-shadow: 0 0 2px 1px hsl(350, 60%, 30%) ; } .score-4::after { box-shadow: 0 0 2px 1px hsl(345, 40%, 40%) ; } .score-5::after { box-shadow: 0 0 2px 1px hsl(330, 10%, 50%) ; } .score-6::after { box-shadow: 0 0 2px 1px hsl(315, 10%, 60%) ; } .score-7::after { box-shadow: 0 0 2px 1px hsl(300, 20%, 70%) ; } .score-8::after { box-shadow: 0 0 2px 1px hsl(280, 40%, 77%) ; } .score-9::after { box-shadow: 0 0 2px 1px hsl(265, 70%, 84%) ; } .score-10::after { box-shadow: 0 0 2px 1px goldenrod ; } /* Styling for all score boxes */ .list-table-data { z-index: 1 ; } .data.score { position: static ; } .data.score select { position: static ; margin-left: -14px ; } .score-label::after { content: "" ; position: absolute ; top: 0 ; left: 0 ; z-index: -1 ; width: 100% ; height: 100% ; } .data.score a:not([style="display: none ;"]) + select { display: none ; } Box shadow and border CSS reference: https://www.w3schools.com/cssref/css3_pr_box-shadow.asp https://www.w3schools.com/css/css_border_shorthand.asp It broke in my list for some reason. Can you tell me the fix?? [ IMAGE ] Ah, it doesn't play nicely with the score descriptors you have. You'll need to change the score descriptors mod code. Unfortunately this does mean some minor style tweaks, primarily the overlayed scores not being as perfectly aligned like before. Replace the old codes as shown in the spoiler below with the new codes. /* Internals */ .score-label { position: relative; display: inline-block; z-index: 0; transition: color 0.3s ease; } .score-label:hover { color: #fff !important; } .score-label::before { position: absolute; top: -4px; left: -10px; z-index: -1; display: block; padding: 4px 8px 4px calc(100% + 12px); background: #111; border-radius: 4px; opacity: 0; transition: opacity 0.3s ease; white-space: pre; text-align: left; pointer-events: none; } .score-label:hover::before { opacity: 1; } /* Internals */ .score-label { display: inline-block; transition: color 0.3s ease; } .score-label:hover { color: #fff !important; } .score-label::before { position: absolute; z-index: 1; padding: 4px 8px; background: #111; border-radius: 4px; opacity: 0; transition: opacity 0.3s ease; white-space: pre; text-align: left; pointer-events: none; margin-top: -4px; margin-left: -10px; } /* Fix for use with score-based row outlines */ .score-label::after { pointer-events: none; } .score a:hover .score-label::before { opacity: 1; } /*------------------------------*\ | SCORE DESCRIPTION POPUP | \*------------------------------*/ .score-na::before { content: "NOT DECIDED"; } .score-1::before { content: "UNREDEEMABLE"; } .score-2::before { content: "HORRIBLE"; } .score-3::before { content: "AWFUL"; } .score-4::before { content: "BAD"; } .score-5::before { content: "AVARAGE"; } .score-6::before { content: "FINE"; } .score-7::before { content: "GOOD"; } .score-8::before { content: "GREAT"; } .score-9::before { content: "AMAZING"; } .score-10::before { content: "MASTERPIECE"; } /*------------------------------*\ | SCORE DESCRIPTION POPUP | \*------------------------------*/ .score-na::before { content: "- NOT DECIDED"; } .score-1::before { content: "1 UNREDEEMABLE"; } .score-2::before { content: "2 HORRIBLE"; } .score-3::before { content: "3 AWFUL"; } .score-4::before { content: "4 BAD"; } .score-5::before { content: "5 AVERAGE"; } .score-6::before { content: "6 FINE"; } .score-7::before { content: "7 GOOD"; } .score-8::before { content: "8 GREAT"; } .score-9::before { content: "9 AMAZING"; } .score-10::before { content: "10 MASTERPIECE"; } LEGENDS_OF_ANIME said: SO, what I want to know is, is there a way to target the score of a specific anime. For example, not .score-10 cuz it would target all the entries with a score of 10 but rather a way I can target the score of a SPECIFIC entry in my list. So, if this is possible then please help me with it, I'm hopeless so this man here needs help. This requires adding a tag to the desired entries and then repositioning that tag via CSS. The code will vary depending on the list, but for your list you could add something like this: .data.tags a[href*="=.5"] { position: absolute; bottom: calc(50% - 2px); left: 576px; width: 16px; height: 16px; padding: 0 !important; font-size: 10px !important; line-height: 16px; border-radius: 0 50% 50% 0; pointer-events: none; } With this code, any ".5" tag you add will be repositioned over the score like this image here: This code can also be used for ".1", ".3", etcetera. Keep in mind that any time something about your list changes, you will have to modify the "left" value of these tags so that they are positioned correctly once again. It may not be how you were imagining, but the styling options are limited since we're positioning one element (the ".5" tag) over top of the scores, which vary in width (10 is wider than 8, for instance). You could potentially try other styling such as widening the score box to make room for the .5, but as I say the choices are limited. .data.score { width: 36px; } .data.score a { width: 23px; padding-right: 13px; text-align: right; } .data.tags a[href*="=.5"] { position: absolute; bottom: calc(50% - 2px); left: 567px; height: 16px; padding: 0 !important; background: none; font-size: 10px !important; line-height: 16px; pointer-events: none; } Thanks a lot for helping. It really helped a lot. But................ I really don't wanna but there's two more things I wanna ask for. I am really sorry for asking for so much help but I just can't figure how to do them and it's bothering me. Is there a way to create a border like that around the rows based on the current status of the entry??? (Ex. If I am currently watching an anime then the border color around it would be green) And the other thing is, in my CSS there's a problem. If you see line 100 of my CSS then you will see there's the same code repeated 2 times but when I delete one of them it totally breaks my list banner. My banner just disappears somewhere. So I was thinking if you could tell me what the cause of this was cuz I just couldn't find a reason (I don't have any good knowledge of CSS, I'm sorry.) Here's my list CSS: URL |
StoryGraph x Spotify x Instagram “Whether we die or not isn't really that big a deal." — Suzuya Juuzou |
Jul 28, 2021 2:07 PM
#891
Valerio_Lyndon said: Mark_016 said: can i got a little help here? my code was really messed up, can you tidy up it? but don't change any customize i made (if something needs to be fixed, i will be glad with it :D) Awesome layout Btw.... So you just want the code to be more readable? This is usually best done yourself, so that you know where each part is for when you may need to modify it later. As long as you back up the code before you start, and preview each change as you go, it's perfectly okay to start modifying things yourself. The formatting of CSS is pretty forgiving as long as you don't delete any of the curly brackets or parentheses. As for keeping things labelled, anything in between /* and */ marks are comments and don't affect the rest of the code. So it's safe to delete or write anything as long as it is between those two marks (they are displayed as a different colour in the editor so you can easily tell). If you really want I can give it a pass to make it more uniform but I decided to ask first. thanks for your reply. I made some unusual css code (e.g gif images in licensor and studio) which I don't know is right or wrong. that's why I'm asking whether the code is correct or not? and is the order correct? |
Jul 29, 2021 9:47 PM
#892
Mark_016 said: So you just want the code to be more readable? This is usually best done yourself, so that you know where each part is for when you may need to modify it later. As long as you back up the code before you start, and preview each change as you go, it's perfectly okay to start modifying things yourself. The formatting of CSS is pretty forgiving as long as you don't delete any of the curly brackets or parentheses. As for keeping things labelled, anything in between /* and */ marks are comments and don't affect the rest of the code. So it's safe to delete or write anything as long as it is between those two marks (they are displayed as a different colour in the editor so you can easily tell). If you really want I can give it a pass to make it more uniform but I decided to ask first. thanks for your reply. I made some unusual css code (e.g gif images in licensor and studio) which I don't know is right or wrong. that's why I'm asking whether the code is correct or not? and is the order correct?[/quote] The nice thing about CSS is basically if it works as desired then it's as correct as it needs to be. I did glance through the code and it all looked fine. The order will only matter in so far as what code is going to overwrite other code (further down code has precedence over earlier code). So as long as everything is applying to the page properly, the order is most likely correct. |
Jul 30, 2021 12:00 AM
#893
LEGENDS_OF_ANIME said: Thanks a lot for helping. It really helped a lot. But................ I really don't wanna but there's two more things I wanna ask for. I am really sorry for asking for so much help but I just can't figure how to do them and it's bothering me. Not to worry :) LEGENDS_OF_ANIME said: Is there a way to create a border like that around the rows based on the current status of the entry??? (Ex. If I am currently watching an anime then the border color around it would be green) https://i.imgur.com/Aqeiy1Y.png You could use something like this. It adds a new element inside of the status bar. There are other ways to do this, but this is the easiest. .data.status::before { content: ""; position: absolute; top: 0; left: 0; z-index: -1; width: var(--listWidth); height: 100%; pointer-events: none; } .data.status.watching::before, .data.status.reading::before { box-shadow: 0 0 0 1px var(--watching); } .data.status.completed::before { box-shadow: 0 0 0 1px var(--completed); } .data.status.onhold::before { box-shadow: 0 0 0 1px var(--onhold); } .data.status.dropped::before { box-shadow: 0 0 0 1px var(--dropped); } .data.status.plantowatch::before, .data.status.plantoread::before { box-shadow: 0 0 0 1px var(--plantowatch); } LEGENDS_OF_ANIME said: And the other thing is, in my CSS there's a problem. If you see line 100 of my CSS then you will see there's the same code repeated 2 times but when I delete one of them it totally breaks my list banner. My banner just disappears somewhere. So I was thinking if you could tell me what the cause of this was cuz I just couldn't find a reason (I don't have any good knowledge of CSS, I'm sorry.) Here's my list CSS: URL The problem looks to be this stray bracket on line 95. Deleting that should fix any issues. |
Jul 30, 2021 3:50 AM
#894
Valerio_Lyndon said: LEGENDS_OF_ANIME said: Thanks a lot for helping. It really helped a lot. But................ I really don't wanna but there's two more things I wanna ask for. I am really sorry for asking for so much help but I just can't figure how to do them and it's bothering me. Not to worry :) LEGENDS_OF_ANIME said: Is there a way to create a border like that around the rows based on the current status of the entry??? (Ex. If I am currently watching an anime then the border color around it would be green) https://i.imgur.com/Aqeiy1Y.png You could use something like this. It adds a new element inside of the status bar. There are other ways to do this, but this is the easiest. .data.status::before { content: ""; position: absolute; top: 0; left: 0; z-index: -1; width: var(--listWidth); height: 100%; pointer-events: none; } .data.status.watching::before, .data.status.reading::before { box-shadow: 0 0 0 1px var(--watching); } .data.status.completed::before { box-shadow: 0 0 0 1px var(--completed); } .data.status.onhold::before { box-shadow: 0 0 0 1px var(--onhold); } .data.status.dropped::before { box-shadow: 0 0 0 1px var(--dropped); } .data.status.plantowatch::before, .data.status.plantoread::before { box-shadow: 0 0 0 1px var(--plantowatch); } LEGENDS_OF_ANIME said: And the other thing is, in my CSS there's a problem. If you see line 100 of my CSS then you will see there's the same code repeated 2 times but when I delete one of them it totally breaks my list banner. My banner just disappears somewhere. So I was thinking if you could tell me what the cause of this was cuz I just couldn't find a reason (I don't have any good knowledge of CSS, I'm sorry.) Here's my list CSS: URL The problem looks to be this stray bracket on line 95. Deleting that should fix any issues. Thanks a lot. Everything worked out perfectly. I have been asking a lot of questions lately so I wasn't sure if I should ask for help AGAIN. But thanks for helping me out. I won't do much changes in my list for some time so you can rest in peace now. |
Legends_of_animeJul 30, 2021 3:55 AM
StoryGraph x Spotify x Instagram “Whether we die or not isn't really that big a deal." — Suzuya Juuzou |
Jul 31, 2021 3:46 AM
#895
Valerio_Lyndon said: Mark_016 said: So you just want the code to be more readable? This is usually best done yourself, so that you know where each part is for when you may need to modify it later. As long as you back up the code before you start, and preview each change as you go, it's perfectly okay to start modifying things yourself. The formatting of CSS is pretty forgiving as long as you don't delete any of the curly brackets or parentheses. As for keeping things labelled, anything in between /* and */ marks are comments and don't affect the rest of the code. So it's safe to delete or write anything as long as it is between those two marks (they are displayed as a different colour in the editor so you can easily tell). If you really want I can give it a pass to make it more uniform but I decided to ask first. The nice thing about CSS is basically if it works as desired then it's as correct as it needs to be. I did glance through the code and it all looked fine. The order will only matter in so far as what code is going to overwrite other code (further down code has precedence over earlier code). So as long as everything is applying to the page properly, the order is most likely correct. so, it doesn't need to be fix anymore? |
Jul 31, 2021 10:59 PM
#896
Mark_016 said: so, it doesn't need to be fix anymore? If nothing is broken then nothing needs to be fixed. The main benefits to improving code further are reducing the space it takes up and improving its readability. These are both nice to have, but not required. |
Jul 31, 2021 11:15 PM
#897
LEGENDS_OF_ANIME said: Thanks a lot. Everything worked out perfectly. I have been asking a lot of questions lately so I wasn't sure if I should ask for help AGAIN. But thanks for helping me out. I won't do much changes in my list for some time so you can rest in peace now. Glad it works. :) And no worries lol. |
Aug 1, 2021 8:15 AM
#898
Valerio_Lyndon said: Mark_016 said: so, it doesn't need to be fix anymore? If nothing is broken then nothing needs to be fixed. The main benefits to improving code further are reducing the space it takes up and improving its readability. These are both nice to have, but not required. thanks for the advise, dude. once again, your layout was really awesome :D :D |
Aug 15, 2021 4:43 AM
#899
So a couple days ago category headers just stopped working without me making any changes to the css. Is there any way to fix it or is it a problem with the malcat or mal itself? |
Aug 15, 2021 5:51 AM
#900
Powish said: So a couple days ago category headers just stopped working without me making any changes to the css. Is there any way to fix it or is it a problem with the malcat or mal itself? I have the same problem i think problem is on mal |
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 |