New
Oct 14, 2019 9:05 AM
#51
Valerio_Lyndon said: CubeMage said: Good question, you can change it using this code:Hi, I am using your Grid Style 4 and really like it! When changing the backgrounds, renders, and banners, I realized that I the filter window also has a custom background. However, no matter how much I searched the code, I couldn't find the appropriate code to change that background. Any help will be much appreciated /* FILTER MENU BACKGROUND */ #advanced-options { background-image: url(https://i.imgur.com/06BJudE.jpg) !important; } Thanks, found it after another 20 minutes of searching. This is a perfect example for why comments are crucial when programming |
Oct 17, 2019 3:56 PM
#52
Hi, I decided to use Clarity Style 2 for my anime list. I've figured out how to do most of the customizations I wanted, but there are a few things I am having trouble with: 1: How do you move banner characters?
2. How do you resize the width of the list entries?
3. When hovering over an entry's picture, is there a way to change the color of the arrow? 4. Is there a way to change the color of the Banner Text? |
Just some guy who likes anime |
Oct 17, 2019 8:52 PM
#53
Vivator said: Add all new code to the bottom of your CSS.Hi, I decided to use Clarity Style 2 for my anime list. I've figured out how to do most of the customizations I wanted, but there are a few things I am having trouble with: 1: How do you move banner characters?
2. How do you resize the width of the list entries?
3. When hovering over an entry's picture, is there a way to change the color of the arrow? 4. Is there a way to change the color of the Banner Text? 1. Play with this. Each section is set to its default value here, but to change anything you can fiddle with the values. To align an image to the left of the screen, you could give it a background-position of left and a margin-left of 0. Same with the right of the screen. /* =================== Character Positions */ /* All Anime */ [data-query*='status":7'] #cover-image-container { margin-left: auto; margin-right: auto; background-position: right center; } /* Watching */ [data-query*='status":1'] #cover-image-container { margin-left: auto; margin-right: auto; background-position: right center; } /* Completed */ [data-query*='status":2'] #cover-image-container { margin-left: auto; margin-right: auto; background-position: right center; } /* On Hold */ [data-query*='status":3'] #cover-image-container { margin-left: auto; margin-right: auto; background-position: right center; } /* Dropped */ [data-query*='status":4'] #cover-image-container { margin-left: auto; margin-right: auto; background-position: right center; } /* Planned */ [data-query*='status":6'] #cover-image-container { margin-left: auto; margin-right: auto; background-position: right center; } /* prevent page overflow */ .cover-block { overflow: hidden; } • Background Position • Margin Left/Right 2. Default is 1060px. To modify, change the top-most number in this code to something else (900px for instance). I haven't tested higher numbers, only lower. /* ================= Change list width */ :root { --list-width: 1060px; } .list-table { width: var(--list-width); } .list-table-data { max-width: var(--list-width); } .data.tags a.edit { right: calc(var(--list-width) * -1) } .list-table > tbody:first-of-type { left: calc(50% + 502px) } 3. /* ============================ Image Thumbnail Arrow Colour */ .data.image a::after { color: red; } 4. /* =================== Header Text Changes */ #cover-image-container::after { /*Text colour*/ color: #ff0000; /*Shadow colour*/ text-shadow: #000000 1px 4px 7px; } For help with CSS colours, I advise googling "color picker". Any RGB, Hex, HSL, or named colour will work. |
Valerio_LyndonOct 17, 2019 8:57 PM
Oct 18, 2019 12:34 AM
#54
@Valerio_Lyndon Thank you so much for your response. I was able to get everything finished how I wanted it to be. It's a very great list design and I'm glad that I got to make it how I wanted it. Valerio_Lyndon said: As for this, I had to do this to the code to get everything to move where I needed it to be and I'm posting here if anyone needs it in the future.1. Play with this. Each section is set to its default value here, but to change anything you can fiddle with the values. To align an image to the left of the screen, you could give it a background-position of left and a margin-left of 0. Same with the right of the screen. /* =================== Character Positions */ /* All Anime */ [data-query*='status":7'] #cover-image-container { margin-left: auto; margin-right: auto; background-position: right center; } /* Watching */ [data-query*='status":1'] #cover-image-container { margin-left: auto; margin-right: auto; background-position: right center; } /* Completed */ [data-query*='status":2'] #cover-image-container { margin-left: auto; margin-right: auto; background-position: right center; } /* On Hold */ [data-query*='status":3'] #cover-image-container { margin-left: auto; margin-right: auto; background-position: right center; } /* Dropped */ [data-query*='status":4'] #cover-image-container { margin-left: auto; margin-right: auto; background-position: right center; } /* Planned */ [data-query*='status":6'] #cover-image-container { margin-left: auto; margin-right: auto; background-position: right center; } /* prevent page overflow */ .cover-block { overflow: hidden; } • Background Position • Margin Left/Right CHANGE: margin-right: 0; ADD: right: calc(100% - (50% - 538px)); Example: /* Dropped */ [data-query*='status":4'] #cover-image-container { margin-left: auto; margin-right: 0; right: calc(100% - (50% - 538px)); background-position: right center; } |
Just some guy who likes anime |
Oct 19, 2019 3:05 PM
#55
@Valerio_Lyndon Should I be updating the Clarity styles in this topic in any way? D: |
Oct 20, 2019 1:38 AM
#56
Shishio-kun said: It's not particularly an issue. Most of what I've done since you made the original post is just minor bug fixes. You can find a full list of changes since the version you used (R22.0) in the image below or here: [Changelog]@Valerio_Lyndon Should I be updating the Clarity styles in this topic in any way? D: If you were to update, you'd probably have to update the image on hover code as well as I think I made a change to how that code works during one of the updates. I'd also check that nothing else broke afterwards. |
Oct 22, 2019 2:29 PM
#57
Hey I tried your Grid Layout 3 and it looks awesome, except the cover images for the animes are missing or inivisible Here's how it looks like: https://imgur.com/ypzROkr |
Oct 22, 2019 6:43 PM
#58
streamichi said: Hey I tried your Grid Layout 3 and it looks awesome, except the cover images for the animes are missing or inivisible Here's how it looks like: https://imgur.com/ypzROkr You're not using Grid Layout on the anime list tho? I can only guess that it's because your layout was private recently or something in your browser like ad block is blocking th cover imports. You can try the alternative cover imports, or wait 24 hours after setting the anime list to public for covers to appear. https://myanimelist.net/forum/?topicid=1791551 you probably need this at the top of the anime list @\import "https://dl.dropboxusercontent.com/s/71mrsl1iz0z11p2/animelist%20dataimagelinkbefore.css"; Your manga list is also private- the covers won't show by default if your list is private and you're trying to use one of these layouts there too. You can try some of the alternative modern manga list cover imports for a private manga list You probably need either one of these at the top of your mangalist CSS (please don't use both at the same time) @import "https://dl.dropboxusercontent.com/s/matkhrm2ng2xdu2/manga%20before.css"; @\import "https://dl.dropboxusercontent.com/s/dpqglnr3slmgp7t/mangalist%20dataimagelinkbefore.css"; |
Shishio-kunOct 22, 2019 6:50 PM
Oct 26, 2019 4:35 AM
#59
Hey there Shishio-kun! First of all, I'd like to thank you for giving such amazing design for my list! However, I am facing a few problems and would like to have them solved. Here's my anime list: My Anime List Now, here are my issues: 1. The position of the hover is not adjacent to the rectangular box corresponding to the anime. How can I resolve ths? 2. I want to change the font to "Thirsty Script". But I don't know how to do so as there are many places where font-family is written. Also, I can't find any free link on google. Can you help me with that as well? If not, let's try with your Lover's Quarrel example. Once again, I'd like to thank you on sharing your amazing work. I finally feel like my anime profile is something dope! |
KoustubhOct 26, 2019 5:00 AM
Oct 26, 2019 12:49 PM
#60
Koustubh said: Hey there Shishio-kun! First of all, I'd like to thank you for giving such amazing design for my list! However, I am facing a few problems and would like to have them solved. Here's my anime list: My Anime List Now, here are my issues: 1. The position of the hover is not adjacent to the rectangular box corresponding to the anime. How can I resolve ths? 2. I want to change the font to "Thirsty Script". But I don't know how to do so as there are many places where font-family is written. Also, I can't find any free link on google. Can you help me with that as well? If not, let's try with your Lover's Quarrel example. Once again, I'd like to thank you on sharing your amazing work. I finally feel like my anime profile is something dope! It's Takana_no_Hana's work, I just edited it so that it would be easier to customize and had more options 1. What's your screen size and did you use zoom on your browser? That might be the issue. It looks normal to me. You can also try this: add this code to the bottom and adjust the number after left to move the preview pic and tags to where you want. .list-table .list-table-data:hover .data.tags, .list-table .list-table-data:hover .data.tags span:after , .list-table .list-table-data:hover .data.image a:before{ left: 260px !important; } 2. I have a fonts video all about how to change fonts; one of the options there should work for you. https://www.youtube.com/watch?v=5IGsUjxjwnk |
Oct 26, 2019 10:47 PM
#61
@Shishio-kun Hey! #2 worked like a charm! Thanks for that. As for #1, the issue I am facing is that without scrolling up or down with the middle mouse, if I move the mouse up/down across different entries, the thing is that the hover stays at only a single place. It does not move up/down with it. How do I resolve this? |
Oct 27, 2019 1:17 PM
#62
Koustubh said: @Shishio-kun Hey! #2 worked like a charm! Thanks for that. As for #1, the issue I am facing is that without scrolling up or down with the middle mouse, if I move the mouse up/down across different entries, the thing is that the hover stays at only a single place. It does not move up/down with it. How do I resolve this? Well you can try .list-table .list-table-data:hover .data.tags, .list-table .list-table-data:hover .data.tags span:after , .list-table .list-table-data:hover .data.image a:before{ left: 260px !important; top: 100px !important; } and this lets you control where it is fixed on the page, just adjust the number after left and top. Or instead you could make it not fixed on the page with this addition, which I think is what you want: .list-table .list-table-data:hover .data.tags, .list-table .list-table-data:hover .data.tags span:after , .list-table .list-table-data:hover .data.image a:before{ left: 260px !important; top: 100px !important; position: absolute !important } That should let it be moved more flexibly but you'll have to adjust the numbers again to find the right place. Also this might work better too instead: .list-table .list-table-data:hover .data.tags, .list-table .list-table-data:hover .data.tags span:after{ left: 260px !important; top: 100px !important; position: absolute !important } .list-table .list-table-data:hover .data.image a:before{ left: 260px !important; top: 100px !important; position: absolute !important } That lets you control the tag's and preview pic's positions separately, but there's a lot of adjusting of the numbers that need to be done. Maybe some of these would work for you? Might take a lot of experimentation. Lastly you could replace absolute with relative but I think that absolute should be enough. |
Oct 27, 2019 11:38 PM
#63
Shishio-kun said: Koustubh said: @Shishio-kun Hey! #2 worked like a charm! Thanks for that. As for #1, the issue I am facing is that without scrolling up or down with the middle mouse, if I move the mouse up/down across different entries, the thing is that the hover stays at only a single place. It does not move up/down with it. How do I resolve this? Well you can try .list-table .list-table-data:hover .data.tags, .list-table .list-table-data:hover .data.tags span:after , .list-table .list-table-data:hover .data.image a:before{ left: 260px !important; top: 100px !important; } and this lets you control where it is fixed on the page, just adjust the number after left and top. Or instead you could make it not fixed on the page with this addition, which I think is what you want: .list-table .list-table-data:hover .data.tags, .list-table .list-table-data:hover .data.tags span:after , .list-table .list-table-data:hover .data.image a:before{ left: 260px !important; top: 100px !important; position: absolute !important } That should let it be moved more flexibly but you'll have to adjust the numbers again to find the right place. Also this might work better too instead: .list-table .list-table-data:hover .data.tags, .list-table .list-table-data:hover .data.tags span:after{ left: 260px !important; top: 100px !important; position: absolute !important } .list-table .list-table-data:hover .data.image a:before{ left: 260px !important; top: 100px !important; position: absolute !important } That lets you control the tag's and preview pic's positions separately, but there's a lot of adjusting of the numbers that need to be done. Maybe some of these would work for you? Might take a lot of experimentation. Lastly you could replace absolute with relative but I think that absolute should be enough. @Shishio-kun I was able to do almost everything I needed. I just have one final issue. In my animelist, the studio name is stuck at one place in the middle. Other than that, everything is working perfectly. Check it out: My Anime List |
Oct 28, 2019 2:34 AM
#64
@Koustubh Well it depends on what you want to do with the studio but you can just move it where you want with this and it will stay parallel to the row. .list-table .list-table-data .data.studio, .list-table .list-table-data .data.studio:hover {position: relative !important; left: -1200px !important; top: -20px !important;} You also need to remove that extra closing bracket from the bottom if you want to add more codes. Also your preview pic and other imports aren't visible, you need to repair your imports with this topic under Allow logged out users and other users to see your imported CSS https://myanimelist.net/forum/?topicid=439897 |
Shishio-kunOct 28, 2019 2:38 AM
Oct 28, 2019 8:22 AM
#65
Shishio-kun said: @Koustubh Well it depends on what you want to do with the studio but you can just move it where you want with this and it will stay parallel to the row. .list-table .list-table-data .data.studio, .list-table .list-table-data .data.studio:hover {position: relative !important; left: -1200px !important; top: -20px !important;} You also need to remove that extra closing bracket from the bottom if you want to add more codes. Also your preview pic and other imports aren't visible, you need to repair your imports with this topic under Allow logged out users and other users to see your imported CSS https://myanimelist.net/forum/?topicid=439897 I see. Well, I tried the thing which you've mentioned for the broken images, but it's still not working. Also, I want a slight change in my design. Whenever I hover over a design, the entry of the particular entry enlarges because of the image. That probably is because of the relative positioning of the image,tags and the studio. Is there any roundabout way for this so that 1. The entry won't enlarge 2. I can see the image, tag and the studio beside the entry to the left side (the way it's positioned in the original template, with the entry being just adjacent to the entry and not fixed in a single postion) Edit: I commented out all the codes related to data.tags, data.images and data.studio, so the design has been reverted to the original state. You can give me suggestions now. Here's my list: My Anime List |
KoustubhOct 28, 2019 9:01 AM
Oct 28, 2019 5:02 PM
#66
@Koustubh Unfortunately with this type of positioning there's going to be alot of errors and manual readjustment. You can use this CSS tho to get the effect you want, I worked really hard on it for a long time. All the codes to move everything are at the bottom now, and a lot of conflicting codes had to be taken out, and a lot of the columns had to manually adjusted. But you can make any more readjustments with the margin-top, top, and left codes in the bottom of the CSS. I labelled the sections too :D It should look like this: @\import "https://fonts.googleapis.com/css?family=Pacifico&display=swap"; @\import "https://fonts.googleapis.com/css?family=Roboto+Slab&display=swap"; /*Layout CSS was originally made by Takana no hana, edits by Shishio-kun and Valerio_lyndon If you need help with it please visit our group: https://myanimelist.net/clubs.php?cid=19736 Learn how to customize the layout here: https://myanimelist.net/forum/?topicid=1640096 */ @\import "https://fonts.googleapis.com/css?family=Rancho"; @\import "https://fonts.googleapis.com/css?family=Slabo+27px|PT+Sans+Narrow"; @\import "https://malscraper.azurewebsites.net/covers/auto/presets/dataimagelinkbefore"; /*BANNER AVATAR */ .cover-block::after {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwNFIDdfRlQNw68TcyvVQcNc); } /* BANNER QUOTE */ .cover-block::before { content: "There's no advantage to hurrying in life."; } /* BANNER BACKGROUND */ .list-unit .list-status-title:after { background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwGVUAJ408lvXDa1UqN_PpRQ); } /* BANNER OPACITY */ .list-unit .list-status-title:after { opacity: 1; } /*CURRENTLY WATCHING MAIN BACKGROUND*/ body[data-query*='"status":1'] { background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwIpdZTuNEr7sDZOBXcgd2BM); } /*COMPLETED MAIN BACKGROUND*/ body[data-query*='"status":2'] { background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwPT_4EQM1srJ7KXYTogM1kM); } /*ON HOLD MAIN BACKGROUND*/ body[data-query*='"status":3'] { background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwFCkDSbkuzX4C20e00tXwQs); } /*DROPPED MAIN BACKGROUND*/ body[data-query*='"status":4'] { background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwERRCS1R--IzvhsLsdDMg-M); } /*PLANNED MAIN BACKGROUND*/ body[data-query*='"status":6'] { background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwJmrY4hXuNdazRBtNJr7qtE); } /*ALL ANIME/MANGA MAIN BACKGROUND*/ body[data-query*='"status":7'] { background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwNJ1I52ty9oi-IdVG2qoanA); } /* ANIME/MANGA CONTAINER SETTINGS */ .list-table > tbody:nth-of-type(2n+1) { background-color: rgba(0,0,0,.8) !important; } .list-table > tbody:nth-of-type(2n) { background-color: rgba(0,0,0,.7) !important; } .list-unit .list-status-title { background-color:rgba(0,0,0,.3) !important; } /* OTHER CODES */ /* Removing default cover (banner) image */ #cover-image{ display: none; } .list-unit .list-status-title { position: relative; display: table-cell; background-color: transparent; width: 1000px; height:400px !important; /*background-color:rgba(127,127,127,1);*/ background: transparent; } /* picture at the bottom of your list ** please note that default is a seiren picture even if you delete the image url below(it's just a sample image which you need to replace). ** if you don't want this section, just delete the image url */ .list-unit .loading-space { height:250px; width:1000px; background-image:url(https://image.myanimelist.net/ui/OK6W_koKDTOqqqLDbIoPAuKTKHnTqNYtxb-j8OBAt-g); } #advanced-options { position: fixed; top: 24px; left: 0; right: 0; background-color: rgba(255,255,255,.9); display: none; width: 860px; margin: 0 auto; padding: 25px 0px 30px; -moz-box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.3); -webkit-box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.3); -o-box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.3); -ms-box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.3); box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.3); color: #323232; text-align: left; font-family: 'Helvetica neue', Helvetica, "lucida grande", tahoma, verdana, arial, sans-serif; z-index: 1101; border: none; background-image: url(); background-repeat: no-repeat; background-size: cover; background-position: 50% 100%; } #advanced-options .advanced-options-header { width: 750px; margin: 0px auto; padding-bottom: 4px; border-bottom: 1px solid #BEBEBE; font-size: 16px; color:rgba(0,0,0,.6) !important; } #advanced-options .advanced-options-header .description { font-size: 12px; font-weight: normal; margin-left: 8px; color:rgba(0,0,0,.6) !important; } #advanced-options .sort-widget .widget-header, #advanced-options .filter-widget .widget-header, #advanced-options .filter-widget.aired-date .text, #advanced-options .filter-widget.published-date .text { color:rgba(0,0,0,.6) !important; } #advanced-options select { -ms-appearance: none; -webkit-appearance: none; -moz-appearance: none; appearance: none; background-image: url(); background-repeat: no-repeat; background-position: center right; background-size: 18px 8px; background-color: #FFFFFF; display: inline-block; height: 25px; padding: 4px 20px 4px 4px; padding-right: 4px\0; border: #BEBEBE 1px solid; border-radius: 0px; font-size: 12px; } #advanced-options select::-ms-expand { display: none; } #advanced-options select:disabled { background-image: url(); color: #9B9B9B; } #advanced-options input[type=text] { padding: 4px; border: #BEBEBE 1px solid; } #advanced-options input:focus { outline: none; } /* sort */ #advanced-options .sort-widget { margin: 0px auto; padding: 12px 0px 0px; width: 750px; } #advanced-options .sort-widget:last-of-type { padding-bottom: 45px; } #advanced-options .sort-widget select { width: 172px; margin-right: 8px; } #advanced-options .sort-widget input[type=radio] { display: none; } #advanced-options .sort-widget input[type=radio] + label { background-color: #FFFFFF; display: inline-block; width: 56px; padding: 5px 0px; border: #BEBEBE 1px solid; border-radius: 4px; color: #323232; font-size: 12px; text-align: center; cursor: pointer; } #advanced-options .sort-widget input[type=radio]:checked + label { background-color: #244291; border: #244291 1px solid; color: #FFFFFF; } #advanced-options .sort-widget input[type=radio]:disabled + label { border: #BEBEBE 1px solid; color: #9B9B9B; } #advanced-options .sort-widget input[type=radio]:checked:disabled + label { background-color: #FFFFFF; border: #BEBEBE 1px solid; color: #9B9B9B; } /* filter */ #advanced-options .filter-widget { margin: 0px auto; padding: 12px 0px 0; width: 750px; } #advanced-options .filter-widget select { margin-right: 8px; font-size: 12px; } #advanced-options .filter-widget.title input[type=text] { width: 360px; } #advanced-options .filter-widget.airing-status select, #advanced-options .filter-widget.publishing-status select { width: 152px; } #advanced-options .filter-widget.producer select, #advanced-options .filter-widget.magazine select { width: 360px; } #advanced-options .filter-widget.aired-date select.year, #advanced-options .filter-widget.published-date select.year { width: 80px; } #advanced-options .filter-widget.aired-date select.month, #advanced-options .filter-widget.published-date select.month, #advanced-options .filter-widget.aired-date select.day, #advanced-options .filter-widget.published-date select.day { width: 60px; } #advanced-options .filter-widget.aired-date .text, #advanced-options .filter-widget.published-date .text { display: inline-block; margin-right: 4px; font-size: 12px; } #advanced-options .filter-widget.aired-season select.year { width: 80px; } #advanced-options .filter-widget.aired-season select.season { width: 110px; } #advanced-options .sort-widget .widget-header, #advanced-options .filter-widget .widget-header { display: inline-block; width: 110px; font-size: 12px; font-family: 'Helvetica neue', Helvetica, "lucida grande", tahoma, verdana, arial, sans-serif; } #advanced-options .sort-widget:last-of-type, #advanced-options .filter-widget:last-of-type { padding-bottom: 40px; } #advanced-options .advanced-options-button { width: 750px; margin: 0px auto; padding: 12px 0px 0px; border-top: 1px solid #BEBEBE; text-align: center; } #advanced-options .btn-apply, #advanced-options .btn-clear { background-color: rgba(0,0,0, 0.8); display: inline-block; width: 135px; margin: 0 4px; padding: 6px 0px; border-radius: 4px; font-size: 12px; color: #FFFFFF; text-align: center; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; -webkit-transform: translateY(0); -moz-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); transform: translateY(0); } #advanced-options .btn-apply:hover, #advanced-options .btn-clear:hover { background-color: rgba(0,0,0, 0.8); } /** * General Styles */ td { line-height: 1.5em; height: 35px !important; border:none !important; } a { color: #fff; text-decoration: none; } a:hover { color: #fff !important; text-decoration: none; } #footer-block { padding: 15px 0; background-color: #244291; color: #FFFFFF; font-family: Avenir, "lucida grande", tahoma, verdana, arial, sans-serif; display:none; } #copyright { font-size: 12px; color: #FFFFFF; padding-top: 3px; text-align: center; } /* * Header */ .header a { font-weight: bold; color: #fff !important; } .header a:hover { text-decoration: underline; } .header { position: absolute; color: #fff; display: block; width: 100%; height: 50px; margin: 0 auto border:none; background: -webkit-linear-gradient(rgba(0,0,0,.4), transparent); /* For Safari 5.1 to 6.0 */ background: -o-linear-gradient(rgba(0,0,0,.4), transparent); /* For Opera 11.1 to 12.0 */ background: -moz-linear-gradient(rgba(0,0,0,.4), transparent); /* For Firefox 3.6 to 15 */ background: linear-gradient(rgba(0,0,0,.4), transparent); /* Standard syntax */ -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; z-index: 40; } .header:hover {background-color:rgba(0,0,0,.5); -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; } .header .header-menu { position: absolute; top: 5px; right: 4px } .header .header-menu.other { top: 5px; } .header .header-menu .header-info { font-size: 10px; margin-top: 6px; margin-right: 15px; text-align: right; } .header .username { font-weight: bold; } .header .header-menu .list-menu { position: absolute; top: 25px; right: -4px; background-color: rgba(255,255,255,.8); display: none; border: none !important; -moz-box-shadow: rgba(0, 0, 0, 0.4) 0 0 10px; -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 0 10px; box-shadow: rgba(0, 0, 0, 0.4) 0 0 10px; z-index: 1; } .header .header-menu .list-menu .icon-menu { display: block; width: 150px; height: 30px; color: #000; font-size: 14px; font-weight: bold; text-decoration: none; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; } .header .header-menu .list-menu .icon-menu:hover { background-color: rgba(0,0,0,.5); } .header .header-menu .list-menu .icon-menu svg.icon { position: absolute; fill: rgba(0,0,0,.5); left: 12px; top: 4px; } .header .header-menu .list-menu .icon-menu:hover svg.icon { fill: rgba(255,255,255,1) !important; } .header .header-menu .list-menu .icon-menu .text { position: absolute; left: 52px; top: 6px; } .header .header-menu .list-menu .icon-menu:hover .text {color:rgba(255,255,255,1) !important;} .header .header-menu .btn-menu { display: block; text-align: right; color: rgba(0,0,0,0.7) !important; font-size: 12px !important; text-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #000; } #header-menu-dropdown > a {color: rgba(0,0,0,.5) !important;} /* svg.icon.icon-manga-list {color: rgba(0,0,0,.5) !important;} */ /** * Floating Menu */ /** * Floating Menu */ .list-menu-float:before {content: "\f0c9"; font-family: 'FontAwesome' !important; display: block; text-align: center !important; text-indent: 10px; color: #fff !important; font-size:1.5em !important; height: 50px; width: 40px; line-height: 50px;} .list-menu-float:hover:before { font-size:1.7em !important; text-shadow: 0 0 2px #fff, 0 0 1px #fff, 1px 1px 7px #fff, 0 0 0 #fff; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; } .list-menu-float {position: absolute; top: 0px; left:0px; width: 50px; border: none; opacity: 1; height: 40px !important; z-index: 100; } .list-menu-float .icon-menu {display: block; width: 120px; background-color: #dfdfdf; height: 30px; line-height: 30px; text-indent: 10px; opacity:0; } .list-menu-float:hover .icon-menu {opacity:1; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out;} .list-menu-float .icon-menu.profile {background-image: none !important;} .list-menu-float .icon-menu.profile:before {position:absolute; width:120px !important; content: "\f007\00a0Profile"; font-family: 'FontAwesome' !important; margin-top:5px !important; margin-left:-65px !important; color: #000; text-align: center;} .list-menu-float .icon-menu .text {opacity: 1; width: auto; left: 20px; top: 0; color: #555555;} .list-menu-float .icon-menu:hover {width: 120px !important; background-color:rgba(0,0,0,.5) !important;} .list-menu-float .icon-menu:hover .text, .list-menu-float .icon-menu:hover:before, .list-menu-float .icon-menu:hover:after {color: #fff; width: auto;} .list-menu-float .icon-menu.logout {border-radius: 0 0 4px 4px;} .list-menu-float .icon-menu.setting {display:none;} .list-menu-float .icon-menu svg.icon {top: 7px !important; left: 5px !important; width: 15px; height: 15px;} .list-menu-float .icon-menu.setting svg.icon-setting {display:none;} /** * List Container */ .list-container { position: absolute; background-color: transparent !important; width: 1000px; left: 0; right: 0; margin: auto; margin-top:100px; box-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #000; border:none !important; margin-bottom:30px; } /** * List Container - Cover Block */ .cover-block { position:relative; display: block; width: 1000px; margin: 0 auto; height:auto; text-align: center; vertical-align: middle; /*box-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #000;*/ padding-bottom:40px; } .cover-block .image-container { display: block; width: 1000px; height:auto; padding-top:0; } .cover-block .image-container.hide { display: none; } .cover-block .image-container img { max-width: 1000px; height: auto; } /* cover image */ #cover-image{ margin:auto; width:1000px !important; height:auto; background-color:transparent; background-size: cover !important; background-position: 50% 50%; } /* setting icon */ .cover-block .image-container .btn-list-setting { display: none; } .cover-block .image-container:hover .btn-list-setting { display: block; position: absolute; top: 20px; right: 28px; padding: 8px; border: rgba(255,255,255,0) 1px solid; font-size: 14px; color: #ffffff; font-family: 'Helvetica neue', Helvetica, "lucida grande", tahoma, verdana, arial, sans-serif; } .cover-block .image-container .btn-list-setting:hover { position: absolute; top: 20px; right: 28px; background-color: rgba(0,0,0,0.6); padding: 8px; border: none; -moz-box-shadow: 0 0 4px #000000; -webkit-box-shadow: 0 0 4px #000000; -o-box-shadow: 0 0 4px #000000; -ms-box-shadow: 0 0 4px #000000; box-shadow: 0 0 4px #000000; font-size: 14px; color: #ffffff; text-shadow: #323232 1px 1px 1px; } .cover-block .image-container .btn-list-setting .fa-camera { font-size: 16px; -moz-text-shadow: #000000 1px 1px 3px; -webkit-text-shadow: #000000 1px 1px 3px; -o-text-shadow: #000000 1px 1px 3px; -ms-text-shadow: #000000 1px 1px 3px; text-shadow: #000000 1px 1px 3px; -ms-filter:"progid:DXImageTransform.Microsoft.DropShadow(color=#000000,offx=1,offy=1)"; } .cover-block .image-container .btn-list-setting .icon-plus-circle { position: absolute; top: 4px; left: 18px; background-color: rgba(0,0,0,0.6); border-radius: 50%; -moz-box-shadow: -1px 1px 0px 0px #323232; -webkit-box-shadow: -1px 1px 0px 0px #323232; -o-box-shadow: -1px 1px 0px 0px #323232; -ms-box-shadow: -1px 1px 0px 0px #323232; box-shadow: -1px 1px 0px 0px #323232; font-size: 10px; } .cover-block .image-container .btn-list-setting .text { display: none; } .cover-block .image-container .btn-list-setting:hover .text { display: inline-block;; margin-left: 4px; } /** * List Container - Status Menu */ .status-menu-container { width: 1000px; height: 40px; background-color: rgba(255,255,255,.9); border-bottom: none; z-index: 1; margin-top:-40px; } .status-menu-container.fixed { position: absolute; display: none !important; top: 0; } .status-menu-container.fixed + div.list-block { margin-top: 0px; } .status-menu-container .status-menu { display: table; margin: 0 auto; border-collapse: separate; border-spacing: 0px 0; } .status-menu-container .status-menu .status-button { position: relative; display: table-cell; padding: 10px; left: 17px !important; font-family: 'Helvetica neue', Helvetica, "lucida grande", tahoma, verdana, arial, sans-serif; text-align: center; vertical-align: middle; padding: 1.2em 10px; line-height: 1.105em; font-size: 1.1em; color: #9B9B9B; } .status-menu-container .status-menu .status-button.on { color: #000; font-weight: bold; } .status-menu-container .status-menu .status-button:hover { background-color: rgba(0,0,0,.5); color: #fff; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; } .status-menu-container .status-menu .status-button.on:after, .status-menu .status-button:hover:after { opacity: 1 } .status-menu-container .status-menu .status-button.watching:before, .status-menu-container .status-menu .status-button.reading:before { content: "\f152\00a0\00a0"; float: left; font-size: 1.5em; font-family: 'FontAwesome' !important; } .status-menu-container .status-menu .status-button.completed:before { content: "\f05d\00a0\00a0"; float: left; font-size: 1.5em; font-family: 'FontAwesome' !important; } .status-menu-container .status-menu .status-button.onhold:before { content: "\f017\00a0\00a0"; float: left; font-size: 1.5em; font-family: 'FontAwesome' !important; } .status-menu-container .status-menu .status-button.plantowatch:before, .status-menu-container .status-menu .status-button.plantoread:before { content: "\f073\00a0\00a0"; float: left; font-size: 1.5em; font-family: 'FontAwesome' !important; } .status-menu-container .status-menu .status-button.dropped:before { content: "\f00d\00a0\00a0"; float: left; font-size: 1.5em; font-family: 'FontAwesome' !important; } .status-menu-container .status-menu .status-button.all_anime:before { content: "\f022\00a0"; float: left; font-size: 1.5em; font-family: 'FontAwesome' !important; } .status-menu-container .status-menu .status-button:after {display:none !important;} /*scroll bar*/ ::-webkit-scrollbar {height: 7px; width: 7px; background-color: #f5f5f5;} ::-webkit-scrollbar-thumb {border: 2px solid #f5f5f5; background-color: #9B9B9B;} /** * List Container - Status Menu - Search */ .status-menu-container .search-container { position: absolute; right: 5px; z-index:20; } .status-menu-container .search-container #search-button { display: inline-block; height: 22px; margin-top: 10px; color: #787878; font-size: 1.6em; vertical-align: middle; } .status-menu-container .search-container #search-box { display: inline-block; width: 0; height: 22px; overflow: hidden; margin-top: 5px; -webkit-transition: width 0.3s; -moz-transition: width 0.3s; transition: width 0.3s; -webkit-backface-visibility: hidden; vertical-align: middle; } .status-menu-container .search-container #search-box.open { display: inline-block; width: 130px; } .status-menu-container .search-container #search-box input { width: 100%; height: 100%; box-sizing: border-box; } /** * List Container - List Block */ .list-block { margin: 0; min-height:265px; background: transparent; } .list-unit { background-color:transparent; margin: auto; width: 1000px; /*box-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #000;*/ background: transparent; } /** * List Container - List Status Title (with Stats) */ .list-unit .list-status-title .text { display: block; width: 1000px; height: 38px !important; font-size: 22px; color: #fff; text-align: center; vertical-align: middle; text-align: center; font-weight: 500; letter-spacing: 0.5px; border:none; text-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #FFF !important; font-style: bold; background-color: transparent; margin-top: 363px !important; background-color: transparent; } .list-unit .list-status-title .stats a.filterd { text-shadow: 0px 0px 2px #FFF; } .list-unit .list-status-title .stats a:hover { background:rgba(0,0,0,.5); padding:8px; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; } .list-unit .list-stats { background-color: rgba(255,255,255,.8); margin-top: -155px !important; color : #000; height: 25px; margin:auto; position: absolute; width: 1000px; z-index: 1 !important; } .list-unit .list-status-title .stats { position: absolute; height: 40px; line-height: 40px; width:180px; right: -25px; margin-top: -441px; z-index: 1; background-color: transparent; } .list-unit .list-status-title .stats a { color: #9B9B9B; padding:8px; margin:0 !important; } /** * List Container - List Table */ .list-table { width: 100%; margin: 0 auto; border-collapse: collapse; background-color:transparent !important; color: #fff !important; border:none; } /** * List Container - List Table - Header */ .list-table .list-table-header:before {content: "\f0dc\00a0SORT"; display: block; text-align: center !important; font-family: 'FontAwesome' !important; text-indent: 0px; color: #9B9B9B !important; font-weight: 700 !important; width: 57px; line-height: 40px; height:40px; margin-left:0px !important; } .list-table .list-table-header:hover:before {color:#fff !important; background-color:rgba(0,0,0,.5);} .list-table .list-table-header { position: absolute; display: block; margin-left:0; margin-top:-440px; z-index:200 !important; } .list-table .list-table-header .header-title { background: #F6F6F6 url() no-repeat right 7px / 1px 22px; display: block; border-bottom: 0; height: 39px; text-align: center; vertical-align: middle; z-index:60 !important; opacity:0; } .list-table .list-table-header:hover .header-title {opacity:1; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out;} .list-table .list-table-header .header-title:last-child { background-image: none; } .list-table .list-table-header .header-title.status,.list-table .list-table-header .header-title.number,.list-table .list-table-header .header-title.image,.list-table .list-table-header .header-title.tags { background-image: none; display:none !important; } .list-table .list-table-header .header-title.title { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.score { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.type { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.progress { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.chapters { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.volumes { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.rated { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.started { display:none; } .list-table .list-table-header .header-title.finished { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.days { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.storage { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.retail { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.priority { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title .link { font-size: 11px; color: #323232; text-decoration: none height:40px; width:90px; } .list-table .list-table-header .header-title.studio { display:none !important; } .list-table .list-table-header .header-title .link.sort { position: relative; display: inline-block; color: #323232; height:40px; width:90px; white-space: nowrap; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; } .list-table .list-table-header .header-title .link.sort:hover { color: #000; background-color: rgba(0,0,0,.5); height:40px; width:90px; } .list-table .list-table-header .header-title .sort-icon { color: #fff; } /* customize list */ .list-table .list-table-data { } .list-table .list-table-data:hover { /*box-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #000 !important;*/ transition: .2s linear; background-color:rgba(0,0,0,.3); } .list-table .list-table-data:hover .data.title { /*text-shadow: 0 0 2px #000, 0 0 1px #000, 0 1px 7px #000, 0 0 0.5px #000;*/ color:#fff; transition: .1s linear; } .header a:hover,.list-table .list-table-data a:not(.edit-disabled):hover { text-decoration:underline; } /** * List Container - List Table - Items */ .list-table .list-table-data .data { display: table-cell; padding: 4px 0; text-align: center; vertical-align: middle; color: #fff !important; border:none; } .list-table .list-table-data:hover .data { color: #fff !important; } .list-table .list-table-data a:not(.edit-disabled):hover { text-decoration: underline; color: #fff !important; } .list-table .list-table-data a.edit-disabled { cursor: text; color: #fff; } .list-table .list-table-data .tags .edit { display: block; width: 100%; text-align: center; color: #2db039; font-size: 10px; font-family: 'Helvetica neue', Helvetica, "lucida grande", tahoma, verdana, arial, sans-serif; display:none; } .list-table .list-table-data .tags .edit:hover { display:none; } .list-table .list-table-data .tags textarea { box-sizing: border-box; width: 100%; height: 60px; } .list-table .list-table-data .data.image a { display:inline-block!important; } .list-table .list-table-data .data.image { width:4%; } .list-table .list-table-data .data.image .image { width: 30px !important; height: 30px !important; background-size:cover; border:2px solid #fff; -webkit-box-shadow:2px 2px 8px -3px rgba(0,0,0,.76); -moz-box-shadow:2px 2px 8px -3px rgba(0,0,0,.76); box-shadow:2px 2px 8px -3px rgba(0,0,0,.76); border-radius:180px; display:inline-block!important; } .list-table .list-table-data:hover .data.image .image { display:inline-block!important; margin-left:-30px; opacity: 0; -moz-transition-duration: 0.3s ease-in-out; -o-transition-duration: 0.3s ease-in-out; -webkit-transition-duration: 0.3s ease-in-out; transition-duration: 0.3s ease-in-out; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out -moz-transition:all .3s ease;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease; } /* */ .list-table .list-table-data .data.season * { color:#fff; } .list-table .list-table-data .data.title { padding-left: 8px; text-align: left; width:50%; } .list-table .list-table-data .data.title a { line-height:35px !important; display: inline-block; min-width:0; max-width: 340px; /* the width of your titles */ white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .list-table .list-table-data .data.title .link { font-size: 16px !important; text-decoration: none !important; font-family: 'PT Sans Narrow', sans-serif; font-weight:100 !important; transition: all 0.3s ease 0s; color: #fff; } .list-table .list-table-data:hover .data.title .link { letter-spacing: 0.5px; transition: all 0.3s ease 0s; color: #fff !important; } .list-table .list-table-data .data.title .rewatching, .list-table .list-table-data .data.title .rereading, .list-table .list-table-data .data.title .content-status { text-shadow: 0 0 2px #1a1aff, 0 0 1px #1a1aff, 1px 1px 7px #1a1aff, 0 0 0 #1a1aff !important; color: #fff !important; font-size: 0.9em !important; margin-left:5px; display:inline-block; margin-top:10px !important; position:absolute; } .list-table .list-table-data .data.score .link { font-size: 1.1em; font-weight: bold; } .list-table .list-table-data .data.score { width: 21px !important; height: 21px !important; background-image: url(https://image.myanimelist.net/ui/OK6W_koKDTOqqqLDbIoPAvk11gJH-C3KIJOW5lXafuE); background-repeat: no-repeat; background-size:contain; background-position: 50% 50%; } .list-table .list-table-data:hover .data.score { background-image: url(https://image.myanimelist.net/ui/OK6W_koKDTOqqqLDbIoPAmasHzB9dG_U7_RpG4sLxyA); text-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 4px #000, 0 0 0 #000; } .list-table .list-table-data .data.score a {color:#fff !important;} td.td1.borderRBL { color:#fff; } /*add edit */ .list-table .list-table-data .data.title .add-edit-more { float: right; margin-right: 10px; font-size:0 !important; margin-top:10px; } .add-edit-more { opacity: 0; transition: all 0.2s ease 0s; } .list-item:hover .add-edit-more { opacity: 1; transition: all 0.2s ease 0s; } .list-table .list-table-data .data.title .edit a { background-image: url(https://image.myanimelist.net/ui/OK6W_koKDTOqqqLDbIoPAv-H_SQ6cTEjv0OR-kHQ8Fw); display: inline-block; width: 15px; height: 15px; background-size: cover; color: transparent !important; margin-right: 7px !important; } .list-table .list-table-data .data.title .more a { background-image: url(https://image.myanimelist.net/ui/OK6W_koKDTOqqqLDbIoPAghSwGo23pYVWiIJc_VDTFA); display: inline-block; width: 15px; height: 15px; background-size: cover; color: transparent !important; } .list-table .list-table-data .data.title .add a { background-image: url(https://image.myanimelist.net/ui/OK6W_koKDTOqqqLDbIoPAsFcnVTftiXc2PgIM7mFcbU); display: inline-block; width: 15px; height: 15px; background-size: cover; color: transparent !important; margin-right: 7px !important; } /* */ .list-table .list-table-data .data.title .more { position: relative; } .list-table .more-info { display: none; } .list-table .more-info .more-content { padding: 10px; } /* */ .list-table .list-table-data .data.number { width:2% !important; } .list-table .list-table-data:hover .data.number { opacity:0; } /* review section */ .list-table .list-table-data .data.tags { } .list-table .list-table-data .data.tags span:after { position: fixed; } .list-table .list-table-data:hover .data.tags, .list-table .list-table-data:hover .data.tags span:after { } .list-table .list-table-data .data.tags * {color: #fff !important;} .list-table .list-table-header .header-title.tags { display:none; } .link.sort + a {display: none;} /* remove watch buttons */ .list-table .list-table-data .data.studio { position:fixed; width: 150px; text-align:center; right: calc( 50% + 511px); top: calc(20% + 184px); height: 30px !important; opacity:0; z-index: 60 !important; background-color: transparent; background: rgba(0,0,0,0); background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,.7) 100%); background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,.7))); background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,.7) 100%); background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,.7) 100%); background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,.7) 100%); background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,.7) 100%); pointer-events:none; } .list-table .list-table-data:hover .data.tags, .list-table .list-table-data:hover .data.studio {opacity:1;} .list-item .data.studio * { text-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #000 !important; font-weight: bold !important; color:#fff !important; } /** * Large full-res hover images */ /* */ .list-table .list-table-data .data.status { width: 4px; } .list-table .list-table-data .data.status .text { font-size:1.5em; } .list-table .list-table-data .data.status.reading, .list-table .list-table-data .data.status.watching { /*background-color: #2db039 */ background-color:transparent; } .list-table .list-table-data .data.status.plantoread, .list-table .list-table-data .data.status.plantowatch { /*background-color: #c3c3c3 */ background-color:transparent; } .list-table .list-table-data .data.status.completed { /*background-color: #26448f */ background-color:transparent; } .list-table .list-table-data .data.status.onhold { /*background-color: #f1c83e */ background-color:transparent; } .list-table .list-table-data .data.status.dropped { /*background-color: #a12f31 */ background-color:transparent; } /* list status */ .list-table .list-table-data .data.status.completed:before, .list-table .list-table-data .data.status.reading:before, .list-table .list-table-data .data.status.watching:before,.list-table .list-table-data .data.status.plantoread:before, .list-table .list-table-data .data.status.plantowatch:before,.list-table .list-table-data .data.status.onhold:before,.list-table .list-table-data .data.status.dropped:before { display: inline-block !important; position: absolute; margin-left:8px; margin-top:-7px; z-index: 100 !important; content: ""; pointer-events: none; opacity: 0; text-align:center !important; } .list-table .list-table-data:hover .data.status.completed:before, .list-table .list-table-data:hover .data.status.reading:before, .list-table .list-table-data:hover .data.status.watching:before,.list-table .list-table-data:hover .data.status.plantoread:before, .list-table .list-table-data:hover .data.status.plantowatch:before,.list-table .list-table-data:hover .data.status.onhold:before,.list-table .list-table-data:hover .data.status.dropped:before { opacity: 1; text-align:center !important; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; } .list-table .list-table-data:hover .data.status.completed:before { /* background-color: #26448f !important; */ color:#fff; content: "\f05d"; font-size: 1.5em; font-family: 'FontAwesome' !important; } .list-table .list-table-data:hover .data.status.watching:before, .list-table .list-table-data:hover .data.status.reading:before { /*background-color: #2db039 !important;*/ color:#fff; content: "\f152"; font-size: 1.5em; font-family: 'FontAwesome' !important;} .list-table .list-table-data:hover .data.status.plantowatch:before, .list-table .list-table-data:hover .data.status.plantoread:before {/*background-color: #c3c3c3 !important;*/ color:#fff; content: "\f073"; font-size: 1.5em; font-family: 'FontAwesome' !important;} .list-table .list-table-data:hover .data.status.onhold:before {/*background-color: #f1c83e !important;*/ color:#fff; content: "\f017"; font-size: 1.5em; font-family: 'FontAwesome' !important;} .list-table .list-table-data:hover .data.status.dropped:before {/*background-color: #a12f31 !important;*/ color:#fff; content: "\f00d"; font-size: 1.5em; font-family: 'FontAwesome' !important;} /* */ .list-unit .loading-space { background-color:rgba(0, 0, 0, .3); color: #fff !important; display: inline-block; margin: auto; width: 1000px; font-size: 11px; line-height:15px; text-align: middle !important; padding-top: 0px; margin-bottom: 0px; height:250px; background-attachment:scroll; background-image:url(); background-repeat: no-repeat no-repeat; background-position: 0% 100%; } /*override codes*/ .header .header-info > a {color: rgba(255,255,255,1) !important;} .header .header-info {color: rgba(255,255,255,0.8) !important;} .header .header-menu {color: rgba(255,255,255,0.8) !important;} .header .header-menu .btn-menu {color: rgba(255,255,255,0.8) !important;} .username {color: rgba(255,255,255,0.8) !important;} #header-menu-button {color: rgba(255,255,255,0.8) !important;} .header a { font-weight: bold; color: #fff !important; } .icon-watch, .icon-watch-pv {display:none !important;} /*profile image & name */ .cover-block::after { height: 120px !important; width: 120px! important; background-repeat: no-repeat; background-size: contain; position: absolute; display:block !important; margin-left:57px; margin-top:-70px; content: ""; z-index: 2 !important; padding: 5px; background-color:#fff; box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.3); border-radius:5px; border: #fff 2px solid; } .cover-block::before { position: absolute; display:block !important; margin-left:200px; bottom:40px; width: 300px; color: #ffffff; font-size: 29px !important; font-family: Rancho; text-align: left; text-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #000 !important; letter-spacing: 0 !important; } /* */ .header .header-title { position: absolute; top: 0px; left: 40px; background-image: url(https://image.myanimelist.net/ui/OK6W_koKDTOqqqLDbIoPArSyCVsZfa6Ox4FXMhKLgHE); background-position: left top; background-repeat: no-repeat; background-size: auto 50px; display: block; width: 50px !important; height: 50px; text-indent: -9999px; overflow: hidden } /* customization */ /* The list background */ body[data-query*='"status":1'], body[data-query*='"status":2'], body[data-query*='"status":3'], body[data-query*='"status":4'], body[data-query*='"status":6'], body[data-query*='"status":7'] { background-attachment: fixed !important; background-position: center top; background-repeat: no-repeat !important; background-size:cover; } * {cursor: url(https://image.myanimelist.net/ui/mHj8wRJAoUAVE5z0EOJTMvqG8NBbPyWjL4OTCiqLjAQVor9JLEaH6fTbVry1-HP5ZJyCgdH8OMHm7x3cxx7gLg), progress !important;} /* */ span a[href*="&tag=!"], span a[href*="&tag=%40"], span a[href*="&tag=~"] {display: none !important;} /* favorite */ @media entrytags-favorites {} a[href$="&tag=*"] {position: absolute; left: 0; width: 150px; height: 0; font-size: 15px; top: 0px; color: transparent !important; } a[href$="&tag=*"]:after {content: '\f005'; font-family: 'FontAwesome' !important; display: inline-block; pointer-events: all; /* change the position below, and add in margin-whatever if it's not enough */ position: absolute; top: -224px; left: 130px; /* change the size of font */ font-size: 1.1em; color: #fff !important; text-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #fff !important; pointer-events:none; } /* Intro animation */ @keyframes intro { from { opacity: 0; margin-top: 100vh; } 16% { opacity: 0; margin-top: 100vh; } to { opacity: 1; margin-top: 100px; } } .list-container { animation: intro 2s; } /* */ footer { position: fixed; bottom: 0px; left: 0px; width: 100%; height:30px !important; z-index: 9998; } #footer-block { display:block; background-color: transparent; background: rgba(0,0,0,0); background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,.6) 100%); background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,.6))); background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,.6) 100%); background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,.6) 100%); background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,.6) 100%); background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,.6) 100%); } #copyright { color: #FFF; letter-spacing: 1px; text-shadow: 0px 3px 3px #000; font-size:10px; } #copyright::after { content: "ShelterStyleV3 - Layout originally designed by Takana no Hana" } .list-unit .list-status-title:after { color: transparent; height: 365px !important; width: 1000px !important; background-repeat: no-repeat; background-size: cover; position: absolute !important; display: block !important; left: 0 !important; right: 0 !important; top: 0px !important; content: ""; z-index: 1 !important; pointer-events: none; } .list-table .list-table-data .data.title .link { font-family: Pacifico !important; font-weight: bold; font-size: 16px; } body{ font-family: Roboto Slab !important; font-size: 10px; font-weight: bold; } /*STUDIO*/ .list-table .list-table-data .data.studio {top: -200px !important; left: -870px !important;; width: 0px !important; height: 0px !important; position: relative !important; display: block !important; visibility: hidden; opacity: 0; transition: opacity .8s linear, margin-left .5s ease, transform 1s ease-in-out; z-index: 5; } .list-table .list-table-data:hover .data.studio { visibility: visible; opacity: 1; transition: .3s ease-out;} /*TAGS*/ .list-table .list-table-data .data.tags { top: 70px !important; left: -850px !important; width: 250px !important; height: 0px !important; position: relative !important; display: block !important; visibility: hidden; opacity: 0; transition: opacity .8s linear, margin-left .5s ease, transform 1s ease-in-out; z-index: 5;} .data.tags span{ background-color:rgba(0,0,0,.5);} .list-table .list-table-data:hover .data.tags { visibility: visible; opacity: 1; transition: .3s ease-out;} /*PREVIEW PIC*/ .list-table .list-table-data .data.image a:before {margin-top: -180px; right: 1065px; content: ""; display: block !important; position: absolute; width: 150px; height: 221px; background-color: rgba(0,0,0,.3); background-position: center !important; background-repeat: no-repeat !important; background-size: cover; border: 1px solid #ffffff; box-shadow: 0 2px 5px rgba(0,0,0, 0.7); visibility: hidden; opacity: 0; transition: opacity .8s linear, margin-left .5s ease, transform 1s ease-in-out; z-index: 5; } .list-table .list-table-data:hover .data.image a:before { visibility: visible; opacity: 1; transition: .3s ease-out;} /*MANUALLY MOVE COLLUMNS*/ .list-table .list-table-data .data.title { width: 50%; } .data.progress{ left: 615px; position: absolute; width: 50px; margin-top: 10px; } .data.type{ left: 680px; position: absolute; width: 60px; margin-top: 10px; } .data.started{ left: 730px; position: absolute; width: 60px; margin-top: 2px; } .data.finished{ left: 780px; position: absolute; width: 60px; margin-top: 2px; } .data.days{ left: 825px; position: absolute; width: 60px; margin-top: 2px; } .data.season{ left: 875px; position: absolute; width: 60px; margin-top: 2px; } .data.priority{ left: 935px; position: absolute; width: 60px; margin-top: -5px; } For future questions try using this video first please so you can learn how to use the Inspect Element tool, which will help you a lot in making high level customization and live edits https://www.youtube.com/watch?v=cTGbVutdqfc |
Oct 28, 2019 11:33 PM
#67
Shishio-kun said: @Koustubh Unfortunately with this type of positioning there's going to be alot of errors and manual readjustment. You can use this CSS tho to get the effect you want, I worked really hard on it for a long time. All the codes to move everything are at the bottom now, and a lot of conflicting codes had to be taken out, and a lot of the columns had to manually adjusted. But you can make any more readjustments with the margin-top, top, and left codes in the bottom of the CSS. I labelled the sections too :D It should look like this: @\import "https://fonts.googleapis.com/css?family=Pacifico&display=swap"; @\import "https://fonts.googleapis.com/css?family=Roboto+Slab&display=swap"; /*Layout CSS was originally made by Takana no hana, edits by Shishio-kun and Valerio_lyndon If you need help with it please visit our group: https://myanimelist.net/clubs.php?cid=19736 Learn how to customize the layout here: https://myanimelist.net/forum/?topicid=1640096 */ @\import "https://fonts.googleapis.com/css?family=Rancho"; @\import "https://fonts.googleapis.com/css?family=Slabo+27px|PT+Sans+Narrow"; @\import "https://malscraper.azurewebsites.net/covers/auto/presets/dataimagelinkbefore"; /*BANNER AVATAR */ .cover-block::after {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwNFIDdfRlQNw68TcyvVQcNc); } /* BANNER QUOTE */ .cover-block::before { content: "There's no advantage to hurrying in life."; } /* BANNER BACKGROUND */ .list-unit .list-status-title:after { background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwGVUAJ408lvXDa1UqN_PpRQ); } /* BANNER OPACITY */ .list-unit .list-status-title:after { opacity: 1; } /*CURRENTLY WATCHING MAIN BACKGROUND*/ body[data-query*='"status":1'] { background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwIpdZTuNEr7sDZOBXcgd2BM); } /*COMPLETED MAIN BACKGROUND*/ body[data-query*='"status":2'] { background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwPT_4EQM1srJ7KXYTogM1kM); } /*ON HOLD MAIN BACKGROUND*/ body[data-query*='"status":3'] { background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwFCkDSbkuzX4C20e00tXwQs); } /*DROPPED MAIN BACKGROUND*/ body[data-query*='"status":4'] { background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwERRCS1R--IzvhsLsdDMg-M); } /*PLANNED MAIN BACKGROUND*/ body[data-query*='"status":6'] { background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwJmrY4hXuNdazRBtNJr7qtE); } /*ALL ANIME/MANGA MAIN BACKGROUND*/ body[data-query*='"status":7'] { background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwNJ1I52ty9oi-IdVG2qoanA); } /* ANIME/MANGA CONTAINER SETTINGS */ .list-table > tbody:nth-of-type(2n+1) { background-color: rgba(0,0,0,.8) !important; } .list-table > tbody:nth-of-type(2n) { background-color: rgba(0,0,0,.7) !important; } .list-unit .list-status-title { background-color:rgba(0,0,0,.3) !important; } /* OTHER CODES */ /* Removing default cover (banner) image */ #cover-image{ display: none; } .list-unit .list-status-title { position: relative; display: table-cell; background-color: transparent; width: 1000px; height:400px !important; /*background-color:rgba(127,127,127,1);*/ background: transparent; } /* picture at the bottom of your list ** please note that default is a seiren picture even if you delete the image url below(it's just a sample image which you need to replace). ** if you don't want this section, just delete the image url */ .list-unit .loading-space { height:250px; width:1000px; background-image:url(https://image.myanimelist.net/ui/OK6W_koKDTOqqqLDbIoPAuKTKHnTqNYtxb-j8OBAt-g); } #advanced-options { position: fixed; top: 24px; left: 0; right: 0; background-color: rgba(255,255,255,.9); display: none; width: 860px; margin: 0 auto; padding: 25px 0px 30px; -moz-box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.3); -webkit-box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.3); -o-box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.3); -ms-box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.3); box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.3); color: #323232; text-align: left; font-family: 'Helvetica neue', Helvetica, "lucida grande", tahoma, verdana, arial, sans-serif; z-index: 1101; border: none; background-image: url(); background-repeat: no-repeat; background-size: cover; background-position: 50% 100%; } #advanced-options .advanced-options-header { width: 750px; margin: 0px auto; padding-bottom: 4px; border-bottom: 1px solid #BEBEBE; font-size: 16px; color:rgba(0,0,0,.6) !important; } #advanced-options .advanced-options-header .description { font-size: 12px; font-weight: normal; margin-left: 8px; color:rgba(0,0,0,.6) !important; } #advanced-options .sort-widget .widget-header, #advanced-options .filter-widget .widget-header, #advanced-options .filter-widget.aired-date .text, #advanced-options .filter-widget.published-date .text { color:rgba(0,0,0,.6) !important; } #advanced-options select { -ms-appearance: none; -webkit-appearance: none; -moz-appearance: none; appearance: none; background-image: url(); background-repeat: no-repeat; background-position: center right; background-size: 18px 8px; background-color: #FFFFFF; display: inline-block; height: 25px; padding: 4px 20px 4px 4px; padding-right: 4px\0; border: #BEBEBE 1px solid; border-radius: 0px; font-size: 12px; } #advanced-options select::-ms-expand { display: none; } #advanced-options select:disabled { background-image: url(); color: #9B9B9B; } #advanced-options input[type=text] { padding: 4px; border: #BEBEBE 1px solid; } #advanced-options input:focus { outline: none; } /* sort */ #advanced-options .sort-widget { margin: 0px auto; padding: 12px 0px 0px; width: 750px; } #advanced-options .sort-widget:last-of-type { padding-bottom: 45px; } #advanced-options .sort-widget select { width: 172px; margin-right: 8px; } #advanced-options .sort-widget input[type=radio] { display: none; } #advanced-options .sort-widget input[type=radio] + label { background-color: #FFFFFF; display: inline-block; width: 56px; padding: 5px 0px; border: #BEBEBE 1px solid; border-radius: 4px; color: #323232; font-size: 12px; text-align: center; cursor: pointer; } #advanced-options .sort-widget input[type=radio]:checked + label { background-color: #244291; border: #244291 1px solid; color: #FFFFFF; } #advanced-options .sort-widget input[type=radio]:disabled + label { border: #BEBEBE 1px solid; color: #9B9B9B; } #advanced-options .sort-widget input[type=radio]:checked:disabled + label { background-color: #FFFFFF; border: #BEBEBE 1px solid; color: #9B9B9B; } /* filter */ #advanced-options .filter-widget { margin: 0px auto; padding: 12px 0px 0; width: 750px; } #advanced-options .filter-widget select { margin-right: 8px; font-size: 12px; } #advanced-options .filter-widget.title input[type=text] { width: 360px; } #advanced-options .filter-widget.airing-status select, #advanced-options .filter-widget.publishing-status select { width: 152px; } #advanced-options .filter-widget.producer select, #advanced-options .filter-widget.magazine select { width: 360px; } #advanced-options .filter-widget.aired-date select.year, #advanced-options .filter-widget.published-date select.year { width: 80px; } #advanced-options .filter-widget.aired-date select.month, #advanced-options .filter-widget.published-date select.month, #advanced-options .filter-widget.aired-date select.day, #advanced-options .filter-widget.published-date select.day { width: 60px; } #advanced-options .filter-widget.aired-date .text, #advanced-options .filter-widget.published-date .text { display: inline-block; margin-right: 4px; font-size: 12px; } #advanced-options .filter-widget.aired-season select.year { width: 80px; } #advanced-options .filter-widget.aired-season select.season { width: 110px; } #advanced-options .sort-widget .widget-header, #advanced-options .filter-widget .widget-header { display: inline-block; width: 110px; font-size: 12px; font-family: 'Helvetica neue', Helvetica, "lucida grande", tahoma, verdana, arial, sans-serif; } #advanced-options .sort-widget:last-of-type, #advanced-options .filter-widget:last-of-type { padding-bottom: 40px; } #advanced-options .advanced-options-button { width: 750px; margin: 0px auto; padding: 12px 0px 0px; border-top: 1px solid #BEBEBE; text-align: center; } #advanced-options .btn-apply, #advanced-options .btn-clear { background-color: rgba(0,0,0, 0.8); display: inline-block; width: 135px; margin: 0 4px; padding: 6px 0px; border-radius: 4px; font-size: 12px; color: #FFFFFF; text-align: center; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; -webkit-transform: translateY(0); -moz-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); transform: translateY(0); } #advanced-options .btn-apply:hover, #advanced-options .btn-clear:hover { background-color: rgba(0,0,0, 0.8); } /** * General Styles */ td { line-height: 1.5em; height: 35px !important; border:none !important; } a { color: #fff; text-decoration: none; } a:hover { color: #fff !important; text-decoration: none; } #footer-block { padding: 15px 0; background-color: #244291; color: #FFFFFF; font-family: Avenir, "lucida grande", tahoma, verdana, arial, sans-serif; display:none; } #copyright { font-size: 12px; color: #FFFFFF; padding-top: 3px; text-align: center; } /* * Header */ .header a { font-weight: bold; color: #fff !important; } .header a:hover { text-decoration: underline; } .header { position: absolute; color: #fff; display: block; width: 100%; height: 50px; margin: 0 auto border:none; background: -webkit-linear-gradient(rgba(0,0,0,.4), transparent); /* For Safari 5.1 to 6.0 */ background: -o-linear-gradient(rgba(0,0,0,.4), transparent); /* For Opera 11.1 to 12.0 */ background: -moz-linear-gradient(rgba(0,0,0,.4), transparent); /* For Firefox 3.6 to 15 */ background: linear-gradient(rgba(0,0,0,.4), transparent); /* Standard syntax */ -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; z-index: 40; } .header:hover {background-color:rgba(0,0,0,.5); -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; } .header .header-menu { position: absolute; top: 5px; right: 4px } .header .header-menu.other { top: 5px; } .header .header-menu .header-info { font-size: 10px; margin-top: 6px; margin-right: 15px; text-align: right; } .header .username { font-weight: bold; } .header .header-menu .list-menu { position: absolute; top: 25px; right: -4px; background-color: rgba(255,255,255,.8); display: none; border: none !important; -moz-box-shadow: rgba(0, 0, 0, 0.4) 0 0 10px; -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 0 10px; box-shadow: rgba(0, 0, 0, 0.4) 0 0 10px; z-index: 1; } .header .header-menu .list-menu .icon-menu { display: block; width: 150px; height: 30px; color: #000; font-size: 14px; font-weight: bold; text-decoration: none; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; } .header .header-menu .list-menu .icon-menu:hover { background-color: rgba(0,0,0,.5); } .header .header-menu .list-menu .icon-menu svg.icon { position: absolute; fill: rgba(0,0,0,.5); left: 12px; top: 4px; } .header .header-menu .list-menu .icon-menu:hover svg.icon { fill: rgba(255,255,255,1) !important; } .header .header-menu .list-menu .icon-menu .text { position: absolute; left: 52px; top: 6px; } .header .header-menu .list-menu .icon-menu:hover .text {color:rgba(255,255,255,1) !important;} .header .header-menu .btn-menu { display: block; text-align: right; color: rgba(0,0,0,0.7) !important; font-size: 12px !important; text-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #000; } #header-menu-dropdown > a {color: rgba(0,0,0,.5) !important;} /* svg.icon.icon-manga-list {color: rgba(0,0,0,.5) !important;} */ /** * Floating Menu */ /** * Floating Menu */ .list-menu-float:before {content: "\f0c9"; font-family: 'FontAwesome' !important; display: block; text-align: center !important; text-indent: 10px; color: #fff !important; font-size:1.5em !important; height: 50px; width: 40px; line-height: 50px;} .list-menu-float:hover:before { font-size:1.7em !important; text-shadow: 0 0 2px #fff, 0 0 1px #fff, 1px 1px 7px #fff, 0 0 0 #fff; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; } .list-menu-float {position: absolute; top: 0px; left:0px; width: 50px; border: none; opacity: 1; height: 40px !important; z-index: 100; } .list-menu-float .icon-menu {display: block; width: 120px; background-color: #dfdfdf; height: 30px; line-height: 30px; text-indent: 10px; opacity:0; } .list-menu-float:hover .icon-menu {opacity:1; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out;} .list-menu-float .icon-menu.profile {background-image: none !important;} .list-menu-float .icon-menu.profile:before {position:absolute; width:120px !important; content: "\f007\00a0Profile"; font-family: 'FontAwesome' !important; margin-top:5px !important; margin-left:-65px !important; color: #000; text-align: center;} .list-menu-float .icon-menu .text {opacity: 1; width: auto; left: 20px; top: 0; color: #555555;} .list-menu-float .icon-menu:hover {width: 120px !important; background-color:rgba(0,0,0,.5) !important;} .list-menu-float .icon-menu:hover .text, .list-menu-float .icon-menu:hover:before, .list-menu-float .icon-menu:hover:after {color: #fff; width: auto;} .list-menu-float .icon-menu.logout {border-radius: 0 0 4px 4px;} .list-menu-float .icon-menu.setting {display:none;} .list-menu-float .icon-menu svg.icon {top: 7px !important; left: 5px !important; width: 15px; height: 15px;} .list-menu-float .icon-menu.setting svg.icon-setting {display:none;} /** * List Container */ .list-container { position: absolute; background-color: transparent !important; width: 1000px; left: 0; right: 0; margin: auto; margin-top:100px; box-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #000; border:none !important; margin-bottom:30px; } /** * List Container - Cover Block */ .cover-block { position:relative; display: block; width: 1000px; margin: 0 auto; height:auto; text-align: center; vertical-align: middle; /*box-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #000;*/ padding-bottom:40px; } .cover-block .image-container { display: block; width: 1000px; height:auto; padding-top:0; } .cover-block .image-container.hide { display: none; } .cover-block .image-container img { max-width: 1000px; height: auto; } /* cover image */ #cover-image{ margin:auto; width:1000px !important; height:auto; background-color:transparent; background-size: cover !important; background-position: 50% 50%; } /* setting icon */ .cover-block .image-container .btn-list-setting { display: none; } .cover-block .image-container:hover .btn-list-setting { display: block; position: absolute; top: 20px; right: 28px; padding: 8px; border: rgba(255,255,255,0) 1px solid; font-size: 14px; color: #ffffff; font-family: 'Helvetica neue', Helvetica, "lucida grande", tahoma, verdana, arial, sans-serif; } .cover-block .image-container .btn-list-setting:hover { position: absolute; top: 20px; right: 28px; background-color: rgba(0,0,0,0.6); padding: 8px; border: none; -moz-box-shadow: 0 0 4px #000000; -webkit-box-shadow: 0 0 4px #000000; -o-box-shadow: 0 0 4px #000000; -ms-box-shadow: 0 0 4px #000000; box-shadow: 0 0 4px #000000; font-size: 14px; color: #ffffff; text-shadow: #323232 1px 1px 1px; } .cover-block .image-container .btn-list-setting .fa-camera { font-size: 16px; -moz-text-shadow: #000000 1px 1px 3px; -webkit-text-shadow: #000000 1px 1px 3px; -o-text-shadow: #000000 1px 1px 3px; -ms-text-shadow: #000000 1px 1px 3px; text-shadow: #000000 1px 1px 3px; -ms-filter:"progid:DXImageTransform.Microsoft.DropShadow(color=#000000,offx=1,offy=1)"; } .cover-block .image-container .btn-list-setting .icon-plus-circle { position: absolute; top: 4px; left: 18px; background-color: rgba(0,0,0,0.6); border-radius: 50%; -moz-box-shadow: -1px 1px 0px 0px #323232; -webkit-box-shadow: -1px 1px 0px 0px #323232; -o-box-shadow: -1px 1px 0px 0px #323232; -ms-box-shadow: -1px 1px 0px 0px #323232; box-shadow: -1px 1px 0px 0px #323232; font-size: 10px; } .cover-block .image-container .btn-list-setting .text { display: none; } .cover-block .image-container .btn-list-setting:hover .text { display: inline-block;; margin-left: 4px; } /** * List Container - Status Menu */ .status-menu-container { width: 1000px; height: 40px; background-color: rgba(255,255,255,.9); border-bottom: none; z-index: 1; margin-top:-40px; } .status-menu-container.fixed { position: absolute; display: none !important; top: 0; } .status-menu-container.fixed + div.list-block { margin-top: 0px; } .status-menu-container .status-menu { display: table; margin: 0 auto; border-collapse: separate; border-spacing: 0px 0; } .status-menu-container .status-menu .status-button { position: relative; display: table-cell; padding: 10px; left: 17px !important; font-family: 'Helvetica neue', Helvetica, "lucida grande", tahoma, verdana, arial, sans-serif; text-align: center; vertical-align: middle; padding: 1.2em 10px; line-height: 1.105em; font-size: 1.1em; color: #9B9B9B; } .status-menu-container .status-menu .status-button.on { color: #000; font-weight: bold; } .status-menu-container .status-menu .status-button:hover { background-color: rgba(0,0,0,.5); color: #fff; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; } .status-menu-container .status-menu .status-button.on:after, .status-menu .status-button:hover:after { opacity: 1 } .status-menu-container .status-menu .status-button.watching:before, .status-menu-container .status-menu .status-button.reading:before { content: "\f152\00a0\00a0"; float: left; font-size: 1.5em; font-family: 'FontAwesome' !important; } .status-menu-container .status-menu .status-button.completed:before { content: "\f05d\00a0\00a0"; float: left; font-size: 1.5em; font-family: 'FontAwesome' !important; } .status-menu-container .status-menu .status-button.onhold:before { content: "\f017\00a0\00a0"; float: left; font-size: 1.5em; font-family: 'FontAwesome' !important; } .status-menu-container .status-menu .status-button.plantowatch:before, .status-menu-container .status-menu .status-button.plantoread:before { content: "\f073\00a0\00a0"; float: left; font-size: 1.5em; font-family: 'FontAwesome' !important; } .status-menu-container .status-menu .status-button.dropped:before { content: "\f00d\00a0\00a0"; float: left; font-size: 1.5em; font-family: 'FontAwesome' !important; } .status-menu-container .status-menu .status-button.all_anime:before { content: "\f022\00a0"; float: left; font-size: 1.5em; font-family: 'FontAwesome' !important; } .status-menu-container .status-menu .status-button:after {display:none !important;} /*scroll bar*/ ::-webkit-scrollbar {height: 7px; width: 7px; background-color: #f5f5f5;} ::-webkit-scrollbar-thumb {border: 2px solid #f5f5f5; background-color: #9B9B9B;} /** * List Container - Status Menu - Search */ .status-menu-container .search-container { position: absolute; right: 5px; z-index:20; } .status-menu-container .search-container #search-button { display: inline-block; height: 22px; margin-top: 10px; color: #787878; font-size: 1.6em; vertical-align: middle; } .status-menu-container .search-container #search-box { display: inline-block; width: 0; height: 22px; overflow: hidden; margin-top: 5px; -webkit-transition: width 0.3s; -moz-transition: width 0.3s; transition: width 0.3s; -webkit-backface-visibility: hidden; vertical-align: middle; } .status-menu-container .search-container #search-box.open { display: inline-block; width: 130px; } .status-menu-container .search-container #search-box input { width: 100%; height: 100%; box-sizing: border-box; } /** * List Container - List Block */ .list-block { margin: 0; min-height:265px; background: transparent; } .list-unit { background-color:transparent; margin: auto; width: 1000px; /*box-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #000;*/ background: transparent; } /** * List Container - List Status Title (with Stats) */ .list-unit .list-status-title .text { display: block; width: 1000px; height: 38px !important; font-size: 22px; color: #fff; text-align: center; vertical-align: middle; text-align: center; font-weight: 500; letter-spacing: 0.5px; border:none; text-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #FFF !important; font-style: bold; background-color: transparent; margin-top: 363px !important; background-color: transparent; } .list-unit .list-status-title .stats a.filterd { text-shadow: 0px 0px 2px #FFF; } .list-unit .list-status-title .stats a:hover { background:rgba(0,0,0,.5); padding:8px; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; } .list-unit .list-stats { background-color: rgba(255,255,255,.8); margin-top: -155px !important; color : #000; height: 25px; margin:auto; position: absolute; width: 1000px; z-index: 1 !important; } .list-unit .list-status-title .stats { position: absolute; height: 40px; line-height: 40px; width:180px; right: -25px; margin-top: -441px; z-index: 1; background-color: transparent; } .list-unit .list-status-title .stats a { color: #9B9B9B; padding:8px; margin:0 !important; } /** * List Container - List Table */ .list-table { width: 100%; margin: 0 auto; border-collapse: collapse; background-color:transparent !important; color: #fff !important; border:none; } /** * List Container - List Table - Header */ .list-table .list-table-header:before {content: "\f0dc\00a0SORT"; display: block; text-align: center !important; font-family: 'FontAwesome' !important; text-indent: 0px; color: #9B9B9B !important; font-weight: 700 !important; width: 57px; line-height: 40px; height:40px; margin-left:0px !important; } .list-table .list-table-header:hover:before {color:#fff !important; background-color:rgba(0,0,0,.5);} .list-table .list-table-header { position: absolute; display: block; margin-left:0; margin-top:-440px; z-index:200 !important; } .list-table .list-table-header .header-title { background: #F6F6F6 url() no-repeat right 7px / 1px 22px; display: block; border-bottom: 0; height: 39px; text-align: center; vertical-align: middle; z-index:60 !important; opacity:0; } .list-table .list-table-header:hover .header-title {opacity:1; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out;} .list-table .list-table-header .header-title:last-child { background-image: none; } .list-table .list-table-header .header-title.status,.list-table .list-table-header .header-title.number,.list-table .list-table-header .header-title.image,.list-table .list-table-header .header-title.tags { background-image: none; display:none !important; } .list-table .list-table-header .header-title.title { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.score { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.type { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.progress { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.chapters { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.volumes { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.rated { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.started { display:none; } .list-table .list-table-header .header-title.finished { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.days { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.storage { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.retail { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.priority { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title .link { font-size: 11px; color: #323232; text-decoration: none height:40px; width:90px; } .list-table .list-table-header .header-title.studio { display:none !important; } .list-table .list-table-header .header-title .link.sort { position: relative; display: inline-block; color: #323232; height:40px; width:90px; white-space: nowrap; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; } .list-table .list-table-header .header-title .link.sort:hover { color: #000; background-color: rgba(0,0,0,.5); height:40px; width:90px; } .list-table .list-table-header .header-title .sort-icon { color: #fff; } /* customize list */ .list-table .list-table-data { } .list-table .list-table-data:hover { /*box-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #000 !important;*/ transition: .2s linear; background-color:rgba(0,0,0,.3); } .list-table .list-table-data:hover .data.title { /*text-shadow: 0 0 2px #000, 0 0 1px #000, 0 1px 7px #000, 0 0 0.5px #000;*/ color:#fff; transition: .1s linear; } .header a:hover,.list-table .list-table-data a:not(.edit-disabled):hover { text-decoration:underline; } /** * List Container - List Table - Items */ .list-table .list-table-data .data { display: table-cell; padding: 4px 0; text-align: center; vertical-align: middle; color: #fff !important; border:none; } .list-table .list-table-data:hover .data { color: #fff !important; } .list-table .list-table-data a:not(.edit-disabled):hover { text-decoration: underline; color: #fff !important; } .list-table .list-table-data a.edit-disabled { cursor: text; color: #fff; } .list-table .list-table-data .tags .edit { display: block; width: 100%; text-align: center; color: #2db039; font-size: 10px; font-family: 'Helvetica neue', Helvetica, "lucida grande", tahoma, verdana, arial, sans-serif; display:none; } .list-table .list-table-data .tags .edit:hover { display:none; } .list-table .list-table-data .tags textarea { box-sizing: border-box; width: 100%; height: 60px; } .list-table .list-table-data .data.image a { display:inline-block!important; } .list-table .list-table-data .data.image { width:4%; } .list-table .list-table-data .data.image .image { width: 30px !important; height: 30px !important; background-size:cover; border:2px solid #fff; -webkit-box-shadow:2px 2px 8px -3px rgba(0,0,0,.76); -moz-box-shadow:2px 2px 8px -3px rgba(0,0,0,.76); box-shadow:2px 2px 8px -3px rgba(0,0,0,.76); border-radius:180px; display:inline-block!important; } .list-table .list-table-data:hover .data.image .image { display:inline-block!important; margin-left:-30px; opacity: 0; -moz-transition-duration: 0.3s ease-in-out; -o-transition-duration: 0.3s ease-in-out; -webkit-transition-duration: 0.3s ease-in-out; transition-duration: 0.3s ease-in-out; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out -moz-transition:all .3s ease;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease; } /* */ .list-table .list-table-data .data.season * { color:#fff; } .list-table .list-table-data .data.title { padding-left: 8px; text-align: left; width:50%; } .list-table .list-table-data .data.title a { line-height:35px !important; display: inline-block; min-width:0; max-width: 340px; /* the width of your titles */ white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .list-table .list-table-data .data.title .link { font-size: 16px !important; text-decoration: none !important; font-family: 'PT Sans Narrow', sans-serif; font-weight:100 !important; transition: all 0.3s ease 0s; color: #fff; } .list-table .list-table-data:hover .data.title .link { letter-spacing: 0.5px; transition: all 0.3s ease 0s; color: #fff !important; } .list-table .list-table-data .data.title .rewatching, .list-table .list-table-data .data.title .rereading, .list-table .list-table-data .data.title .content-status { text-shadow: 0 0 2px #1a1aff, 0 0 1px #1a1aff, 1px 1px 7px #1a1aff, 0 0 0 #1a1aff !important; color: #fff !important; font-size: 0.9em !important; margin-left:5px; display:inline-block; margin-top:10px !important; position:absolute; } .list-table .list-table-data .data.score .link { font-size: 1.1em; font-weight: bold; } .list-table .list-table-data .data.score { width: 21px !important; height: 21px !important; background-image: url(https://image.myanimelist.net/ui/OK6W_koKDTOqqqLDbIoPAvk11gJH-C3KIJOW5lXafuE); background-repeat: no-repeat; background-size:contain; background-position: 50% 50%; } .list-table .list-table-data:hover .data.score { background-image: url(https://image.myanimelist.net/ui/OK6W_koKDTOqqqLDbIoPAmasHzB9dG_U7_RpG4sLxyA); text-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 4px #000, 0 0 0 #000; } .list-table .list-table-data .data.score a {color:#fff !important;} td.td1.borderRBL { color:#fff; } /*add edit */ .list-table .list-table-data .data.title .add-edit-more { float: right; margin-right: 10px; font-size:0 !important; margin-top:10px; } .add-edit-more { opacity: 0; transition: all 0.2s ease 0s; } .list-item:hover .add-edit-more { opacity: 1; transition: all 0.2s ease 0s; } .list-table .list-table-data .data.title .edit a { background-image: url(https://image.myanimelist.net/ui/OK6W_koKDTOqqqLDbIoPAv-H_SQ6cTEjv0OR-kHQ8Fw); display: inline-block; width: 15px; height: 15px; background-size: cover; color: transparent !important; margin-right: 7px !important; } .list-table .list-table-data .data.title .more a { background-image: url(https://image.myanimelist.net/ui/OK6W_koKDTOqqqLDbIoPAghSwGo23pYVWiIJc_VDTFA); display: inline-block; width: 15px; height: 15px; background-size: cover; color: transparent !important; } .list-table .list-table-data .data.title .add a { background-image: url(https://image.myanimelist.net/ui/OK6W_koKDTOqqqLDbIoPAsFcnVTftiXc2PgIM7mFcbU); display: inline-block; width: 15px; height: 15px; background-size: cover; color: transparent !important; margin-right: 7px !important; } /* */ .list-table .list-table-data .data.title .more { position: relative; } .list-table .more-info { display: none; } .list-table .more-info .more-content { padding: 10px; } /* */ .list-table .list-table-data .data.number { width:2% !important; } .list-table .list-table-data:hover .data.number { opacity:0; } /* review section */ .list-table .list-table-data .data.tags { } .list-table .list-table-data .data.tags span:after { position: fixed; } .list-table .list-table-data:hover .data.tags, .list-table .list-table-data:hover .data.tags span:after { } .list-table .list-table-data .data.tags * {color: #fff !important;} .list-table .list-table-header .header-title.tags { display:none; } .link.sort + a {display: none;} /* remove watch buttons */ .list-table .list-table-data .data.studio { position:fixed; width: 150px; text-align:center; right: calc( 50% + 511px); top: calc(20% + 184px); height: 30px !important; opacity:0; z-index: 60 !important; background-color: transparent; background: rgba(0,0,0,0); background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,.7) 100%); background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,.7))); background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,.7) 100%); background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,.7) 100%); background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,.7) 100%); background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,.7) 100%); pointer-events:none; } .list-table .list-table-data:hover .data.tags, .list-table .list-table-data:hover .data.studio {opacity:1;} .list-item .data.studio * { text-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #000 !important; font-weight: bold !important; color:#fff !important; } /** * Large full-res hover images */ /* */ .list-table .list-table-data .data.status { width: 4px; } .list-table .list-table-data .data.status .text { font-size:1.5em; } .list-table .list-table-data .data.status.reading, .list-table .list-table-data .data.status.watching { /*background-color: #2db039 */ background-color:transparent; } .list-table .list-table-data .data.status.plantoread, .list-table .list-table-data .data.status.plantowatch { /*background-color: #c3c3c3 */ background-color:transparent; } .list-table .list-table-data .data.status.completed { /*background-color: #26448f */ background-color:transparent; } .list-table .list-table-data .data.status.onhold { /*background-color: #f1c83e */ background-color:transparent; } .list-table .list-table-data .data.status.dropped { /*background-color: #a12f31 */ background-color:transparent; } /* list status */ .list-table .list-table-data .data.status.completed:before, .list-table .list-table-data .data.status.reading:before, .list-table .list-table-data .data.status.watching:before,.list-table .list-table-data .data.status.plantoread:before, .list-table .list-table-data .data.status.plantowatch:before,.list-table .list-table-data .data.status.onhold:before,.list-table .list-table-data .data.status.dropped:before { display: inline-block !important; position: absolute; margin-left:8px; margin-top:-7px; z-index: 100 !important; content: ""; pointer-events: none; opacity: 0; text-align:center !important; } .list-table .list-table-data:hover .data.status.completed:before, .list-table .list-table-data:hover .data.status.reading:before, .list-table .list-table-data:hover .data.status.watching:before,.list-table .list-table-data:hover .data.status.plantoread:before, .list-table .list-table-data:hover .data.status.plantowatch:before,.list-table .list-table-data:hover .data.status.onhold:before,.list-table .list-table-data:hover .data.status.dropped:before { opacity: 1; text-align:center !important; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; } .list-table .list-table-data:hover .data.status.completed:before { /* background-color: #26448f !important; */ color:#fff; content: "\f05d"; font-size: 1.5em; font-family: 'FontAwesome' !important; } .list-table .list-table-data:hover .data.status.watching:before, .list-table .list-table-data:hover .data.status.reading:before { /*background-color: #2db039 !important;*/ color:#fff; content: "\f152"; font-size: 1.5em; font-family: 'FontAwesome' !important;} .list-table .list-table-data:hover .data.status.plantowatch:before, .list-table .list-table-data:hover .data.status.plantoread:before {/*background-color: #c3c3c3 !important;*/ color:#fff; content: "\f073"; font-size: 1.5em; font-family: 'FontAwesome' !important;} .list-table .list-table-data:hover .data.status.onhold:before {/*background-color: #f1c83e !important;*/ color:#fff; content: "\f017"; font-size: 1.5em; font-family: 'FontAwesome' !important;} .list-table .list-table-data:hover .data.status.dropped:before {/*background-color: #a12f31 !important;*/ color:#fff; content: "\f00d"; font-size: 1.5em; font-family: 'FontAwesome' !important;} /* */ .list-unit .loading-space { background-color:rgba(0, 0, 0, .3); color: #fff !important; display: inline-block; margin: auto; width: 1000px; font-size: 11px; line-height:15px; text-align: middle !important; padding-top: 0px; margin-bottom: 0px; height:250px; background-attachment:scroll; background-image:url(); background-repeat: no-repeat no-repeat; background-position: 0% 100%; } /*override codes*/ .header .header-info > a {color: rgba(255,255,255,1) !important;} .header .header-info {color: rgba(255,255,255,0.8) !important;} .header .header-menu {color: rgba(255,255,255,0.8) !important;} .header .header-menu .btn-menu {color: rgba(255,255,255,0.8) !important;} .username {color: rgba(255,255,255,0.8) !important;} #header-menu-button {color: rgba(255,255,255,0.8) !important;} .header a { font-weight: bold; color: #fff !important; } .icon-watch, .icon-watch-pv {display:none !important;} /*profile image & name */ .cover-block::after { height: 120px !important; width: 120px! important; background-repeat: no-repeat; background-size: contain; position: absolute; display:block !important; margin-left:57px; margin-top:-70px; content: ""; z-index: 2 !important; padding: 5px; background-color:#fff; box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.3); border-radius:5px; border: #fff 2px solid; } .cover-block::before { position: absolute; display:block !important; margin-left:200px; bottom:40px; width: 300px; color: #ffffff; font-size: 29px !important; font-family: Rancho; text-align: left; text-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #000 !important; letter-spacing: 0 !important; } /* */ .header .header-title { position: absolute; top: 0px; left: 40px; background-image: url(https://image.myanimelist.net/ui/OK6W_koKDTOqqqLDbIoPArSyCVsZfa6Ox4FXMhKLgHE); background-position: left top; background-repeat: no-repeat; background-size: auto 50px; display: block; width: 50px !important; height: 50px; text-indent: -9999px; overflow: hidden } /* customization */ /* The list background */ body[data-query*='"status":1'], body[data-query*='"status":2'], body[data-query*='"status":3'], body[data-query*='"status":4'], body[data-query*='"status":6'], body[data-query*='"status":7'] { background-attachment: fixed !important; background-position: center top; background-repeat: no-repeat !important; background-size:cover; } * {cursor: url(https://image.myanimelist.net/ui/mHj8wRJAoUAVE5z0EOJTMvqG8NBbPyWjL4OTCiqLjAQVor9JLEaH6fTbVry1-HP5ZJyCgdH8OMHm7x3cxx7gLg), progress !important;} /* */ span a[href*="&tag=!"], span a[href*="&tag=%40"], span a[href*="&tag=~"] {display: none !important;} /* favorite */ @media entrytags-favorites {} a[href$="&tag=*"] {position: absolute; left: 0; width: 150px; height: 0; font-size: 15px; top: 0px; color: transparent !important; } a[href$="&tag=*"]:after {content: '\f005'; font-family: 'FontAwesome' !important; display: inline-block; pointer-events: all; /* change the position below, and add in margin-whatever if it's not enough */ position: absolute; top: -224px; left: 130px; /* change the size of font */ font-size: 1.1em; color: #fff !important; text-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #fff !important; pointer-events:none; } /* Intro animation */ @keyframes intro { from { opacity: 0; margin-top: 100vh; } 16% { opacity: 0; margin-top: 100vh; } to { opacity: 1; margin-top: 100px; } } .list-container { animation: intro 2s; } /* */ footer { position: fixed; bottom: 0px; left: 0px; width: 100%; height:30px !important; z-index: 9998; } #footer-block { display:block; background-color: transparent; background: rgba(0,0,0,0); background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,.6) 100%); background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,.6))); background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,.6) 100%); background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,.6) 100%); background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,.6) 100%); background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,.6) 100%); } #copyright { color: #FFF; letter-spacing: 1px; text-shadow: 0px 3px 3px #000; font-size:10px; } #copyright::after { content: "ShelterStyleV3 - Layout originally designed by Takana no Hana" } .list-unit .list-status-title:after { color: transparent; height: 365px !important; width: 1000px !important; background-repeat: no-repeat; background-size: cover; position: absolute !important; display: block !important; left: 0 !important; right: 0 !important; top: 0px !important; content: ""; z-index: 1 !important; pointer-events: none; } .list-table .list-table-data .data.title .link { font-family: Pacifico !important; font-weight: bold; font-size: 16px; } body{ font-family: Roboto Slab !important; font-size: 10px; font-weight: bold; } /*STUDIO*/ .list-table .list-table-data .data.studio {top: -200px !important; left: -870px !important;; width: 0px !important; height: 0px !important; position: relative !important; display: block !important; visibility: hidden; opacity: 0; transition: opacity .8s linear, margin-left .5s ease, transform 1s ease-in-out; z-index: 5; } .list-table .list-table-data:hover .data.studio { visibility: visible; opacity: 1; transition: .3s ease-out;} /*TAGS*/ .list-table .list-table-data .data.tags { top: 70px !important; left: -850px !important; width: 250px !important; height: 0px !important; position: relative !important; display: block !important; visibility: hidden; opacity: 0; transition: opacity .8s linear, margin-left .5s ease, transform 1s ease-in-out; z-index: 5;} .data.tags span{ background-color:rgba(0,0,0,.5);} .list-table .list-table-data:hover .data.tags { visibility: visible; opacity: 1; transition: .3s ease-out;} /*PREVIEW PIC*/ .list-table .list-table-data .data.image a:before {margin-top: -180px; right: 1065px; content: ""; display: block !important; position: absolute; width: 150px; height: 221px; background-color: rgba(0,0,0,.3); background-position: center !important; background-repeat: no-repeat !important; background-size: cover; border: 1px solid #ffffff; box-shadow: 0 2px 5px rgba(0,0,0, 0.7); visibility: hidden; opacity: 0; transition: opacity .8s linear, margin-left .5s ease, transform 1s ease-in-out; z-index: 5; } .list-table .list-table-data:hover .data.image a:before { visibility: visible; opacity: 1; transition: .3s ease-out;} /*MANUALLY MOVE COLLUMNS*/ .list-table .list-table-data .data.title { width: 50%; } .data.progress{ left: 615px; position: absolute; width: 50px; margin-top: 10px; } .data.type{ left: 680px; position: absolute; width: 60px; margin-top: 10px; } .data.started{ left: 730px; position: absolute; width: 60px; margin-top: 2px; } .data.finished{ left: 780px; position: absolute; width: 60px; margin-top: 2px; } .data.days{ left: 825px; position: absolute; width: 60px; margin-top: 2px; } .data.season{ left: 875px; position: absolute; width: 60px; margin-top: 2px; } .data.priority{ left: 935px; position: absolute; width: 60px; margin-top: -5px; } For future questions try using this video first please so you can learn how to use the Inspect Element tool, which will help you a lot in making high level customization and live edits https://www.youtube.com/watch?v=cTGbVutdqfc Damn brother! You nailed it! Saasuga Shishio-sama! Talk about an overkill :D You really are very dedicated guy who loves to help other people. Props to you for helping me out. Also, I think you're the first person I've seen who's very active on MAL (compared to people like Stark700) who do a very unique kind of work. I thank you very much once again for helping me brother. Cheers! |
KoustubhOct 28, 2019 11:41 PM
Oct 29, 2019 7:49 PM
#68
Koustubh said: Shishio-kun said: @Koustubh Unfortunately with this type of positioning there's going to be alot of errors and manual readjustment. You can use this CSS tho to get the effect you want, I worked really hard on it for a long time. All the codes to move everything are at the bottom now, and a lot of conflicting codes had to be taken out, and a lot of the columns had to manually adjusted. But you can make any more readjustments with the margin-top, top, and left codes in the bottom of the CSS. I labelled the sections too :D It should look like this: @\import "https://fonts.googleapis.com/css?family=Pacifico&display=swap"; @\import "https://fonts.googleapis.com/css?family=Roboto+Slab&display=swap"; /*Layout CSS was originally made by Takana no hana, edits by Shishio-kun and Valerio_lyndon If you need help with it please visit our group: https://myanimelist.net/clubs.php?cid=19736 Learn how to customize the layout here: https://myanimelist.net/forum/?topicid=1640096 */ @\import "https://fonts.googleapis.com/css?family=Rancho"; @\import "https://fonts.googleapis.com/css?family=Slabo+27px|PT+Sans+Narrow"; @\import "https://malscraper.azurewebsites.net/covers/auto/presets/dataimagelinkbefore"; /*BANNER AVATAR */ .cover-block::after {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwNFIDdfRlQNw68TcyvVQcNc); } /* BANNER QUOTE */ .cover-block::before { content: "There's no advantage to hurrying in life."; } /* BANNER BACKGROUND */ .list-unit .list-status-title:after { background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwGVUAJ408lvXDa1UqN_PpRQ); } /* BANNER OPACITY */ .list-unit .list-status-title:after { opacity: 1; } /*CURRENTLY WATCHING MAIN BACKGROUND*/ body[data-query*='"status":1'] { background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwIpdZTuNEr7sDZOBXcgd2BM); } /*COMPLETED MAIN BACKGROUND*/ body[data-query*='"status":2'] { background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwPT_4EQM1srJ7KXYTogM1kM); } /*ON HOLD MAIN BACKGROUND*/ body[data-query*='"status":3'] { background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwFCkDSbkuzX4C20e00tXwQs); } /*DROPPED MAIN BACKGROUND*/ body[data-query*='"status":4'] { background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwERRCS1R--IzvhsLsdDMg-M); } /*PLANNED MAIN BACKGROUND*/ body[data-query*='"status":6'] { background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwJmrY4hXuNdazRBtNJr7qtE); } /*ALL ANIME/MANGA MAIN BACKGROUND*/ body[data-query*='"status":7'] { background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwNJ1I52ty9oi-IdVG2qoanA); } /* ANIME/MANGA CONTAINER SETTINGS */ .list-table > tbody:nth-of-type(2n+1) { background-color: rgba(0,0,0,.8) !important; } .list-table > tbody:nth-of-type(2n) { background-color: rgba(0,0,0,.7) !important; } .list-unit .list-status-title { background-color:rgba(0,0,0,.3) !important; } /* OTHER CODES */ /* Removing default cover (banner) image */ #cover-image{ display: none; } .list-unit .list-status-title { position: relative; display: table-cell; background-color: transparent; width: 1000px; height:400px !important; /*background-color:rgba(127,127,127,1);*/ background: transparent; } /* picture at the bottom of your list ** please note that default is a seiren picture even if you delete the image url below(it's just a sample image which you need to replace). ** if you don't want this section, just delete the image url */ .list-unit .loading-space { height:250px; width:1000px; background-image:url(https://image.myanimelist.net/ui/OK6W_koKDTOqqqLDbIoPAuKTKHnTqNYtxb-j8OBAt-g); } #advanced-options { position: fixed; top: 24px; left: 0; right: 0; background-color: rgba(255,255,255,.9); display: none; width: 860px; margin: 0 auto; padding: 25px 0px 30px; -moz-box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.3); -webkit-box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.3); -o-box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.3); -ms-box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.3); box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.3); color: #323232; text-align: left; font-family: 'Helvetica neue', Helvetica, "lucida grande", tahoma, verdana, arial, sans-serif; z-index: 1101; border: none; background-image: url(); background-repeat: no-repeat; background-size: cover; background-position: 50% 100%; } #advanced-options .advanced-options-header { width: 750px; margin: 0px auto; padding-bottom: 4px; border-bottom: 1px solid #BEBEBE; font-size: 16px; color:rgba(0,0,0,.6) !important; } #advanced-options .advanced-options-header .description { font-size: 12px; font-weight: normal; margin-left: 8px; color:rgba(0,0,0,.6) !important; } #advanced-options .sort-widget .widget-header, #advanced-options .filter-widget .widget-header, #advanced-options .filter-widget.aired-date .text, #advanced-options .filter-widget.published-date .text { color:rgba(0,0,0,.6) !important; } #advanced-options select { -ms-appearance: none; -webkit-appearance: none; -moz-appearance: none; appearance: none; background-image: url(); background-repeat: no-repeat; background-position: center right; background-size: 18px 8px; background-color: #FFFFFF; display: inline-block; height: 25px; padding: 4px 20px 4px 4px; padding-right: 4px\0; border: #BEBEBE 1px solid; border-radius: 0px; font-size: 12px; } #advanced-options select::-ms-expand { display: none; } #advanced-options select:disabled { background-image: url(); color: #9B9B9B; } #advanced-options input[type=text] { padding: 4px; border: #BEBEBE 1px solid; } #advanced-options input:focus { outline: none; } /* sort */ #advanced-options .sort-widget { margin: 0px auto; padding: 12px 0px 0px; width: 750px; } #advanced-options .sort-widget:last-of-type { padding-bottom: 45px; } #advanced-options .sort-widget select { width: 172px; margin-right: 8px; } #advanced-options .sort-widget input[type=radio] { display: none; } #advanced-options .sort-widget input[type=radio] + label { background-color: #FFFFFF; display: inline-block; width: 56px; padding: 5px 0px; border: #BEBEBE 1px solid; border-radius: 4px; color: #323232; font-size: 12px; text-align: center; cursor: pointer; } #advanced-options .sort-widget input[type=radio]:checked + label { background-color: #244291; border: #244291 1px solid; color: #FFFFFF; } #advanced-options .sort-widget input[type=radio]:disabled + label { border: #BEBEBE 1px solid; color: #9B9B9B; } #advanced-options .sort-widget input[type=radio]:checked:disabled + label { background-color: #FFFFFF; border: #BEBEBE 1px solid; color: #9B9B9B; } /* filter */ #advanced-options .filter-widget { margin: 0px auto; padding: 12px 0px 0; width: 750px; } #advanced-options .filter-widget select { margin-right: 8px; font-size: 12px; } #advanced-options .filter-widget.title input[type=text] { width: 360px; } #advanced-options .filter-widget.airing-status select, #advanced-options .filter-widget.publishing-status select { width: 152px; } #advanced-options .filter-widget.producer select, #advanced-options .filter-widget.magazine select { width: 360px; } #advanced-options .filter-widget.aired-date select.year, #advanced-options .filter-widget.published-date select.year { width: 80px; } #advanced-options .filter-widget.aired-date select.month, #advanced-options .filter-widget.published-date select.month, #advanced-options .filter-widget.aired-date select.day, #advanced-options .filter-widget.published-date select.day { width: 60px; } #advanced-options .filter-widget.aired-date .text, #advanced-options .filter-widget.published-date .text { display: inline-block; margin-right: 4px; font-size: 12px; } #advanced-options .filter-widget.aired-season select.year { width: 80px; } #advanced-options .filter-widget.aired-season select.season { width: 110px; } #advanced-options .sort-widget .widget-header, #advanced-options .filter-widget .widget-header { display: inline-block; width: 110px; font-size: 12px; font-family: 'Helvetica neue', Helvetica, "lucida grande", tahoma, verdana, arial, sans-serif; } #advanced-options .sort-widget:last-of-type, #advanced-options .filter-widget:last-of-type { padding-bottom: 40px; } #advanced-options .advanced-options-button { width: 750px; margin: 0px auto; padding: 12px 0px 0px; border-top: 1px solid #BEBEBE; text-align: center; } #advanced-options .btn-apply, #advanced-options .btn-clear { background-color: rgba(0,0,0, 0.8); display: inline-block; width: 135px; margin: 0 4px; padding: 6px 0px; border-radius: 4px; font-size: 12px; color: #FFFFFF; text-align: center; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; -webkit-transform: translateY(0); -moz-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); transform: translateY(0); } #advanced-options .btn-apply:hover, #advanced-options .btn-clear:hover { background-color: rgba(0,0,0, 0.8); } /** * General Styles */ td { line-height: 1.5em; height: 35px !important; border:none !important; } a { color: #fff; text-decoration: none; } a:hover { color: #fff !important; text-decoration: none; } #footer-block { padding: 15px 0; background-color: #244291; color: #FFFFFF; font-family: Avenir, "lucida grande", tahoma, verdana, arial, sans-serif; display:none; } #copyright { font-size: 12px; color: #FFFFFF; padding-top: 3px; text-align: center; } /* * Header */ .header a { font-weight: bold; color: #fff !important; } .header a:hover { text-decoration: underline; } .header { position: absolute; color: #fff; display: block; width: 100%; height: 50px; margin: 0 auto border:none; background: -webkit-linear-gradient(rgba(0,0,0,.4), transparent); /* For Safari 5.1 to 6.0 */ background: -o-linear-gradient(rgba(0,0,0,.4), transparent); /* For Opera 11.1 to 12.0 */ background: -moz-linear-gradient(rgba(0,0,0,.4), transparent); /* For Firefox 3.6 to 15 */ background: linear-gradient(rgba(0,0,0,.4), transparent); /* Standard syntax */ -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; z-index: 40; } .header:hover {background-color:rgba(0,0,0,.5); -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; } .header .header-menu { position: absolute; top: 5px; right: 4px } .header .header-menu.other { top: 5px; } .header .header-menu .header-info { font-size: 10px; margin-top: 6px; margin-right: 15px; text-align: right; } .header .username { font-weight: bold; } .header .header-menu .list-menu { position: absolute; top: 25px; right: -4px; background-color: rgba(255,255,255,.8); display: none; border: none !important; -moz-box-shadow: rgba(0, 0, 0, 0.4) 0 0 10px; -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 0 10px; box-shadow: rgba(0, 0, 0, 0.4) 0 0 10px; z-index: 1; } .header .header-menu .list-menu .icon-menu { display: block; width: 150px; height: 30px; color: #000; font-size: 14px; font-weight: bold; text-decoration: none; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; } .header .header-menu .list-menu .icon-menu:hover { background-color: rgba(0,0,0,.5); } .header .header-menu .list-menu .icon-menu svg.icon { position: absolute; fill: rgba(0,0,0,.5); left: 12px; top: 4px; } .header .header-menu .list-menu .icon-menu:hover svg.icon { fill: rgba(255,255,255,1) !important; } .header .header-menu .list-menu .icon-menu .text { position: absolute; left: 52px; top: 6px; } .header .header-menu .list-menu .icon-menu:hover .text {color:rgba(255,255,255,1) !important;} .header .header-menu .btn-menu { display: block; text-align: right; color: rgba(0,0,0,0.7) !important; font-size: 12px !important; text-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #000; } #header-menu-dropdown > a {color: rgba(0,0,0,.5) !important;} /* svg.icon.icon-manga-list {color: rgba(0,0,0,.5) !important;} */ /** * Floating Menu */ /** * Floating Menu */ .list-menu-float:before {content: "\f0c9"; font-family: 'FontAwesome' !important; display: block; text-align: center !important; text-indent: 10px; color: #fff !important; font-size:1.5em !important; height: 50px; width: 40px; line-height: 50px;} .list-menu-float:hover:before { font-size:1.7em !important; text-shadow: 0 0 2px #fff, 0 0 1px #fff, 1px 1px 7px #fff, 0 0 0 #fff; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; } .list-menu-float {position: absolute; top: 0px; left:0px; width: 50px; border: none; opacity: 1; height: 40px !important; z-index: 100; } .list-menu-float .icon-menu {display: block; width: 120px; background-color: #dfdfdf; height: 30px; line-height: 30px; text-indent: 10px; opacity:0; } .list-menu-float:hover .icon-menu {opacity:1; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out;} .list-menu-float .icon-menu.profile {background-image: none !important;} .list-menu-float .icon-menu.profile:before {position:absolute; width:120px !important; content: "\f007\00a0Profile"; font-family: 'FontAwesome' !important; margin-top:5px !important; margin-left:-65px !important; color: #000; text-align: center;} .list-menu-float .icon-menu .text {opacity: 1; width: auto; left: 20px; top: 0; color: #555555;} .list-menu-float .icon-menu:hover {width: 120px !important; background-color:rgba(0,0,0,.5) !important;} .list-menu-float .icon-menu:hover .text, .list-menu-float .icon-menu:hover:before, .list-menu-float .icon-menu:hover:after {color: #fff; width: auto;} .list-menu-float .icon-menu.logout {border-radius: 0 0 4px 4px;} .list-menu-float .icon-menu.setting {display:none;} .list-menu-float .icon-menu svg.icon {top: 7px !important; left: 5px !important; width: 15px; height: 15px;} .list-menu-float .icon-menu.setting svg.icon-setting {display:none;} /** * List Container */ .list-container { position: absolute; background-color: transparent !important; width: 1000px; left: 0; right: 0; margin: auto; margin-top:100px; box-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #000; border:none !important; margin-bottom:30px; } /** * List Container - Cover Block */ .cover-block { position:relative; display: block; width: 1000px; margin: 0 auto; height:auto; text-align: center; vertical-align: middle; /*box-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #000;*/ padding-bottom:40px; } .cover-block .image-container { display: block; width: 1000px; height:auto; padding-top:0; } .cover-block .image-container.hide { display: none; } .cover-block .image-container img { max-width: 1000px; height: auto; } /* cover image */ #cover-image{ margin:auto; width:1000px !important; height:auto; background-color:transparent; background-size: cover !important; background-position: 50% 50%; } /* setting icon */ .cover-block .image-container .btn-list-setting { display: none; } .cover-block .image-container:hover .btn-list-setting { display: block; position: absolute; top: 20px; right: 28px; padding: 8px; border: rgba(255,255,255,0) 1px solid; font-size: 14px; color: #ffffff; font-family: 'Helvetica neue', Helvetica, "lucida grande", tahoma, verdana, arial, sans-serif; } .cover-block .image-container .btn-list-setting:hover { position: absolute; top: 20px; right: 28px; background-color: rgba(0,0,0,0.6); padding: 8px; border: none; -moz-box-shadow: 0 0 4px #000000; -webkit-box-shadow: 0 0 4px #000000; -o-box-shadow: 0 0 4px #000000; -ms-box-shadow: 0 0 4px #000000; box-shadow: 0 0 4px #000000; font-size: 14px; color: #ffffff; text-shadow: #323232 1px 1px 1px; } .cover-block .image-container .btn-list-setting .fa-camera { font-size: 16px; -moz-text-shadow: #000000 1px 1px 3px; -webkit-text-shadow: #000000 1px 1px 3px; -o-text-shadow: #000000 1px 1px 3px; -ms-text-shadow: #000000 1px 1px 3px; text-shadow: #000000 1px 1px 3px; -ms-filter:"progid:DXImageTransform.Microsoft.DropShadow(color=#000000,offx=1,offy=1)"; } .cover-block .image-container .btn-list-setting .icon-plus-circle { position: absolute; top: 4px; left: 18px; background-color: rgba(0,0,0,0.6); border-radius: 50%; -moz-box-shadow: -1px 1px 0px 0px #323232; -webkit-box-shadow: -1px 1px 0px 0px #323232; -o-box-shadow: -1px 1px 0px 0px #323232; -ms-box-shadow: -1px 1px 0px 0px #323232; box-shadow: -1px 1px 0px 0px #323232; font-size: 10px; } .cover-block .image-container .btn-list-setting .text { display: none; } .cover-block .image-container .btn-list-setting:hover .text { display: inline-block;; margin-left: 4px; } /** * List Container - Status Menu */ .status-menu-container { width: 1000px; height: 40px; background-color: rgba(255,255,255,.9); border-bottom: none; z-index: 1; margin-top:-40px; } .status-menu-container.fixed { position: absolute; display: none !important; top: 0; } .status-menu-container.fixed + div.list-block { margin-top: 0px; } .status-menu-container .status-menu { display: table; margin: 0 auto; border-collapse: separate; border-spacing: 0px 0; } .status-menu-container .status-menu .status-button { position: relative; display: table-cell; padding: 10px; left: 17px !important; font-family: 'Helvetica neue', Helvetica, "lucida grande", tahoma, verdana, arial, sans-serif; text-align: center; vertical-align: middle; padding: 1.2em 10px; line-height: 1.105em; font-size: 1.1em; color: #9B9B9B; } .status-menu-container .status-menu .status-button.on { color: #000; font-weight: bold; } .status-menu-container .status-menu .status-button:hover { background-color: rgba(0,0,0,.5); color: #fff; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; } .status-menu-container .status-menu .status-button.on:after, .status-menu .status-button:hover:after { opacity: 1 } .status-menu-container .status-menu .status-button.watching:before, .status-menu-container .status-menu .status-button.reading:before { content: "\f152\00a0\00a0"; float: left; font-size: 1.5em; font-family: 'FontAwesome' !important; } .status-menu-container .status-menu .status-button.completed:before { content: "\f05d\00a0\00a0"; float: left; font-size: 1.5em; font-family: 'FontAwesome' !important; } .status-menu-container .status-menu .status-button.onhold:before { content: "\f017\00a0\00a0"; float: left; font-size: 1.5em; font-family: 'FontAwesome' !important; } .status-menu-container .status-menu .status-button.plantowatch:before, .status-menu-container .status-menu .status-button.plantoread:before { content: "\f073\00a0\00a0"; float: left; font-size: 1.5em; font-family: 'FontAwesome' !important; } .status-menu-container .status-menu .status-button.dropped:before { content: "\f00d\00a0\00a0"; float: left; font-size: 1.5em; font-family: 'FontAwesome' !important; } .status-menu-container .status-menu .status-button.all_anime:before { content: "\f022\00a0"; float: left; font-size: 1.5em; font-family: 'FontAwesome' !important; } .status-menu-container .status-menu .status-button:after {display:none !important;} /*scroll bar*/ ::-webkit-scrollbar {height: 7px; width: 7px; background-color: #f5f5f5;} ::-webkit-scrollbar-thumb {border: 2px solid #f5f5f5; background-color: #9B9B9B;} /** * List Container - Status Menu - Search */ .status-menu-container .search-container { position: absolute; right: 5px; z-index:20; } .status-menu-container .search-container #search-button { display: inline-block; height: 22px; margin-top: 10px; color: #787878; font-size: 1.6em; vertical-align: middle; } .status-menu-container .search-container #search-box { display: inline-block; width: 0; height: 22px; overflow: hidden; margin-top: 5px; -webkit-transition: width 0.3s; -moz-transition: width 0.3s; transition: width 0.3s; -webkit-backface-visibility: hidden; vertical-align: middle; } .status-menu-container .search-container #search-box.open { display: inline-block; width: 130px; } .status-menu-container .search-container #search-box input { width: 100%; height: 100%; box-sizing: border-box; } /** * List Container - List Block */ .list-block { margin: 0; min-height:265px; background: transparent; } .list-unit { background-color:transparent; margin: auto; width: 1000px; /*box-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #000;*/ background: transparent; } /** * List Container - List Status Title (with Stats) */ .list-unit .list-status-title .text { display: block; width: 1000px; height: 38px !important; font-size: 22px; color: #fff; text-align: center; vertical-align: middle; text-align: center; font-weight: 500; letter-spacing: 0.5px; border:none; text-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #FFF !important; font-style: bold; background-color: transparent; margin-top: 363px !important; background-color: transparent; } .list-unit .list-status-title .stats a.filterd { text-shadow: 0px 0px 2px #FFF; } .list-unit .list-status-title .stats a:hover { background:rgba(0,0,0,.5); padding:8px; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; } .list-unit .list-stats { background-color: rgba(255,255,255,.8); margin-top: -155px !important; color : #000; height: 25px; margin:auto; position: absolute; width: 1000px; z-index: 1 !important; } .list-unit .list-status-title .stats { position: absolute; height: 40px; line-height: 40px; width:180px; right: -25px; margin-top: -441px; z-index: 1; background-color: transparent; } .list-unit .list-status-title .stats a { color: #9B9B9B; padding:8px; margin:0 !important; } /** * List Container - List Table */ .list-table { width: 100%; margin: 0 auto; border-collapse: collapse; background-color:transparent !important; color: #fff !important; border:none; } /** * List Container - List Table - Header */ .list-table .list-table-header:before {content: "\f0dc\00a0SORT"; display: block; text-align: center !important; font-family: 'FontAwesome' !important; text-indent: 0px; color: #9B9B9B !important; font-weight: 700 !important; width: 57px; line-height: 40px; height:40px; margin-left:0px !important; } .list-table .list-table-header:hover:before {color:#fff !important; background-color:rgba(0,0,0,.5);} .list-table .list-table-header { position: absolute; display: block; margin-left:0; margin-top:-440px; z-index:200 !important; } .list-table .list-table-header .header-title { background: #F6F6F6 url() no-repeat right 7px / 1px 22px; display: block; border-bottom: 0; height: 39px; text-align: center; vertical-align: middle; z-index:60 !important; opacity:0; } .list-table .list-table-header:hover .header-title {opacity:1; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out;} .list-table .list-table-header .header-title:last-child { background-image: none; } .list-table .list-table-header .header-title.status,.list-table .list-table-header .header-title.number,.list-table .list-table-header .header-title.image,.list-table .list-table-header .header-title.tags { background-image: none; display:none !important; } .list-table .list-table-header .header-title.title { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.score { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.type { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.progress { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.chapters { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.volumes { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.rated { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.started { display:none; } .list-table .list-table-header .header-title.finished { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.days { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.storage { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.retail { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title.priority { text-align: center; width:90px; line-height: 40px; padding:0 !important; } .list-table .list-table-header .header-title .link { font-size: 11px; color: #323232; text-decoration: none height:40px; width:90px; } .list-table .list-table-header .header-title.studio { display:none !important; } .list-table .list-table-header .header-title .link.sort { position: relative; display: inline-block; color: #323232; height:40px; width:90px; white-space: nowrap; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; } .list-table .list-table-header .header-title .link.sort:hover { color: #000; background-color: rgba(0,0,0,.5); height:40px; width:90px; } .list-table .list-table-header .header-title .sort-icon { color: #fff; } /* customize list */ .list-table .list-table-data { } .list-table .list-table-data:hover { /*box-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #000 !important;*/ transition: .2s linear; background-color:rgba(0,0,0,.3); } .list-table .list-table-data:hover .data.title { /*text-shadow: 0 0 2px #000, 0 0 1px #000, 0 1px 7px #000, 0 0 0.5px #000;*/ color:#fff; transition: .1s linear; } .header a:hover,.list-table .list-table-data a:not(.edit-disabled):hover { text-decoration:underline; } /** * List Container - List Table - Items */ .list-table .list-table-data .data { display: table-cell; padding: 4px 0; text-align: center; vertical-align: middle; color: #fff !important; border:none; } .list-table .list-table-data:hover .data { color: #fff !important; } .list-table .list-table-data a:not(.edit-disabled):hover { text-decoration: underline; color: #fff !important; } .list-table .list-table-data a.edit-disabled { cursor: text; color: #fff; } .list-table .list-table-data .tags .edit { display: block; width: 100%; text-align: center; color: #2db039; font-size: 10px; font-family: 'Helvetica neue', Helvetica, "lucida grande", tahoma, verdana, arial, sans-serif; display:none; } .list-table .list-table-data .tags .edit:hover { display:none; } .list-table .list-table-data .tags textarea { box-sizing: border-box; width: 100%; height: 60px; } .list-table .list-table-data .data.image a { display:inline-block!important; } .list-table .list-table-data .data.image { width:4%; } .list-table .list-table-data .data.image .image { width: 30px !important; height: 30px !important; background-size:cover; border:2px solid #fff; -webkit-box-shadow:2px 2px 8px -3px rgba(0,0,0,.76); -moz-box-shadow:2px 2px 8px -3px rgba(0,0,0,.76); box-shadow:2px 2px 8px -3px rgba(0,0,0,.76); border-radius:180px; display:inline-block!important; } .list-table .list-table-data:hover .data.image .image { display:inline-block!important; margin-left:-30px; opacity: 0; -moz-transition-duration: 0.3s ease-in-out; -o-transition-duration: 0.3s ease-in-out; -webkit-transition-duration: 0.3s ease-in-out; transition-duration: 0.3s ease-in-out; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out -moz-transition:all .3s ease;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease; } /* */ .list-table .list-table-data .data.season * { color:#fff; } .list-table .list-table-data .data.title { padding-left: 8px; text-align: left; width:50%; } .list-table .list-table-data .data.title a { line-height:35px !important; display: inline-block; min-width:0; max-width: 340px; /* the width of your titles */ white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .list-table .list-table-data .data.title .link { font-size: 16px !important; text-decoration: none !important; font-family: 'PT Sans Narrow', sans-serif; font-weight:100 !important; transition: all 0.3s ease 0s; color: #fff; } .list-table .list-table-data:hover .data.title .link { letter-spacing: 0.5px; transition: all 0.3s ease 0s; color: #fff !important; } .list-table .list-table-data .data.title .rewatching, .list-table .list-table-data .data.title .rereading, .list-table .list-table-data .data.title .content-status { text-shadow: 0 0 2px #1a1aff, 0 0 1px #1a1aff, 1px 1px 7px #1a1aff, 0 0 0 #1a1aff !important; color: #fff !important; font-size: 0.9em !important; margin-left:5px; display:inline-block; margin-top:10px !important; position:absolute; } .list-table .list-table-data .data.score .link { font-size: 1.1em; font-weight: bold; } .list-table .list-table-data .data.score { width: 21px !important; height: 21px !important; background-image: url(https://image.myanimelist.net/ui/OK6W_koKDTOqqqLDbIoPAvk11gJH-C3KIJOW5lXafuE); background-repeat: no-repeat; background-size:contain; background-position: 50% 50%; } .list-table .list-table-data:hover .data.score { background-image: url(https://image.myanimelist.net/ui/OK6W_koKDTOqqqLDbIoPAmasHzB9dG_U7_RpG4sLxyA); text-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 4px #000, 0 0 0 #000; } .list-table .list-table-data .data.score a {color:#fff !important;} td.td1.borderRBL { color:#fff; } /*add edit */ .list-table .list-table-data .data.title .add-edit-more { float: right; margin-right: 10px; font-size:0 !important; margin-top:10px; } .add-edit-more { opacity: 0; transition: all 0.2s ease 0s; } .list-item:hover .add-edit-more { opacity: 1; transition: all 0.2s ease 0s; } .list-table .list-table-data .data.title .edit a { background-image: url(https://image.myanimelist.net/ui/OK6W_koKDTOqqqLDbIoPAv-H_SQ6cTEjv0OR-kHQ8Fw); display: inline-block; width: 15px; height: 15px; background-size: cover; color: transparent !important; margin-right: 7px !important; } .list-table .list-table-data .data.title .more a { background-image: url(https://image.myanimelist.net/ui/OK6W_koKDTOqqqLDbIoPAghSwGo23pYVWiIJc_VDTFA); display: inline-block; width: 15px; height: 15px; background-size: cover; color: transparent !important; } .list-table .list-table-data .data.title .add a { background-image: url(https://image.myanimelist.net/ui/OK6W_koKDTOqqqLDbIoPAsFcnVTftiXc2PgIM7mFcbU); display: inline-block; width: 15px; height: 15px; background-size: cover; color: transparent !important; margin-right: 7px !important; } /* */ .list-table .list-table-data .data.title .more { position: relative; } .list-table .more-info { display: none; } .list-table .more-info .more-content { padding: 10px; } /* */ .list-table .list-table-data .data.number { width:2% !important; } .list-table .list-table-data:hover .data.number { opacity:0; } /* review section */ .list-table .list-table-data .data.tags { } .list-table .list-table-data .data.tags span:after { position: fixed; } .list-table .list-table-data:hover .data.tags, .list-table .list-table-data:hover .data.tags span:after { } .list-table .list-table-data .data.tags * {color: #fff !important;} .list-table .list-table-header .header-title.tags { display:none; } .link.sort + a {display: none;} /* remove watch buttons */ .list-table .list-table-data .data.studio { position:fixed; width: 150px; text-align:center; right: calc( 50% + 511px); top: calc(20% + 184px); height: 30px !important; opacity:0; z-index: 60 !important; background-color: transparent; background: rgba(0,0,0,0); background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,.7) 100%); background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,.7))); background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,.7) 100%); background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,.7) 100%); background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,.7) 100%); background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,.7) 100%); pointer-events:none; } .list-table .list-table-data:hover .data.tags, .list-table .list-table-data:hover .data.studio {opacity:1;} .list-item .data.studio * { text-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #000 !important; font-weight: bold !important; color:#fff !important; } /** * Large full-res hover images */ /* */ .list-table .list-table-data .data.status { width: 4px; } .list-table .list-table-data .data.status .text { font-size:1.5em; } .list-table .list-table-data .data.status.reading, .list-table .list-table-data .data.status.watching { /*background-color: #2db039 */ background-color:transparent; } .list-table .list-table-data .data.status.plantoread, .list-table .list-table-data .data.status.plantowatch { /*background-color: #c3c3c3 */ background-color:transparent; } .list-table .list-table-data .data.status.completed { /*background-color: #26448f */ background-color:transparent; } .list-table .list-table-data .data.status.onhold { /*background-color: #f1c83e */ background-color:transparent; } .list-table .list-table-data .data.status.dropped { /*background-color: #a12f31 */ background-color:transparent; } /* list status */ .list-table .list-table-data .data.status.completed:before, .list-table .list-table-data .data.status.reading:before, .list-table .list-table-data .data.status.watching:before,.list-table .list-table-data .data.status.plantoread:before, .list-table .list-table-data .data.status.plantowatch:before,.list-table .list-table-data .data.status.onhold:before,.list-table .list-table-data .data.status.dropped:before { display: inline-block !important; position: absolute; margin-left:8px; margin-top:-7px; z-index: 100 !important; content: ""; pointer-events: none; opacity: 0; text-align:center !important; } .list-table .list-table-data:hover .data.status.completed:before, .list-table .list-table-data:hover .data.status.reading:before, .list-table .list-table-data:hover .data.status.watching:before,.list-table .list-table-data:hover .data.status.plantoread:before, .list-table .list-table-data:hover .data.status.plantowatch:before,.list-table .list-table-data:hover .data.status.onhold:before,.list-table .list-table-data:hover .data.status.dropped:before { opacity: 1; text-align:center !important; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; } .list-table .list-table-data:hover .data.status.completed:before { /* background-color: #26448f !important; */ color:#fff; content: "\f05d"; font-size: 1.5em; font-family: 'FontAwesome' !important; } .list-table .list-table-data:hover .data.status.watching:before, .list-table .list-table-data:hover .data.status.reading:before { /*background-color: #2db039 !important;*/ color:#fff; content: "\f152"; font-size: 1.5em; font-family: 'FontAwesome' !important;} .list-table .list-table-data:hover .data.status.plantowatch:before, .list-table .list-table-data:hover .data.status.plantoread:before {/*background-color: #c3c3c3 !important;*/ color:#fff; content: "\f073"; font-size: 1.5em; font-family: 'FontAwesome' !important;} .list-table .list-table-data:hover .data.status.onhold:before {/*background-color: #f1c83e !important;*/ color:#fff; content: "\f017"; font-size: 1.5em; font-family: 'FontAwesome' !important;} .list-table .list-table-data:hover .data.status.dropped:before {/*background-color: #a12f31 !important;*/ color:#fff; content: "\f00d"; font-size: 1.5em; font-family: 'FontAwesome' !important;} /* */ .list-unit .loading-space { background-color:rgba(0, 0, 0, .3); color: #fff !important; display: inline-block; margin: auto; width: 1000px; font-size: 11px; line-height:15px; text-align: middle !important; padding-top: 0px; margin-bottom: 0px; height:250px; background-attachment:scroll; background-image:url(); background-repeat: no-repeat no-repeat; background-position: 0% 100%; } /*override codes*/ .header .header-info > a {color: rgba(255,255,255,1) !important;} .header .header-info {color: rgba(255,255,255,0.8) !important;} .header .header-menu {color: rgba(255,255,255,0.8) !important;} .header .header-menu .btn-menu {color: rgba(255,255,255,0.8) !important;} .username {color: rgba(255,255,255,0.8) !important;} #header-menu-button {color: rgba(255,255,255,0.8) !important;} .header a { font-weight: bold; color: #fff !important; } .icon-watch, .icon-watch-pv {display:none !important;} /*profile image & name */ .cover-block::after { height: 120px !important; width: 120px! important; background-repeat: no-repeat; background-size: contain; position: absolute; display:block !important; margin-left:57px; margin-top:-70px; content: ""; z-index: 2 !important; padding: 5px; background-color:#fff; box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.3); border-radius:5px; border: #fff 2px solid; } .cover-block::before { position: absolute; display:block !important; margin-left:200px; bottom:40px; width: 300px; color: #ffffff; font-size: 29px !important; font-family: Rancho; text-align: left; text-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #000 !important; letter-spacing: 0 !important; } /* */ .header .header-title { position: absolute; top: 0px; left: 40px; background-image: url(https://image.myanimelist.net/ui/OK6W_koKDTOqqqLDbIoPArSyCVsZfa6Ox4FXMhKLgHE); background-position: left top; background-repeat: no-repeat; background-size: auto 50px; display: block; width: 50px !important; height: 50px; text-indent: -9999px; overflow: hidden } /* customization */ /* The list background */ body[data-query*='"status":1'], body[data-query*='"status":2'], body[data-query*='"status":3'], body[data-query*='"status":4'], body[data-query*='"status":6'], body[data-query*='"status":7'] { background-attachment: fixed !important; background-position: center top; background-repeat: no-repeat !important; background-size:cover; } * {cursor: url(https://image.myanimelist.net/ui/mHj8wRJAoUAVE5z0EOJTMvqG8NBbPyWjL4OTCiqLjAQVor9JLEaH6fTbVry1-HP5ZJyCgdH8OMHm7x3cxx7gLg), progress !important;} /* */ span a[href*="&tag=!"], span a[href*="&tag=%40"], span a[href*="&tag=~"] {display: none !important;} /* favorite */ @media entrytags-favorites {} a[href$="&tag=*"] {position: absolute; left: 0; width: 150px; height: 0; font-size: 15px; top: 0px; color: transparent !important; } a[href$="&tag=*"]:after {content: '\f005'; font-family: 'FontAwesome' !important; display: inline-block; pointer-events: all; /* change the position below, and add in margin-whatever if it's not enough */ position: absolute; top: -224px; left: 130px; /* change the size of font */ font-size: 1.1em; color: #fff !important; text-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #fff !important; pointer-events:none; } /* Intro animation */ @keyframes intro { from { opacity: 0; margin-top: 100vh; } 16% { opacity: 0; margin-top: 100vh; } to { opacity: 1; margin-top: 100px; } } .list-container { animation: intro 2s; } /* */ footer { position: fixed; bottom: 0px; left: 0px; width: 100%; height:30px !important; z-index: 9998; } #footer-block { display:block; background-color: transparent; background: rgba(0,0,0,0); background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,.6) 100%); background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,.6))); background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,.6) 100%); background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,.6) 100%); background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,.6) 100%); background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,.6) 100%); } #copyright { color: #FFF; letter-spacing: 1px; text-shadow: 0px 3px 3px #000; font-size:10px; } #copyright::after { content: "ShelterStyleV3 - Layout originally designed by Takana no Hana" } .list-unit .list-status-title:after { color: transparent; height: 365px !important; width: 1000px !important; background-repeat: no-repeat; background-size: cover; position: absolute !important; display: block !important; left: 0 !important; right: 0 !important; top: 0px !important; content: ""; z-index: 1 !important; pointer-events: none; } .list-table .list-table-data .data.title .link { font-family: Pacifico !important; font-weight: bold; font-size: 16px; } body{ font-family: Roboto Slab !important; font-size: 10px; font-weight: bold; } /*STUDIO*/ .list-table .list-table-data .data.studio {top: -200px !important; left: -870px !important;; width: 0px !important; height: 0px !important; position: relative !important; display: block !important; visibility: hidden; opacity: 0; transition: opacity .8s linear, margin-left .5s ease, transform 1s ease-in-out; z-index: 5; } .list-table .list-table-data:hover .data.studio { visibility: visible; opacity: 1; transition: .3s ease-out;} /*TAGS*/ .list-table .list-table-data .data.tags { top: 70px !important; left: -850px !important; width: 250px !important; height: 0px !important; position: relative !important; display: block !important; visibility: hidden; opacity: 0; transition: opacity .8s linear, margin-left .5s ease, transform 1s ease-in-out; z-index: 5;} .data.tags span{ background-color:rgba(0,0,0,.5);} .list-table .list-table-data:hover .data.tags { visibility: visible; opacity: 1; transition: .3s ease-out;} /*PREVIEW PIC*/ .list-table .list-table-data .data.image a:before {margin-top: -180px; right: 1065px; content: ""; display: block !important; position: absolute; width: 150px; height: 221px; background-color: rgba(0,0,0,.3); background-position: center !important; background-repeat: no-repeat !important; background-size: cover; border: 1px solid #ffffff; box-shadow: 0 2px 5px rgba(0,0,0, 0.7); visibility: hidden; opacity: 0; transition: opacity .8s linear, margin-left .5s ease, transform 1s ease-in-out; z-index: 5; } .list-table .list-table-data:hover .data.image a:before { visibility: visible; opacity: 1; transition: .3s ease-out;} /*MANUALLY MOVE COLLUMNS*/ .list-table .list-table-data .data.title { width: 50%; } .data.progress{ left: 615px; position: absolute; width: 50px; margin-top: 10px; } .data.type{ left: 680px; position: absolute; width: 60px; margin-top: 10px; } .data.started{ left: 730px; position: absolute; width: 60px; margin-top: 2px; } .data.finished{ left: 780px; position: absolute; width: 60px; margin-top: 2px; } .data.days{ left: 825px; position: absolute; width: 60px; margin-top: 2px; } .data.season{ left: 875px; position: absolute; width: 60px; margin-top: 2px; } .data.priority{ left: 935px; position: absolute; width: 60px; margin-top: -5px; } For future questions try using this video first please so you can learn how to use the Inspect Element tool, which will help you a lot in making high level customization and live edits https://www.youtube.com/watch?v=cTGbVutdqfc Damn brother! You nailed it! Saasuga Shishio-sama! Talk about an overkill :D You really are very dedicated guy who loves to help other people. Props to you for helping me out. Also, I think you're the first person I've seen who's very active on MAL (compared to people like Stark700) who do a very unique kind of work. I thank you very much once again for helping me brother. Cheers! Awesome and thank you!! :D |
Dec 3, 2019 11:49 PM
#69
Hi everyone! I'm looking for a way to add 1 or 2 character renders on each side of the page for each page available (Completed, Watching, Dropped etc) of either: The Line Style Simple Layout and/or The Line Style 3 Layout I was told that I would need to add more CSS codes to do so however simply copy pasting the CSS character render codes from Grid Style 5 does not work as this is a very different design. Would anyone be able to help me out with this? Many thanks. |
Dec 4, 2019 12:20 AM
#70
FrenchAussie said: I ripped the renders from the grid design like you wished to do and it seems to work. The reason it didn't work for you is probably due to some extra code that was needed, found far down into the CSS. I also added a bit of new code to make the cover image appear above the render. Give it a go. Place it anywhere below the @import codes.I'm looking for a way to add 1 or 2 character renders on each side of the page for each page available (Completed, Watching, Dropped etc) of either: The Line Style Simple Layout and/or The Line Style 3 Layout. I was told that I would need to add more CSS codes to do so however simply copy pasting the CSS character render codes from Grid Style 5 does not work as this is a very different design. Would anyone be able to help me out with this? /* RENDERS: adjust the size with the width percentage and position with left or right percentage. */ /*ALL ANIME/MANGA L RENDER*/ body[data-query*='status":7']::before { background-image: url(https://imgur.com/tqCiDWz.png); width: 50%; left: -15%; } /*CURRENT L RENDER*/ body[data-query*='status":1']::before { background-image: url(http://imgur.com/gAgIkGM.png); width: 50%; left: -15%; } /*COMPLETED L RENDER*/ body[data-query*='status":2']::before { background-image: url(https://imgur.com/ctFCZtn.png); width: 50%; left: -15%; } /*ON HOLD L RENDER*/ body[data-query*='status":3']::before { background-image: url(https://imgur.com/pFOQFvK.png); width: 50%; left: -15%; } /*DROPPED L RENDER*/ body[data-query*='status":4']::before { background-image: url(https://imgur.com/Qi926ug.png); width: 50%; left: -15%; } /*PLANNED L RENDER*/ body[data-query*='status":6']::before { background-image: url(https://imgur.com/dyj3O7G.png); width: 50%; left: -15%; } /*CURRENT R RENDER*/ body[data-query*='status":1']::after { background-image: url(http://imgur.com/yewORJZ.png); width: 50%; right: -15%; } /*COMPLETED R RENDER*/ body[data-query*='status":2']::after { background-image: url(https://imgur.com/4ST8CD0.png); width: 50%; right: -15%; } /*ON HOLD R RENDER*/ body[data-query*='status":3']::after { background-image: url(https://imgur.com/UhX9YW6.png); width: 50%; right: -15%; } /*DROPPED R RENDER*/ body[data-query*='status":4']::after { background-image: url(https://imgur.com/qhDbEDQ.png); width: 50%; right: -15%; } /*PLANNED R RENDER*/ body[data-query*='status":6']::after { background-image: url(https://imgur.com/NSgLbpa.png); width: 50%; right: -15%; } /*ALL ANIME/MANGA R RENDER*/ body[data-query*='status":7']::after { background-image: url(https://imgur.com/pKH4nBd.png); width: 50%; right: -15%; } /*RENDERS - CORE CODES*/ body::before, body::after { background-color: transparent; display: block !important; height: 100% !important; position: fixed !important; content: ""; top: 0% !important; z-index: 5 !important; background-repeat: no-repeat; background-position: center bottom; pointer-events: none; background-size: 100% !important; } .data.image a::before { z-index: 150; } |
Dec 4, 2019 1:28 AM
#71
@FrenchAussie Pretty sig! 😍 @Valerio_Lyndon Wow that was quick, thank you!! |
Dec 4, 2019 3:05 AM
#72
@Valerio_Lyndon Thank you for your help! It's perfect! Now I just need to work with it hehe @Shishio-kun Thank you for your amazing tutorials! I wouldn't have gone this far without them! <3 |
Jan 3, 2020 3:36 PM
#73
Hey, im new here. I was wondering while using grid style 4 (with two bottom renders). If there was any direct way to scle the renders bigger or smaller. In grid style one there is an option to adjust the width and height, but in grid style 4 there is only an option to adjust how far left the image is set. Is there any way to scale the two renders in grid style 4? Here is the difference in code: Grid style 1: /* BOTTOM RENDER */ footer::after { width: 20%; height: 100%; left:calc(50% + 460px); background: url(http://i.imgur.com/ea0NmJM.png) no-repeat bottom right;} Grid style 4: /* BOTTOM RENDERS (left and right) */ footer:before{ left: -15%; background-image: url(http://imgur.com/gAgIkGM.png); } footer:after { right: -15%; background-image: url(http://imgur.com/yewORJZ.png); } |
Jan 3, 2020 8:56 PM
#74
Yuryy said: You can add the width and height properties onto the other code blocks. Then it just needs a tweak to code priority. So, we can take the old code...Hey, im new here. I was wondering while using grid style 4 (with two bottom renders). If there was any direct way to scle the renders bigger or smaller. In grid style one there is an option to adjust the width and height, but in grid style 4 there is only an option to adjust how far left the image is set. Is there any way to scale the two renders in grid style 4? Here is the difference in code: Grid style 1: /* BOTTOM RENDER */ footer::after { width: 20%; height: 100%; left:calc(50% + 460px); background: url(http://i.imgur.com/ea0NmJM.png) no-repeat bottom right;} Grid style 4: /* BOTTOM RENDERS (left and right) */ footer:before{ left: -15%; background-image: url(http://imgur.com/gAgIkGM.png); } footer:after { right: -15%; background-image: url(http://imgur.com/yewORJZ.png); } /* BOTTOM RENDERS (left and right) */ footer:before{ left: -15%; background-image: url(http://imgur.com/gAgIkGM.png); } footer:after { right: -15%; background-image: url(http://imgur.com/yewORJZ.png); } And turn it into this: /* BOTTOM RENDERS (left and right) */ body footer:before{ width: 50%; height: 100%; left: -15%; background-image: url(http://imgur.com/gAgIkGM.png); } body footer:after { width: 50%; height: 100%; right: -15%; background-image: url(http://imgur.com/yewORJZ.png); } I added the width and height properties to each render and changed the selector ("footer" to "body footer") to increase its priority and override some exisiting code. You probably won't need to mess with the height, width will probably do what you need. |
Feb 23, 2020 2:11 AM
#76
JawbreakerGamer said: I believe this is linked to the current issues with MAL's image service. There's a thread about it in the support board, and it's been affecting the entire website (forums, profiles, everything). Your list appears fine when logged in because you are being served the original images from Imgur. When logged out, or viewing as another user, issues appear because they're being served by MAL's temporarily borked image network. There are ways to work around this, but it's probably not worth the effort of going through since I would expect a fix to come through within a few days. Or at least, I'm hoping for one.Im so sorry to bother you guys. I used one of your themes to make my anime list look better than default. I thought it was done, but my friend opened my list, but besides the anime cover pics themselves nothing else loads for him. On my screen i can see it all perfectly though. In the CSS i can see it all on there too. I opened my anime list on an incognito tab and they dont load on that either. I have my list set to modern, style override is unchecked. I used direct links for all the pictures, and Original gif links for all the gifs from imgur. Some of the renders are the ones that came with the theme too and those arent showing up either. I dont have my account on private. Is there something that im missing? Any and all help would be greatly appreciated with this. Im sorry if im just an idiot and i did something wrong. I can give you the CSS code if that would help too. I can also send you guys screenshots if that would help as well! |
Feb 29, 2020 7:39 PM
#77
How do I change the background for when you open the filter list? On Grid Style 2? |
Feb 29, 2020 11:05 PM
#78
Ralty said: Try adding this code to your CSS. Anywhere below the "@import" lines should be fine.How do I change the background for when you open the filter list? On Grid Style 2? /* FILTER MENU BACKGROUND */ #advanced-options { background-image: url(https://i.imgur.com/06BJudE.jpg) !important; } |
Mar 4, 2020 1:54 PM
#80
@valerio_lyndon thanks for helping them out :D |
Mar 29, 2020 2:29 PM
#81
I used grid style 1. How do I change the font?? |
Mar 29, 2020 5:12 PM
#82
CameronMZ said: I used grid style 1. How do I change the font?? Try the first minute and half of this video, it's the easiest way for me to explain changing fonts on a premade layout. https://www.youtube.com/watch?v=5IGsUjxjwnk But if it doesn't work for you ask back and post the font you wanna try |
May 7, 2020 5:24 AM
#83
I installed the Clarity Style 1 layout and i cant get the characters on the side of the list apear on the top of my backround. I tried to fixed it but im not rally into coding and i just wounder if somebody could help me so the characters would be on top of the backround. |
May 7, 2020 4:07 PM
#84
MrD3xtr said: Add this to the bottom of your CSS, it should fix the issue. :)I installed the Clarity Style 1 layout and i cant get the characters on the side of the list apear on the top of my backround. I tried to fixed it but im not rally into coding and i just wounder if somebody could help me so the characters would be on top of the backround. /* Render fix */ body::before { z-index: -1; } |
May 7, 2020 11:46 PM
#85
New member here, started using your layouts just now. Everything looks amazing, how do you change all the font style for Grid Style 1? I wanted to change it to Arial to keep the font simple. |
May 8, 2020 12:11 AM
#86
Mike_Myers said: New member here, started using your layouts just now. Everything looks amazing, how do you change all the font style for Grid Style 1? I wanted to change it to Arial to keep the font simple. I'm thinking you could add * {font-family: Arial, fontawesome !important;} to the bottom? Try that. |
May 11, 2020 1:22 AM
#87
Shishio-kun said: Mike_Myers said: New member here, started using your layouts just now. Everything looks amazing, how do you change all the font style for Grid Style 1? I wanted to change it to Arial to keep the font simple. I'm thinking you could add * {font-family: Arial, fontawesome !important;} to the bottom? Try that. IT WORKED! THANK YOU! |
May 30, 2020 3:55 PM
#88
A lot of changes added to make this easier to edit :D |
Jun 22, 2020 4:57 PM
#89
Jun 22, 2020 6:32 PM
#90
DarkFlameMTR said: Thank you very much, I always wanted to change the layout of my anime list, I made a version of Cardcaptor Sakura Awesome!! Thanks so much for sharing, I love it! 😍😍😎 |
Jul 12, 2020 7:40 PM
#91
I got a question. how do i change the "your name" part of the background? I can't find anything that can change it (the circled part) https://i.imgur.com/xvg6Kci.jpg |
Jul 12, 2020 8:26 PM
#92
BruhPablo said: I got a question. how do i change the "your name" part of the background? I can't find anything that can change it (the circled part) https://i.imgur.com/xvg6Kci.jpg The image says it's removed? |
Jul 12, 2020 8:49 PM
#93
oops mb https://i.imgur.com/W932NJA.jpg this link probably will work |
Jul 12, 2020 9:05 PM
#94
Hmm, usually adding this CSS somewhere in your code will enable changing the filter background. It's a little hard to tell if you have some other code already applied that will conflict, but if there is an issue you could probably fix it by removing your current image that is displaying on the filter menu and solely using this new code./* FILTER MENU BACKGROUND */ #advanced-options { background-image: url(YourImageUrl) !important; } If you still need some help, make sure to apply the changes to the CSS on your publicly available (currently active) list style, so that I can see what's going wrong in the code. :) |
Jul 15, 2020 10:06 PM
#96
Thanks for all this awesome work! So I actually used Grid Style 5, Chrome and Firefox displays all the anime/manga covers sharp and detailed, but for some reason Safari (on MacBook) renders the anime/manga cover images blurry. Is there a way to fix this blurry problem on Safari? |
Jul 16, 2020 12:30 AM
#97
ZekkenFuwa said: Thanks for all this awesome work! So I actually used Grid Style 5, Chrome and Firefox displays all the anime/manga covers sharp and detailed, but for some reason Safari (on MacBook) renders the anime/manga cover images blurry. Is there a way to fix this blurry problem on Safari? Find this line, it should be right near the top of the CSS: @\import "https://malscraper.azurewebsites.net/covers/auto/presets/dataimagelinkbefore"; Replace it with this line: @\import "https://malscraper.azurewebsites.net/covers/anime/ZekkenFuwa/presets/dataimagelinkbefore"; Add this one right after the other if you want mangalist support: @\import "https://malscraper.azurewebsites.net/covers/manga/ZekkenFuwa/presets/dataimagelinkbefore"; The problem with the regular code in Safari is that it relies on some referral tech for automatically detecting the user and list. Safari unfortunately blocks this by default and the only way to prevent this happening is to disable all of Safari's privacy features browser-wide. Rather inconvenient. The solution here is to specify the user and list to the cover generator so it doesn't have to auto-detect it. |
Aug 11, 2020 11:16 AM
#99
Shishio-kun said: how to have list layout with customizable category button?Line Style Simple * 1 Wallpaper * Custom Quote on top of the banner * Custom table and row hover color * Big preview pic on row hover Click here for the code Alternate Link How to change pics 1. After installing the layout, go to the CSS edit box where you pasted the code. 2. Near the top of the code, find the uppercase text for the part you want to change. For example, to change the main background or a banner background, find MAIN BACKGROUND or BANNER BACKGROUND. 3. Underneath that text, there should be some codes with a parenthesis following background-image or something similar. Delete what's in the parenthesis. 4. Then upload the new background image you want for that part. Upload the picture to Imgur or a similar site and copy the direct link. It will look something like: http://i.imgur.com/VTrW1N1.jpg Paste it into the parenthesis. 5. Save with the button underneath the CSS edit box. The background image be changed. How to remove pics 1. After installing the layout, go to the CSS edit box where you pasted the code. 2. Near the top of the code, find the uppercase text for the part you want to change. For example, to remove the side character renders, search for SIDE CHARACTERS or RENDER. 3. Underneath that text, there should be some codes with a parenthesis following background-image or something similar. Delete what's in the parenthesis. 4. Save with the button underneath the CSS edit box. The pics should be transparent or blank now. How to change colors of the list's boxes containing anime/manga. 1. After installing the layout, go to the CSS edit box where you pasted the code. 2. Near the top of the code, find /* ANIME/MANGA CONTAINER SETTINGS */ 3. Under there, look for background color settings. You can change the colors after color: here. You can use a single color word like purple or transparent, or RGBA color settings. RGBA colors like rgba(255, 0, 0, .5) That's red with half opacity. Something like this can be generated here or Google "RGBA COLOR GENERATOR". http://www.hexcolortool.com btw the section for hover is what you see when pointing the cursor to the container. How to change the quote at the top. 1. After installing the layout, go to the CSS edit box where you pasted the code. 2. Near the top of the code, find /* BANNER QUOTE*/ 3. The quote's text is in quotations below. Change it to what you want. Leaving it blank will leave no quote. 4. Save. Line Style 2 * 1 Wallpaper * 1 Banner * Custom Quote on top of the banner * Custom table and row hover color * Big preview pic on row hover Click here for the code Alternate Link How to change pics 1. After installing the layout, go to the CSS edit box where you pasted the code. 2. Near the top of the code, find the uppercase text for the part you want to change. For example, to change the main background or a banner background, find MAIN BACKGROUND or BANNER BACKGROUND. 3. Underneath that text, there should be some codes with a parenthesis following background-image or something similar. Delete what's in the parenthesis. 4. Then upload the new background image you want for that part. Upload the picture to Imgur or a similar site and copy the direct link. It will look something like: http://i.imgur.com/VTrW1N1.jpg Paste it into the parenthesis. 5. Save with the button underneath the CSS edit box. The background image be changed. How to remove pics 1. After installing the layout, go to the CSS edit box where you pasted the code. 2. Near the top of the code, find the uppercase text for the part you want to change. For example, to remove the side character renders, search for SIDE CHARACTERS or RENDER. 3. Underneath that text, there should be some codes with a parenthesis following background-image or something similar. Delete what's in the parenthesis. 4. Save with the button underneath the CSS edit box. The pics should be transparent or blank now. How to change colors of the list's boxes containing anime/manga. 1. After installing the layout, go to the CSS edit box where you pasted the code. 2. Near the top of the code, find /* ANIME/MANGA CONTAINER SETTINGS */ 3. Under there, look for background color settings. You can change the colors after color: here. You can use a single color word like purple or transparent, or RGBA color settings. RGBA colors like rgba(255, 0, 0, .5) That's red with half opacity. Something like this can be generated here or Google "RGBA COLOR GENERATOR". http://www.hexcolortool.com btw the section for hover is what you see when pointing the cursor to the container. How to change the quote at the top. 1. After installing the layout, go to the CSS edit box where you pasted the code. 2. Near the top of the code, find /* BANNER QUOTE*/ 3. The quote's text is in quotations below. Change it to what you want. Leaving it blank will leave no quote. 4. Save. Line Style 3 * 6 Wallpapers (one for each category page) * Custom Quote on top of the banner * Custom table and row hover color * Big preview pic on row hover Click here for the code Alternate Link How to change pics 1. After installing the layout, go to the CSS edit box where you pasted the code. 2. Near the top of the code, find the uppercase text for the part you want to change. For example, to change the main background or a banner background, find MAIN BACKGROUND or BANNER BACKGROUND. 3. Underneath that text, there should be some codes with a parenthesis following background-image or something similar. Delete what's in the parenthesis. 4. Then upload the new background image you want for that part. Upload the picture to Imgur or a similar site and copy the direct link. It will look something like: http://i.imgur.com/VTrW1N1.jpg Paste it into the parenthesis. 5. Save with the button underneath the CSS edit box. The background image be changed. How to remove pics 1. After installing the layout, go to the CSS edit box where you pasted the code. 2. Near the top of the code, find the uppercase text for the part you want to change. For example, to remove the side character renders, search for SIDE CHARACTERS or RENDER. 3. Underneath that text, there should be some codes with a parenthesis following background-image or something similar. Delete what's in the parenthesis. 4. Save with the button underneath the CSS edit box. The pics should be transparent or blank now. How to change colors of the list's boxes containing anime/manga. 1. After installing the layout, go to the CSS edit box where you pasted the code. 2. Near the top of the code, find /* ANIME/MANGA CONTAINER SETTINGS */ 3. Under there, look for background color settings. You can change the colors after color: here. You can use a single color word like purple or transparent, or RGBA color settings. RGBA colors like rgba(255, 0, 0, .5) That's red with half opacity. Something like this can be generated here or Google "RGBA COLOR GENERATOR". http://www.hexcolortool.com btw the section for hover is what you see when pointing the cursor to the container. How to change the quote at the top. 1. After installing the layout, go to the CSS edit box where you pasted the code. 2. Near the top of the code, find /* BANNER QUOTE*/ 3. The quote's text is in quotations below. Change it to what you want. Leaving it blank will leave no quote. 4. Save. Line Style 4 * 6 Wallpapers (one for each category page) * 1 Banner * Custom Quote on top of the banner * Custom table and row hover color * Big preview pic on row hover Click here for the code Alternate Link How to change pics 1. After installing the layout, go to the CSS edit box where you pasted the code. 2. Near the top of the code, find the uppercase text for the part you want to change. For example, to change the main background or a banner background, find MAIN BACKGROUND or BANNER BACKGROUND. 3. Underneath that text, there should be some codes with a parenthesis following background-image or something similar. Delete what's in the parenthesis. 4. Then upload the new background image you want for that part. Upload the picture to Imgur or a similar site and copy the direct link. It will look something like: http://i.imgur.com/VTrW1N1.jpg Paste it into the parenthesis. 5. Save with the button underneath the CSS edit box. The background image be changed. How to remove pics 1. After installing the layout, go to the CSS edit box where you pasted the code. 2. Near the top of the code, find the uppercase text for the part you want to change. For example, to remove the side character renders, search for SIDE CHARACTERS or RENDER. 3. Underneath that text, there should be some codes with a parenthesis following background-image or something similar. Delete what's in the parenthesis. 4. Save with the button underneath the CSS edit box. The pics should be transparent or blank now. How to change colors of the list's boxes containing anime/manga. 1. After installing the layout, go to the CSS edit box where you pasted the code. 2. Near the top of the code, find /* ANIME/MANGA CONTAINER SETTINGS */ 3. Under there, look for background color settings. You can change the colors after color: here. You can use a single color word like purple or transparent, or RGBA color settings. RGBA colors like rgba(255, 0, 0, .5) That's red with half opacity. Something like this can be generated here or Google "RGBA COLOR GENERATOR". http://www.hexcolortool.com btw the section for hover is what you see when pointing the cursor to the container. How to change the quote at the top. 1. After installing the layout, go to the CSS edit box where you pasted the code. 2. Near the top of the code, find /* BANNER QUOTE*/ 3. The quote's text is in quotations below. Change it to what you want. Leaving it blank will leave no quote. 4. Save. Line Style 5 * 6 Wallpapers (one for each category page) * 6 Banners (one for each category page) * Custom Quote on top of the banner * Custom table and row hover color * Big preview pic on row hover Click here for the code Alternate Link How to change pics 1. After installing the layout, go to the CSS edit box where you pasted the code. 2. Near the top of the code, find the uppercase text for the part you want to change. For example, to change the main background or a banner background, find MAIN BACKGROUND or BANNER BACKGROUND. 3. Underneath that text, there should be some codes with a parenthesis following background-image or something similar. Delete what's in the parenthesis. 4. Then upload the new background image you want for that part. Upload the picture to Imgur or a similar site and copy the direct link. It will look something like: http://i.imgur.com/VTrW1N1.jpg Paste it into the parenthesis. 5. Save with the button underneath the CSS edit box. The background image be changed. How to remove pics 1. After installing the layout, go to the CSS edit box where you pasted the code. 2. Near the top of the code, find the uppercase text for the part you want to change. For example, to remove the side character renders, search for SIDE CHARACTERS or RENDER. 3. Underneath that text, there should be some codes with a parenthesis following background-image or something similar. Delete what's in the parenthesis. 4. Save with the button underneath the CSS edit box. The pics should be transparent or blank now. How to change colors of the list's boxes containing anime/manga. 1. After installing the layout, go to the CSS edit box where you pasted the code. 2. Near the top of the code, find /* ANIME/MANGA CONTAINER SETTINGS */ 3. Under there, look for background color settings. You can change the colors after color: here. You can use a single color word like purple or transparent, or RGBA color settings. RGBA colors like rgba(255, 0, 0, .5) That's red with half opacity. Something like this can be generated here or Google "RGBA COLOR GENERATOR". http://www.hexcolortool.com btw the section for hover is what you see when pointing the cursor to the container. How to change the quote at the top. 1. After installing the layout, go to the CSS edit box where you pasted the code. 2. Near the top of the code, find /* BANNER QUOTE*/ 3. The quote's text is in quotations below. Change it to what you want. Leaving it blank will leave no quote. 4. Save. One Piece Layout example from video These might not be recently updated as the ones above! Layout link: http://pasted.co/e3bd8475 Adding a render to the Line-Style layouts Simply add this code to the bottom of the CSS. You can change the image the same as the banners and backgrounds. Height and width are the size. /* Character render on the right list */ footer::after { content: ""; display: block; width: 20%; height: 100%; position: fixed; bottom: 0px; left: calc( 50% + 465px); background: url(http://i.imgur.com/MO8goKt.png) no-repeat bottom left; pointer-events: none; z-index: 3; } @media screen and (max-height: 835px) { footer::after { background-size: 182px 680px; } } Change fonts See my fonts video. You probably just need the first two minutes :D https://www.youtube.com/watch?v=5IGsUjxjwnk |
Aug 11, 2020 2:02 PM
#100
DamaZki said: how to have list layout with customizable category button? use the codes in the first post and follow the video https://myanimelist.net/forum/?topicid=1640096#msg51608944 example of one of the codes https://pastebin.com/CVcajfYq |
More topics from this board
» ❓ Ask for help here + See Frequently Asked Questions ( 1 2 3 4 5 ... Last Page )Shishio-kun - Apr 15, 2010 |
7921 |
by takkun_
»»
Yesterday, 9:54 PM |
|
» theme helpthreat - Jul 5 |
5 |
by Zaryf
»»
Aug 21, 5:46 AM |
|
» [CSS - Modern] 🍰 Clarity by V.L ( 1 2 3 4 5 ... Last Page )Valerio_Lyndon - Apr 19, 2018 |
1261 |
by KiranaStarr
»»
Aug 16, 5:48 PM |
|
» [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 |